html,body{
    width:100%;
    overflow-x:hidden;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

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

.blog-card h5 {
    color: #1a1f2c;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-card:hover h5 {
    color: #4CAF50;
}

.btn-read-more {
    position: absolute;
    display: inline-block;
    background: #4CAF50;
    color: white !important;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
    margin-top: 15px;
    font-size: 0.9rem;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
}

.btn-read-more:hover {
    background: transparent;
    color: #4CAF50 !important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.blog-img-placeholder {
    background-color: #f0f0f0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

/* Social Media Icons */
.social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links .social-icon:hover {
    background: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.page-header .lead {
    font-size: 1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-flex;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #2c5282;
}

.breadcrumb-item.active {
    color: #4a5568;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    padding: 0 0.5rem;
    color: #a0aec0;
}

/* Base Styles */
body { 
    font-family: 'Poppins', Arial, sans-serif; 
    background: #f6f9fc; 
    color: #222;
    font-size: 14px;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

/* Bootstrap Display Classes Override */
.display-1 { font-size: 3.5rem; }
.display-2 { font-size: 3rem; }
.display-3 { font-size: 2.5rem; }
.display-4 { font-size: 2rem; }
.display-5 { font-size: 1.75rem; }
.display-6 { font-size: 1.5rem; }

p { font-size: 0.9rem; line-height: 1.5; }
.lead { font-size: 1.1rem; font-weight: 300; }

.btn {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 0.85rem 1.75rem;
}

/* Top Bar */
#topbar {
    background: #2393d3;
    color: #fff;
    padding: 0.25rem 0;
    position: relative;
    z-index: 1051;
    box-shadow: 0 2px 12px rgba(27,0,123,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

#topbar i.fa-envelope {
    margin-right: 0.5rem;
}

#topbar i.fa-phone {
    margin-right: 0.5rem;
}

#topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
}

#topbar a:hover {
    color: #f30000;
}

/* Navbar */
.navbar {
    background: #fff;
}

.sticky-top {
    top: 0;
    z-index: 1050;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

/* Show dropdown on hover */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Improved dropdown design */
.dropdown-menu {
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(27,0,123,0.15), 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.7rem 0.3rem;
    min-width: 220px;
    border: none;
    background: #fff;
    transition: box-shadow 0.22s, background 0.22s;
}

.dropdown-menu .dropdown-item {
    border-radius: 0.7rem;
    padding: 0.65rem 1.3rem;
    font-weight: 500;
    color: #1b007b;
    transition: background 0.18s, color 0.18s;
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
    background: #f4f6fa;
    color: #f30000;
}

/* Dropdown arrow color fix for dark backgrounds */
.navbar .dropdown-toggle::after {
filter: none;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.6rem 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
    border-radius: 4px;
}

.navbar-nav .nav-link.active {
    color: #4CAF50 !important;
    font-weight: 600;
}

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

.navbar-nav .nav-link:hover {
    color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.05);
}

.navbar-brand {
font-weight: 700;
color: #1b007b !important;
letter-spacing: 1px;
display: flex;
align-items: center;
transition: all 0.3s ease;
padding: 0.2rem 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

/* Brand Icon */
.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}
.hero-image-wrapper img{
    max-width:315px;
}
.logo-img{
    max-width: 65px;
}

/* Stat Cards */
.stat-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Service Cards */
.service-card {
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(34,197,94,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Solution Cards */
.solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Experience Box */
.experience-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(30,58,138,0.3);
}

/* Insight Cards */
.insight-card {
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
}

/* Stat Items */
.stat-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    padding: 0 20px;
}

.testimonial-item {
    padding: 20px 0;
    outline: none;
}

.testimonial-item .blockquote {
    position: relative;
    padding: 0;
    margin: 0;
}

.testimonial-item .blockquote p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #4b5563;
}

.testimonial-item .blockquote-footer {
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.testimonial-item .blockquote-footer::before {
    display: none;
}

.testimonial-item .blockquote-footer strong {
    color: #374151;
    font-weight: 600;
}

/* Slick Dots */
.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    list-style: none;
    display: flex !important;
    justify-content: center;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #10b981;
    transform: scale(1.2);
}

/* Slick Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #374151;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:hover,
.slick-next:hover {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

/* Benefits List */
.benefits-list span {
    font-weight: 500;
}

/* Workflow Steps */
.workflow-step {
    position: relative;
}

