@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Poppins:wght@300&display=swap');

/* :root {
    --medical-blue: #0077B6;
    --medical-light-blue: #90E0EF;
    --medical-teal: #48CAE4;
    --accent-orange: #FF9E43;
    --light-gray: #f8f9fa;
}

/* Falling medicines animation */
@keyframes float {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(100px) rotate(180deg);
    }
    100% {
        transform: translateY(100vh) translateX(-50px) rotate(360deg);
        opacity: 0;
    }
}

/* .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #023E8A, #0077B6, #0096C7);
    overflow: hidden;
    margin-bottom: 4rem;
} */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--shalimed-orange) 0%, var(--shalimed-blue) 100%);
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero,
.hero * {
    /* color: #fff !important; */
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.medicine-animation-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.medicine {
    position: absolute;
    animation: float 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Pills */
.medicine.pill {
    width: 40px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Capsules */
.medicine.capsule {
    width: 40px;
    height: 16px;
    background: linear-gradient(90deg, var(--medical-light-blue) 50%, white 50%);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(144, 224, 239, 0.5);
}

/* Tablets */
.medicine.tablet {
    width: 24px;
    height: 24px;
    background: var(--medical-light-blue);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(144, 224, 239, 0.5);
}

/* Generate multiple medicines with different positions and timings */
.medicine:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; }
.medicine:nth-child(2) { left: 15%; animation-duration: 9s; animation-delay: 1s; }
.medicine:nth-child(3) { left: 25%; animation-duration: 7.5s; animation-delay: 2s; }
.medicine:nth-child(4) { left: 35%; animation-duration: 8.5s; animation-delay: 0.5s; }
.medicine:nth-child(5) { left: 45%; animation-duration: 9.5s; animation-delay: 1.5s; }
.medicine:nth-child(6) { left: 55%; animation-duration: 8s; animation-delay: 2.5s; }
.medicine:nth-child(7) { left: 65%; animation-duration: 7s; animation-delay: 0.7s; }
.medicine:nth-child(8) { left: 75%; animation-duration: 9s; animation-delay: 1.7s; }
.medicine:nth-child(9) { left: 85%; animation-duration: 8.5s; animation-delay: 2.2s; }
.medicine:nth-child(10) { left: 95%; animation-duration: 7.5s; animation-delay: 0.2s; }

.bg-primary {
    background-color: var(--medical-blue) !important;
}

.text-primary {
    color: var(--medical-blue) !important;
}

.btn-primary {
    background-color: var(--medical-blue);
    border-color: var(--medical-blue);
}

.btn-primary:hover {
    background-color: #005C8D;
    border-color: #005C8D;
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card .fa-3x {
    color: var(--medical-blue);
}

.navbar {
    padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--medical-blue);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--medical-teal);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent-orange);
}

