.pharma-section {
    margin-top: 2%;
    padding: 60px 5%;
    background: linear-gradient(to bottom right, #e3f2fd, #ffffff);
  
    overflow: hidden;
    position: relative;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Flex Container */
.pharma-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Content Styles */
.pharma-content {
    flex: 1;
    text-align: left;
    padding: 20px;
    animation: slideInLeft 1s ease-in-out;
}

.pharma-heading {
    font-size: 36px;
    color: #01579b;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.pharma-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-family: 'Georgia', serif;
}

/* Link Style */
.pharma-link {
    color: #e63946;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.pharma-link:hover {
    text-decoration: underline;
    color: #d32f2f;
}

/* Right Image Styles */
.pharma-image {
    flex: 1;
    text-align: center;
    animation: slideInRight 1s ease-in-out;
}

.pharma-image img {
    width: 100%;
    margin-top:20px;
    max-width: 450px;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Hover Effect on Image */
.pharma-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Hover Effect on Section */
.pharma-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* =============================
   RESPONSIVE DESIGN
================================= */

/* Extra Large Screens (Desktops) */
@media (min-width: 1200px) {
    .pharma-container {
        gap: 50px;
    }
    .pharma-heading {
        font-size: 38px;
    }
    .pharma-description {
        font-size: 20px;
    }
    .pharma-image img {
        max-width: 500px;
    }
}

/* Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
    .pharma-container {
        gap: 40px;
    }
    .pharma-heading {
        font-size: 32px;
    }
    .pharma-description {
        font-size: 18px;
    }
    .pharma-image img {
        max-width: 400px;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .pharma-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .pharma-content {
        width: 100%;
        padding: 20px 10%;
        text-align: center;
    }

    .pharma-heading {
        font-size: 28px;
    }

    .pharma-description {
        font-size: 16px;
    }

    .pharma-image img {
        max-width: 350px;
    }
}

/* Mobile Devices (480px - 767px) */
@media (max-width: 767px) {
    .pharma-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }

    .pharma-content {
        width: 100%;
        padding: 20px 5%;
    }

    .pharma-heading {
        font-size: 24px;
    }

    .pharma-description {
        font-size: 14px;
    }

    .pharma-image img {
        max-width: 300px;
    }
}

/* Small Mobile Devices (up to 479px) */
@media (max-width: 479px) {
    .pharma-heading {
        font-size: 20px;
    }

    .pharma-description {
        font-size: 14px;
    }

    .pharma-image img {
        max-width: 250px;
    }
}

/* =============================
   ANIMATIONS
================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-section {
    padding: 50px 20px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    animation: background-move 10s linear infinite;
}

/* Background Animation */
@keyframes background-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Header Text */
.feature-header {
    text-align: center;
    font-size: 35px;
    padding-bottom: 30px;
    font-family: 'Times New Roman', Times, serif;
    color: #333;
}

/* ===========================
   Row and Column
=========================== */
.feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Feature Column */
.feature-column {
    flex: 1 1 45%;
    max-width: 500px;
    min-width: 280px;
}

/* ===========================
   Feature Card
=========================== */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Icon & Title */
.feature-header-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon Style */
.feature-icon {
    font-size: 40px;
    color: #1e88e5;
}

/* Card Title */
.feature-title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

/* Content Description */
.feature-content {
    font-size: 15px;
    color: #666;
    padding-top: 10px;
    line-height: 1.8;
}

/* Dot Icon Style */
.feature-dot {
    color: rgb(152, 206, 247);
}

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        align-items: center;
    }
    .feature-column {
        flex: 1 1 100%;
    }
}

.solution-section {
    padding: 40px 5%;
    text-align: center;
    background: linear-gradient(to right, #e3f2fd, #f1f8e9);
}

.solution-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #FFF;
    text-align: center;
}

/* ==============================
   Container Styles
============================== */
.solution-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* ==============================
   Card Styles
============================== */
.solution-card {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.solution-card:hover {
    transform: translateY(-10px);
}

/* ==============================
   Header Styles
============================== */
.solution-header {
    background-color: #1565c0;
    color: #fff;
    padding: 20px 15px;
    font-size: 22px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

/* ==============================
   Content Styles
============================== */
.solution-content {
    padding: 20px 30px;
    text-align: left;
    font-size: 16px;
    color: #333;
}

.solution-content p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
}

.solution-content i {
    font-size: 18px;
    margin-right: 8px;
    color: #43a047;
}

/* ==============================
   Button Styles
============================== */
.solution-btn {
    width: 100%;
    padding: 12px 0;
    background-color: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 0 0 15px 15px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.solution-btn:hover {
    background-color: #0d47a1;
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 768px) {
    .solution-title {
        font-size: 24px;
    }

    .solution-container {
        flex-direction: column;
        align-items: center;
    }

    .solution-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .solution-title {
        font-size: 20px;
    }

    .solution-content p {
        font-size: 14px;
    }

    .solution-btn {
        font-size: 16px;
    }
}

.section-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(to right, #ffeb3b, #fbc02d); /* Yellow Gradient */
    color: #1e272e; /* Dark Color for Contrast */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 24px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 18px;
        padding: 12px;
    }
}