.workflow-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Testimonial Content */
.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.rating-box {
    box-shadow: 0 8px 25px rgba(34,197,94,0.3);
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Contact Box */
.contact-box {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #1e3a8a;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(34,197,94,0.5);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Button Hover Effects */
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34,197,94,0.4);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand {
    transform: scale(0.95);
}

/* Enhanced Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* Enhanced Card Shadows */
.stat-card, .service-card, .solution-card, .blog-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover, .service-card:hover, .solution-card:hover, .blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gradient Text Effects */
.gradient-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Form Styling */
.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30,58,138,0.25);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section .min-vh-75 {
        min-height: 60vh;
    }
    
    .workflow-icon {
        width: 80px;
        height: 80px;
    }
    
    .stat-card, .service-card, .solution-card {
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .hero-bg-shape {
        width: 200px;
        height: 200px;
        top: -30px;
        right: -30px;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation Enhancements */
[data-aos] {
    transition-duration: 800ms;
}

[data-aos="fade-up"] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-left"], [data-aos="fade-right"] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn, .topbar {
        display: none !important;
    }
    
    .hero-section, .py-5 {
        padding: 1rem 0 !important;
    }
    
    .shadow, .shadow-lg {
        box-shadow: none !important;
    }
}

/* New Section Styles for Amigas Pharma */

