/* Zeni Ayurvediclab Custom Styles */

/* International Standard Fonts */
* {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 64px;
    color: #1d1d1f;
    background-color: #ffffff;
}

/* Smaller Standard web font sizes */
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 500; }
h6 { font-size: 0.9rem; font-weight: 500; }
p { font-size: 0.9rem; }
small { font-size: 0.8rem; }
.lead { font-size: 1rem; }

/* Section-Specific Fonts */
.hero-section { font-family: 'Space Grotesk', sans-serif; }
.features-section { font-family: 'Poppins', sans-serif; }
.products-section { font-family: 'DM Sans', sans-serif; }
.benefits-section { font-family: 'Outfit', sans-serif; }
.stats-section { font-family: 'Space Grotesk', sans-serif; }
.process-section { font-family: 'Poppins', sans-serif; }
.testimonials-section { font-family: 'Playfair Display', serif; }
.cta-section { font-family: 'DM Sans', sans-serif; }
.certifications-section { font-family: 'Outfit', sans-serif; }
.new-section-1 { font-family: 'Poppins', sans-serif; }
.new-section-2 { font-family: 'Space Grotesk', sans-serif; }
.new-section-3 { font-family: 'DM Sans', sans-serif; }

/* Navbar Styles - Apple Design with Futuristic Animations */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 64px;
    transform: translateY(0);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 10px rgba(12, 74, 159, 0.05);
    backdrop-filter: saturate(200%) blur(30px);
    -webkit-backdrop-filter: saturate(200%) blur(30px);
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-logo {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #1d1d1f !important;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    padding: 8px 16px !important;
    margin: 0 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(0);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0c4a9f, transparent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(12, 74, 159, 0.5);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0c4a9f;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: #0c4a9f !important;
    opacity: 0.9;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Override Bootstrap text-success color */
.text-success {
    color: #0c4a9f !important;
}

.border-success {
    border-color: #0c4a9f !important;
}

/* Hero Slider Section - Modern AI Style with Apple/GitHub Design */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    filter: brightness(0.9);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    filter: brightness(1);
    animation: zoomIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
        filter: brightness(0.8);
    }
    to {
        transform: scale(1);
        filter: brightness(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 159, 0.75) 0%, rgba(12, 74, 159, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12, 74, 159, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.slider-btn:hover::before {
    width: 100px;
    height: 100px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

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

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slider-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.slider-indicator:hover::before {
    width: 20px;
    height: 20px;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.slider-indicator.active {
    background: #ffffff;
    border-color: #ffffff;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design for Hero Slider */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
}

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

/* Product Cards with Futuristic Animations */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: slideInFromBottom 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

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

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(12, 74, 159, 0.3), 0 0 20px rgba(12, 74, 159, 0.2) !important;
}

.product-card img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.product-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Modern AI-Style Buttons with Futuristic Animations */
.btn {
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 0.01em;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-success {
    background: linear-gradient(135deg, #0c4a9f 0%, #0a3c8c 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(12, 74, 159, 0.25);
}

.btn-success:hover {
    background: linear-gradient(135deg, #0a3c8c 0%, #082d6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 159, 0.35);
}

.btn-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(12, 74, 159, 0.25);
}

.btn-outline-success {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #0c4a9f;
    color: #0c4a9f;
    box-shadow: 0 2px 8px rgba(12, 74, 159, 0.15);
}

.btn-outline-success:hover {
    background: linear-gradient(135deg, #0c4a9f 0%, #0a3c8c 100%);
    border-color: #0c4a9f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 159, 0.35);
}

.btn-outline-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(12, 74, 159, 0.25);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Override btn-lg to medium size */
.btn-lg {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 12px;
}

/* Cards with Futuristic Animations */
.card {
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 74, 159, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(12, 74, 159, 0.25), 0 0 15px rgba(12, 74, 159, 0.15);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

.card-text {
    font-size: 0.85rem;
}

/* Forms with Futuristic Animations */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-control:focus, .form-select:focus {
    border-color: #0c4a9f;
    box-shadow: 0 0 0 0.2rem rgba(12, 74, 159, 0.25), 0 0 20px rgba(12, 74, 159, 0.15);
    transform: translateY(-2px);
}

.form-control::placeholder {
    transition: opacity 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(12, 74, 159, 0.3), 0 0 40px rgba(12, 74, 159, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(12, 74, 159, 0.5), 0 0 60px rgba(12, 74, 159, 0.3);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotateGlow {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0c4a9f, #0a3c8c, #0c4a9f);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.6;
    animation: glow 2s ease-in-out infinite;
}

/* Smooth Scroll with Enhanced Behavior */
html {
    scroll-behavior: smooth;
}

/* Section entrance animations */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(12, 74, 159, 0.05), transparent);
    transition: left 1s ease;
    pointer-events: none;
    z-index: 0;
}

section:hover::before {
    left: 100%;
}

section > .container {
    position: relative;
    z-index: 1;
}

/* Icon animations */
.benefit-icon, .step-number {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon:hover, .step-number:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(12, 74, 159, 0.5));
}

/* Text glow effect */
h1, h2, h3 {
    transition: all 0.3s ease;
}

h1:hover, h2:hover, h3:hover {
    text-shadow: 0 0 20px rgba(12, 74, 159, 0.3);
}

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


/* Loading Spinner */
.spinner-border-success {
    color: #0c4a9f;
}

/* Badge Styles */
.badge {
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 6px;
}

/* Table Styles */
.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background-color: #f8f9fa;
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Admin Panel Styles */
.container-fluid {
    padding: 20px;
}

/* Footer */
footer {
    margin-top: auto;
    font-size: 0.85rem;
}

footer h5 {
    font-size: 1rem;
    font-weight: 600;
}

footer p {
    font-size: 0.85rem;
}

footer a {
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

footer a:hover {
    color: #0c4a9f !important;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.text-bengali {
    font-family: 'Noto Sans Bengali', sans-serif;
}

.min-vh-100 {
    min-height: 100vh;
}

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

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

::-webkit-scrollbar-thumb {
    background: #0c4a9f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a3c8c;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #0c4a9f;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Image Placeholder */
img[onerror] {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Print Styles */
@media print {
    .navbar, footer, .btn {
        display: none !important;
    }
}

/* Health Benefits Section */
.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 16px;
    border: 1px solid rgba(12, 74, 159, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 74, 159, 0.15);
    border-color: rgba(12, 74, 159, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(12, 74, 159, 0.1) 0%, rgba(12, 74, 159, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0c4a9f;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(12, 74, 159, 0.2) 0%, rgba(12, 74, 159, 0.1) 100%);
}

/* Statistics Section */
.stat-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(12, 74, 159, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 74, 159, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0c4a9f 0%, #0a3c8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
}

/* How It Works Section */
.process-step {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 16px;
    border: 1px solid rgba(12, 74, 159, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 74, 159, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0c4a9f 0%, #0a3c8c 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(12, 74, 159, 0.3);
}

/* Testimonials Section */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(12, 74, 159, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(12, 74, 159, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 74, 159, 0.15);
    border-color: rgba(12, 74, 159, 0.3);
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 74, 159, 0.1);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, rgba(12, 74, 159, 0.05) 0%, rgba(12, 74, 159, 0.1) 100%);
    border-radius: 24px;
    margin: 3rem 0;
}

.cta-section h2 {
    background: linear-gradient(135deg, #1d1d1f 0%, #0c4a9f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 40px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Blog Carousel Section */
.blog-carousel-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.blog-card-small {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.blog-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.blog-card-small .card-img-top {
    transition: transform 0.3s ease;
}

.blog-card-small:hover .card-img-top {
    transform: scale(1.05);
}

.blog-card-small .card-title a {
    transition: color 0.2s ease;
}

.blog-card-small .card-title a:hover {
    color: #198754 !important;
}

#blogCarousel .carousel-control-prev,
#blogCarousel .carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: rgba(25, 135, 84, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#blogCarousel .carousel-control-prev:hover,
#blogCarousel .carousel-control-next:hover {
    opacity: 1;
}

#blogCarousel .carousel-control-prev {
    left: -20px;
}

#blogCarousel .carousel-control-next {
    right: -20px;
}

#blogCarousel .carousel-control-prev-icon,
#blogCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    #blogCarousel .carousel-control-prev,
    #blogCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    #blogCarousel .carousel-control-prev {
        left: -10px;
    }
    
    #blogCarousel .carousel-control-next {
        right: -10px;
    }
    
    .blog-card-small .card-img-top {
        height: 150px !important;
    }
}