.form-control:focus {
    border-color: var(--medical-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
}

.img-fluid {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Products Page Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-search {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.product-search input {
    border: none;
    padding: 1.2rem;
}

.product-search button {
    border-radius: 0 25px 25px 0;
    padding: 0.8rem 1.5rem;
}

/* Services Page Styles */
.service-icon {
    font-size: 2.5rem;
    color: var(--medical-blue);
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card {
    border: none;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Blog Page Styles */
.blog-post {
    margin-bottom: 2rem;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover img {
    transform: scale(1.05);
}

.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.blog-categories {
    border-radius: 10px;
    overflow: hidden;
}

.blog-categories .list-group-item {
    border: none;
    padding: 0.8rem 1.2rem;
    transition: background-color 0.3s ease;
}

.blog-categories .list-group-item:hover {
    background-color: var(--light-gray);
    color: var(--medical-blue);
}

.blog1 {
    
    color:var(--medical-blue);
    font-family: poppins;
    font-size: large;
    text-align: center;
}
/* Contact Page Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--medical-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
}

.contact-info-card {
    border: none;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-card .card-title {
    color: var(--medical-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info-card i {
    color: var(--medical-blue);
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card, .blog-post, .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
}


/* new css */

:root {
  --shalimed-orange: #f37021;
  --shalimed-orange-dark: #d35400;
  --shalimed-blue: #03b0fb;
  --shalimed-dark: #2c3e50;
  --shalimed-light: #f8f9fa;
}


/* Add to style.css */
.btn-primary, .btn-primary:focus {
  background-color: var(--shalimed-orange);
  border-color: var(--shalimed-orange);
}
.btn-primary:hover {
  background-color: var(--shalimed-orange-dark);
  border-color: var(--shalimed-orange-dark);
}

h1, h2, h3, .section-title {
  color: var(--shalimed-orange);
}

.nav-link.active, .nav-link:focus, .nav-link:hover {
  color: var(--shalimed-orange) !important;
} 



/*new new*/
:root {
  --shalimed-orange: #f37021;
  --shalimed-orange-dark: #d35400;
  --shalimed-blue: #03b0fb;
  --shalimed-dark: #2c3e50;
  --shalimed-light: #f8f9fa;
}

/* General background */
body {
  background-color: var(--shalimed-light);
  color: var(--shalimed-dark);
}

/* Navbar brand and highlights */
.navbar-brand,
.navbar-brand span {
  color: var(--shalimed-orange) !important;
  font-weight: bold;
}

/* Navbar active link and hover */
.nav-link.active,
.nav-link:focus,
.nav-link:hover {
  color: var(--shalimed-orange) !important;
  font-weight: 600;
}

/* Accent headings */
h1, h2, h3, .section-title {
  color: var(--shalimed-orange);
}

/* Cards and sections */
.card, .service-card, .blog-content-wrapper {
  border: none;
  background: #fff;
  box-shadow: 0 4px 16px rgba(243,112,33,0.08);
  border-radius: 16px;
}

/* Primary button */
.btn-primary, .btn-primary:focus {
  background-color: var(--shalimed-orange);
  border-color: var(--shalimed-orange);
  color: #fff;
}
.btn-primary:hover, .btn-primary:active {
  background-color: var(--shalimed-orange-dark);
  border-color: var(--shalimed-orange-dark);
  color: #fff;
}

/* Outline button */
.btn-outline-primary, .btn-outline-primary:focus {
  color: var(--shalimed-orange);
  border-color: var(--shalimed-orange);
  background: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  background-color: var(--shalimed-orange);
  color: #fff;
  border-color: var(--shalimed-orange-dark);
}

/* Icon color in cards */
.card .fa-3x, .service-icon {
  color: var(--shalimed-orange);
}

/* Section backgrounds */
.bg-light, .section-bg {
  background-color: var(--shalimed-light) !important;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, var(--shalimed-orange) 60%, var(--shalimed-blue) 100%);
}
.footer h5,
.footer a,
.footer p {
  color: #fff !important;
}
.footer .social-links a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer .social-links a:hover {
  opacity: 1;
  color: var(--shalimed-orange-dark) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card, .service-card, .blog-content-wrapper {
    padding: 16px 8px;
  }
  .footer .col-md-4 {
    text-align: center !important;
    margin-bottom: 1rem;
  }
}

@keyframes medicine-marquee-move {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ...existing code... */

/* Marquee Animation for Medicine Images */
.medicine-marquee-wrapper {
    height: 70px;
    z-index: 2;
    pointer-events: none;
    top: 30px;
}
.medicine-marquee {
    display: flex;
    gap: 32px;
    animation: medicine-marquee-move 18s linear infinite;
    will-change: transform;
}
@keyframes medicine-marquee-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.medicine-img {
    height: 250px;
    width: auto;
    margin: 0 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    background: #fff;
    border-radius: 8px;
    padding: 2px 6px;
}
@media (max-width: 768px) {
    .medicine-marquee-wrapper {
        height: 40px;
        top: 12px;
    }
    .medicine-img {
        height: 28px;
        padding: 1px 3px;
    }
    .medicine-marquee {
        gap: 16px;
    }
    .hero-content {
        padding-top: 40px;
    }
}
/* ...existing code... */

/* ...existing code... */

/* Hero floating medicine images (decorative, animated) */


.hero-floating-meds {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.floating-med {
  position: absolute;
  opacity: 0.85;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.10));
  animation: float-med 9s ease-in-out infinite alternate;
  transition: opacity 0.3s;
}
.floating-med.med-a { left: 8%;  top: 18%; width: 50px; animation-delay: 0s;}
.floating-med.med-b { left: 75%; top: 12%; width: 50px; animation-delay: 2s;}
.floating-med.med-c { left: 50%; top: 65%; width: 50px; animation-delay: 1s;}
.floating-med.med-d { left: 18%; top: 70%; width: 50px; animation-delay: 3s;}
.floating-med.med-e { left: 80%; top: 75%; width: 50px; animation-delay: 1.5s;}

@keyframes float-med {
  0%   { transform: translateY(0) scale(1) rotate(-8deg);}
  50%  { transform: translateY(-30px) scale(1.07) rotate(8deg);}
  100% { transform: translateY(0) scale(1) rotate(-8deg);}
}

@media (max-width: 768px) {
  .floating-med.med-a { left: 2%;  top: 10%; width: 48px;}
  .floating-med.med-b { left: 70%; top: 8%; width: 38px;}
  .floating-med.med-c { left: 45%; top: 70%; width: 54px;}
  .floating-med.med-d { left: 10%; top: 80%; width: 32px;}
  .floating-med.med-e { left: 80%; top: 80%; width: 40px;}
}

/* ...existing code for .medicine-marquee-wrapper, .medicine-marquee, .medicine-img, etc... */

/* ...existing code... */

/* Hero contact form style */
.hero-contact-form {
  background: #fff;
  color: #2c3e50;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  opacity: 0.97;
  margin-bottom: 1rem;
}
.hero-contact-form input,
.hero-contact-form textarea {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
}
.hero-contact-form input:focus,
.hero-contact-form textarea:focus {
  border-color: var(--shalimed-orange);
  box-shadow: 0 0 0 0.1rem rgba(243,112,33,0.15);
}

/* WhatsApp floating button */
.whatsapp-float-btn {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff !important;
  border-radius: 30px;
  padding: 6px 18px 6px 10px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-float-btn:hover {
  background: #1ebe57;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(37,211,102,0.25);
}
@media (max-width: 768px) {
  .hero-contact-form {
    padding: 1rem;
    max-width: 100%;
  }
  .whatsapp-float-btn {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 9999;
    border-radius: 50%;
    padding: 0;
    width: 54px;
    height: 54px;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  }
  .whatsapp-float-btn span {
    display: none !important;
  }
}
/* ...existing code... */