/* Product Category Cards */
.product-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(34,197,94,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Global Presence Section */
.global-stats h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.global-stats p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* R&D Cards */
.rd-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.rd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.rd-icon {
    width: 80px;
    height: 80px;
    background: rgba(34,197,94,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Quality Features */
.quality-features span {
    font-weight: 500;
    color: white;
}

/* Partnership Cards */
.partnership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: rgba(34,197,94,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.partnership-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Sustainability Features */
.sustainability-features span {
    font-weight: 500;
    color: white;
}

/* News Cards */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.news-card .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.news-card .btn {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
}

/* Contact Form */
.contact-form {
    border: 1px solid rgba(0,0,0,0.08);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30,58,138,0.25);
}

.contact-methods h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-methods p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Button Enhancements */
.btn-white {
    background: white;
    color: #10b981;
    border: 2px solid white;
    font-weight: 600;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .global-stats .col-6 {
        margin-bottom: 1rem;
    }
    
    .partnership-card ul {
        text-align: center;
    }
    
    .contact-methods .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-methods .d-flex i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .product-category-card,
    .rd-card,
    .partnership-card {
        margin-bottom: 1rem;
    }
    
    .global-stats h4 {
        font-size: 1rem;
    }
    
    .global-stats p {
        font-size: 0.8rem;
    }
}

/* Fresh Product Categories Design - Completely New Approach */

.therapeutic-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.therapeutic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

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

.therapeutic-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.98);
}

.therapeutic-card:hover .card-icon-wrapper {
    border-radius: 50%;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

.therapeutic-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Individual card color schemes */
.therapeutic-card-gastro .card-icon-wrapper {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.therapeutic-card-cardio .card-icon-wrapper {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.therapeutic-card-neuro .card-icon-wrapper {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.4);
}

.therapeutic-card-ent .card-icon-wrapper {
    background: linear-gradient(135deg, #96ceb4, #feca57);
    box-shadow: 0 8px 25px rgba(150, 206, 180, 0.4);
}

.therapeutic-card-general .card-icon-wrapper {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    box-shadow: 0 8px 25px rgba(254, 202, 87, 0.4);
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-title {
    color: #1a365d;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: currentColor;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.therapeutic-card:hover .card-title::after {
    width: 50%;
}

.therapeutic-card:hover .card-title {
    color: #ffffff;
}

.card-description {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    min-height: 2.5rem;
    padding: 0 0.5rem;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.therapeutic-card:hover .card-description {
    color: #ffffff;
    opacity: 1;
}

.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(102, 126, 234, 0.15);
    min-width: 140px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(102, 126, 234, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.therapeutic-card:hover .card-action::before {
    width: 100%;
}

.therapeutic-card:hover .card-action {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.explore-text {
    color: #4a6cf7;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.therapeutic-card:hover .explore-text {
    color: #ffffff;
}

.card-action i {
    color: #4a6cf7;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    left: 0;
}

.therapeutic-card:hover .card-action i {
    transform: translateX(4px);
    left: 3px;
    color: #ffffff;
}

/* Expertise Slider Section */
.expertise-slider-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background:#f5f3f3;
}

.expertise-slider {
    margin: 0 -15px;
    position: relative;
    padding: 0 60px; /* Add padding for arrows */
}

.expertise-slider .slick-slide {
    padding: 10px;
    transition: all 0.3s ease;
}

.expertise-slider .slick-slide.slick-active {
    opacity: 1;
}

/* Custom Slick Arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 10, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-arrow:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-color:#059669;
    transform: translateY(-50%) scale(1.05);
    color: #fff !important;
}
.slick-arrow {
    color: #000 !important;
}


.slick-arrow i {
    font-size: 1.25rem;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

/* Hide default Slick arrows */
.slick-arrow.slick-hidden {
    display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .expertise-slider .slick-slide {
        padding: 8px;
    }
    
    .slick-arrows button {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767.98px) {
    .expertise-slider .slick-slide {
        padding: 5px;
    }
    
    .slick-arrows {
        margin-top: 1.5rem;
    }
    
    .slick-arrows button {
        width: 40px;
        height: 40px;
    }
}

/* Enhanced CTA Button */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-light::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;
}

.btn-outline-light:hover::before {
    left: 100%;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Therapeutic Cards */
@media (max-width: 1200px) {
    .therapeutic-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .therapeutic-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .card-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
        min-height: 2rem;
    }
}

@media (max-width: 576px) {
    .therapeutic-card {
        padding: 1.25rem 0.75rem;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon-wrapper i {
        font-size: 1.25rem;
    }
    
    .card-action {
        padding: 0.5rem 0.75rem;
    }
    
    .explore-text {
        font-size: 0.8rem;
    }
}

.expertise-slider-section .slick-prev::before,
.expertise-slider-section .slick-next::before {
  display: none !important;   /* hide slick's default icons */
  content: '' !important;     /* also remove their text */
}
.about-us p{
    text-align: justify;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 2.3rem;
}
.why-us{
    max-width:350px;
}
.about-bg{
    background:linear-gradient(135deg, #e9ecef 0%, #e9ecef 100%);
}

.about-innovation-section {
    background: #f9fbfd;
  }
  
  .about-innovation-section .about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #198754;
    margin-bottom: 10px;
  }
  
  .about-innovation-section .about-title {
    font-size: 26px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 15px;
  }
  
  .about-innovation-section .about-text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6rem;
  }
  
  .about-innovation-section .about-list li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.6rem;
  }
  
  .about-innovation-section .about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(25, 135, 84, 0.1);
    backdrop-filter: blur(6px);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .about-innovation-section .about-badge h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
  }
  
  .about-innovation-section .about-badge p {
    font-size: 14px;
    color: #666;
  }
  
  .about-innovation-section .about-experience {
    background: #0d1b2a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
  }
  
  .about-innovation-section .about-experience h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .about-innovation-section .about-experience small {
    font-size: 14px;
    display: block;
  }
  .about-page-img{
    max-width: 600px;
  }
  
  .choose-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2393d3 100%);
    color: #fff;
    position: relative;
    overflow: hidden; 
    padding: 100px;
  }
  
  .choose-section .choose-label {
    display: inline-block;
    background: #0c1730;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  
  .choose-section .choose-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .choose-section .choose-text {
    font-size: 14px;
    margin-bottom: 25px;
    color: #fff;
  }
  
  .choose-section .btn-success {
    border-radius: 8px;
    font-weight: 500;
  }
  
  .choose-section .choose-feature {
    margin-bottom: 30px;
    gap: 15px;
  }
  
  .choose-section .choose-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 12px;
    background: #1f9d5a; /* green */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
  }
  
  .choose-section .choose-feature h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .choose-section .choose-feature p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
  }
  
/* Middle Image - fixed at bottom */
.choose-section .choose-image-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
  
  .choose-section .choose-image-wrap img {
    max-height: 550px;
    object-fit: contain;
  }

.features-section {
    background: #f9f9f9;
}

.stat-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2393d3;
    background: rgba(35, 147, 211, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.stat-item p {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    font-size: 0.85rem;
}

/* Ensure all cards in the row have equal height */
.row-equal-height {
    display: flex;
    flex-wrap: wrap;
}

.row-equal-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #2393d3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  }

/* Blog Page Styles */
.blog-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .badge {
    align-self: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-card h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.blog-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
}

/* Featured Post Styles */
.featured-post {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.featured-post .featured-image {
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-image {
    transform: scale(1.02);
}

.featured-post .featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
}

/* Pagination Styles */
.pagination .page-link {
    color: #059669;
    border: 1px solid #e5e7eb;
    margin: 0 0.25rem;
    border-radius: 0.5rem !important;
    min-width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background-color: #059669;
    border-color: #059669;
}

.pagination .page-link:hover {
    background-color: #f3f4f6;
    border-color: #e5e7eb;
}

/* Search and Filter */
.blog-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.blog-search .form-control {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-search .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.category-filter .btn {
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.category-filter .btn:hover,
.category-filter .btn.active {
    background-color: #059669;
    color: white;
    border-color: #059669;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .featured-post .featured-image {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .featured-post .featured-image {
        height: 250px;
    }
    
    .blog-card img {
        height: 180px;
    }
}

.facility-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
  }
  .facility-card:hover {
    transform: translateY(-8px);
  }
  
  .facility-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .facility-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a8a, #2393d3);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .facility-card:hover .overlay {
    transform: translateY(0);
  }
  .overlay h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .overlay p {
    font-size: 14px;
    margin: 0;
  }
  .our-team-section{
    background: linear-gradient(135deg, #1e3a8a, #2393d3);
    color: #fff;
  }
  .testimonial-img{
    max-width: 450px;
  }

  .fa-phone-alt{
    transform: rotate(105deg);
    }

 .txt-right{
  text-align:right;
 }
 .text-justify{
    text-align: justify;
 }
 .blog-para{
    margin-bottom: 4rem !important;
 }
 
 .slider { 
    max-width: 100%; 
    margin: 0 auto; 
}
.slider .slick-slide img { 
    width: 100%; 
    display: block;
    max-height: 600px;
    object-fit: cover; 
}

.team_card {
background: #ffffff;
border-radius: 1rem;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
overflow: hidden;
transition: transform .3s ease, box-shadow .3s ease;
text-align: center;
margin-top: 2rem;
}
.team_card:hover {
transform: translateY(-8px);
box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}
.team_card_media {
background: linear-gradient(135deg, #6dd5ed, #2193b0);
padding: 2rem 1rem 1rem;
}
.team_card_avatar_wrap {
width: 130px;
height: 130px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
border: 4px solid #fff;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.team_card_avatar {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.team_card_body {
padding: 1.25rem;
}
.team_card_name {
font-weight: 700;
font-size: 1.5rem;
color: #102a43;
margin-bottom: 0.3rem;
}
.team_card_role {
font-size: 1.2rem;
color: #2193b0;
font-weight: 600;
}
.team-wrapper{
    padding-top:60px;
    padding-bottom:90px;
}
.category_section {
      padding: 3rem 1rem;
      background: #f4f6f9;
    }
    .category_card {
      border-radius: 1rem;
      padding: 2rem 1.5rem;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #ffffff, #f1f5f9);
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      overflow: hidden;
    }
    .category_card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 5px;
      width: 100%;
      background: var(--category-color, #0077b6);
      border-radius: 1rem 1rem 0 0;
    }
    .category_card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .category_header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .category_title {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      color: #102a43;
    }
    .category_desc {
      font-size: .95rem;
      color: #555;
      margin-top: .5rem;
      margin-bottom: 1rem;
    }
    .category_icon {
      font-size: 2rem;
      color: var(--category-color, #0077b6);
      margin-right: .75rem;
    }
    .category_button {
      background: var(--category-color, #0077b6);
      border: none;
      border-radius: 50px;
      padding: .45rem 1.2rem;
      font-size: .9rem;
      color:#fff;
      font-weight: 500;
    }
    .category_button:hover {
      background: #005f87;
      color:#fff;
    }

    /* Product Card */
    .product_card {
      border-radius: .75rem;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 2px solid #efefef;
    }
    .product_card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .product_image {
      width: 100%;
      overflow: hidden;
    }
    .product_image img {
      width: 100%;
      height: 300px;
      object-fit: contain;
      display: block;
    }
    .product_body {
      padding: 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product_name {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: .25rem;
      text-align: center;
    }
    .product_sub {
      font-size: .9rem;
      font-weight: 500;
      color: #0077b6;
      margin-bottom: .5rem;
      text-align: center;
    }
    .product_full {
      font-size: .9rem;
      margin-bottom: .75rem;
      color: #444;
      flex-grow: 1;
      text-align: justify;
    }
    .indication_heading {
      font-size: .95rem;
      font-weight: 700;
      color: #102a43;
      margin-bottom: .2rem;
    }
    .indication_details {
      font-size: .85rem;
      color: #555;
    }
    .navbar-nav .nav-link{
        font-size:16px;
    }
    .txtline{
        line-height: 3rem;
    }