body {
    font-family: Arial, sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #0066ff, #00bcd4);
    color: white;
    padding: 180px 0;
}

.btn-custom {
    background: #0066ff;
    color: white;
}



  :root {
            --primary-color: #0d6efd;
            --secondary-color: #6610f2;
            --accent-color: #fd7e14;
            --dark-color: #212529;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .navbar-brand i {
            margin-right: 0.5rem;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid #e9ecef;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .service-card h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Features Section */
        .feature-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s;
        }

        .feature-box:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: translateX(5px);
        }

        .feature-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            opacity: 0.2;
            line-height: 1;
        }

        /* Solutions Section */
        .solution-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .solution-card h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
        }

        .solution-card ul {
            list-style: none;
            padding: 0;
        }

        .solution-card li {
            padding: 0.75rem 0;
            position: relative;
            padding-left: 2rem;
            color: #6c757d;
        }

        .solution-card li::before {
            content: "\f26b";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Testimonial Section */
        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            margin-top: 2rem;
        }

        .testimonial-card::before {
            content: '\201C';
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: 20px;
        }

        .testimonial-content {
            font-style: italic;
            color: #6c757d;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-color);
        }

        .testimonial-position {
            font-size: 0.9rem;
            color: #6c757d;
        }

        /* Contact Form */
        .contact-section {
            background: var(--light-bg);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            padding: 0.75rem 1rem;
            border-radius: 10px;
            border: 2px solid #e9ecef;
            transition: border-color 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
        }

        /* Footer */
        .footer {
            background: #212529;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer h5 {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 0.75rem;
        }

        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .section-subtitle {
            text-align: center;
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        /* Utility Classes */
        .bg-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }




/* subscriibe css */
.subscribe-section {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
}

.subscribe-section .form-control {
    height: 55px;
}

.subscribe-section .btn {
    padding: 0 30px;
}





/* blog details css start */

  .blog-detail-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 60px;
        }

        .blog-detail-content {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 40px;
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        .blog-featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .blog-meta-info {
            display: flex;
            gap: 30px;
            padding: 20px 0;
            border-bottom: 2px solid #eee;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
        }

        .meta-item i {
            color: #667eea;
        }

        .blog-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .blog-subheading {
            font-size: 1.5rem;
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
        }

        .blog-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            white-space: pre-wrap;
        }

        .back-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 30px;
            transition: transform 0.2s;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            color: white;
        }

        .loading-state {
            text-align: center;
            padding: 100px 20px;
        }

        .share-buttons {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }

        .share-btn {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            border-radius: 5px;
            color: white;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            color: white;
        }

        .share-linkedin {
            background-color: #0077b5;
        }

        .share-twitter {
            background-color: #1da1f2;
        }

        .share-facebook {
            background-color: #4267B2;
        }

 /* blog dtails page css end */

 /* blog page css start */
 
  .blog-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 60px;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .blog-subtitle {
            font-size: 1rem;
            color: #666;
            font-style: italic;
            margin-bottom: 15px;
        }

        .blog-excerpt {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #888;
        }

        .blog-status {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .status-published {
            background-color: #d4edda;
            color: #155724;
        }

        .read-more-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.2s;
        }

        .read-more-btn:hover {
            transform: translateY(-2px);
            color: white;
        }

        .no-blogs {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .loading-spinner {
            text-align: center;
            padding: 60px;
        }

        .filter-buttons {
            margin-bottom: 30px;
        }

        .filter-btn {
            margin: 5px;
        }

         /* blog page css end */


/* subscriibe css */
.subscribe-section {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
}

.subscribe-section .form-control {
    height: 55px;
}

.subscribe-section .btn {
    padding: 0 30px;
}



/* fqa css */

/* FAQ Hero */


.faq-hero{

padding:100px 0;

background:
linear-gradient(
135deg,
#f3f8ff,
#ffffff
);

}



.faq-hero h1{

font-size:48px;

font-weight:700;

}




/* FAQ Cards */


.faq-card-link{

text-decoration:none;

color:inherit;

}



.faq-card{


height:100%;

display:flex;

gap:20px;

padding:30px;


background:white;


border-radius:18px;


box-shadow:
0 10px 35px rgba(0,0,0,.08);


transition:.3s;


}



.faq-card:hover{


transform:translateY(-8px);


}



.faq-icon{


width:60px;

height:60px;


border-radius:50%;


background:#eef5ff;


display:flex;

align-items:center;

justify-content:center;


font-size:30px;

color:#2563eb;


}



.faq-content h3{


font-size:20px;

font-weight:700;


margin-bottom:12px;


}



.faq-content p{


color:#666;


line-height:1.6;


}




.faq-read{


color:#2563eb;

font-weight:600;


}





/* FAQ Detail Page */

.faq-detail-section{

padding:80px 0 40px;

background:#f7f9fc;

}



.faq-detail-card{

max-width:900px;

margin:auto;

background:#fff;

padding:45px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.faq-back-btn{

display:inline-flex;

align-items:center;

gap:8px;

margin-bottom:25px;

background:#2563eb;

color:#fff;

padding:10px 22px;

border-radius:8px;

text-decoration:none;

}



.faq-question-icon{

width:80px;

height:80px;

margin:20px auto;

display:flex;

align-items:center;

justify-content:center;

background:#eef5ff;

border-radius:50%;

font-size:40px;

color:#2563eb;

}



.faq-detail-card h1{

font-size:36px;

font-weight:700;

line-height:1.3;

margin-bottom:30px;

}



.faq-content-box{

background:#f8fbff;

padding:30px;

border-radius:15px;

border-left:5px solid #2563eb;

}



.faq-content-box p{

font-size:18px;

line-height:1.8;

color:#444;

}



/* bolsimilars css */

/* Biosimilars */
.biosimilar-section{

padding:40px 0;

background:#f7f9fc;

}



.biosimilar-main-card{

background:white;

border-radius:25px;

padding:10px;
margin-bottom: 10px;
box-shadow:
0 15px 45px rgba(0,0,0,.08);

}



/* table card */


.biosimilar-table-card{

background:#fff;

border-radius:18px;

padding:15px;

border:1px solid #eef1f6;

box-shadow:
0 8px 25px rgba(0,0,0,.05);

}



.biosimilar-table{

margin:0;

}



.biosimilar-table thead{

background:
linear-gradient(
135deg,
#0d6efd,
#6610f2
);

color:white;

}



.biosimilar-table th{

padding:16px;

}



.biosimilar-table td{

padding:16px;

vertical-align:middle;

}



.biosimilar-table tbody tr:hover{

background:#f4f8ff;

}



.medicine-name{

color:#0d6efd!important;

font-weight:700;

}



.medicine-status{

background:#e8f8ef;

color:#198754;

padding:6px 14px;

border-radius:20px;

font-size:14px;

}