/* =========================================
   GLOBAL UI
========================================= */
:root{
    --primary:#2a96ff;
    --secondary:#0f172a;
    --light:#f8fbff;
    --text:#475569;
    --white:#ffffff;
    --border:#e2e8f0;
    --shadow:0 10px 35px rgba(0,0,0,.08);
}

body{
    background:#fff;
    overflow-x:hidden;
}

/* =========================================
   HERO SLIDER
========================================= */
.home-slides .single-banner-item{
    position:relative;
    overflow:hidden;
    border-radius:0;
}

.home-slides .single-banner-item img{
    width:100%;
    transition:all .5s ease;
}

.home-slides .single-banner-item:hover img{
    transform:scale(1.02);
}

.owl-theme .owl-dots{
    margin-top:15px;
}

.owl-theme .owl-dots .owl-dot span{
    width:12px;
    height:12px;
    background:#cbd5e1;
}

.owl-theme .owl-dots .owl-dot.active span{
    background:var(--primary);
}

/* =========================================
   SECTION TITLE
========================================= */
.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:28px;
    font-weight:700;
    color:var(--secondary);
    position:relative;
    display:inline-block;
    margin-bottom:0;
}

.section-title h2::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    width:80px;
    height:4px;
    border-radius:30px;
    background:var(--primary);
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section{
    background:linear-gradient(to right,#f8fbff,#eef6ff);
    padding:90px 0;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.3;
}

.about-content h2 span{
    color:var(--primary);
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:var(--text);
    text-align:justify;
}

.about-highlight{
    color:var(--primary);
    font-weight:700;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.default-btn{
    background:var(--primary);
    border:none;
    color:#fff;
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 20px rgba(42,150,255,.25);
}

.default-btn:hover{
    background:#1178db;
    transform:translateY(-3px);
    color:#fff;
}

/* =========================================
   VALUES IMAGE
========================================= */
.values-section img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* =========================================
   BANNER CARDS
========================================= */
.single-banner-categories-box{
    overflow:hidden;
    border-radius:24px;
    position:relative;
    margin-bottom:25px;
    box-shadow:var(--shadow);
}

.single-banner-categories-box img{
    width:100%;
    transition:.5s;
}

.single-banner-categories-box:hover img{
    transform:scale(1.05);
}

/* =========================================
   CATEGORY CARD
========================================= */
.categories-area{
    padding-bottom:70px;
}

.single-categories-box{
    background:#fff;
    border-radius:20px;
    padding:25px 15px;
    text-align:center;
    transition:.4s;
    margin-bottom:25px;
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
    height:100%;
}

.single-categories-box::before{
    content:'';
    position:absolute;
    width:100%;
    height:0;
    left:0;
    bottom:0;
    background:linear-gradient(135deg,#2a96ff,#64b5ff);
    transition:.4s;
    z-index:0;
}

.single-categories-box:hover::before{
    height:100%;
}

.single-categories-box img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.single-categories-box h3{
    font-size:18px;
    font-weight:600;
    color:var(--secondary);
    position:relative;
    z-index:2;
    transition:.4s;
}

.single-categories-box:hover h3{
    color:#fff;
    transform:translateY(-2px);
}

.single-categories-box .link-btn{
    position:absolute;
    inset:0;
    z-index:5;
}

/* =========================================
   PRODUCT PROMOTION
========================================= */
.products-promotions-area{
    background:#f8fbff;
    padding:80px 0;
}

.single-products-promotions-box{
    border-radius:22px;
    overflow:hidden;
    margin-bottom:25px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.single-products-promotions-box:hover{
    transform:translateY(-8px);
}

.single-products-promotions-box img{
    width:100%;
}

/* =========================================
   BLOG SECTION
========================================= */
.blog-area{
    background:#f8fbff;
    padding-top:80px;
    padding-bottom:80px;
}

.single-blog-post{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.single-blog-post:hover{
    transform:translateY(-10px);
}

.single-blog-post .post-image{
    overflow:hidden;
}

.single-blog-post .post-image img{
    width:100%;
    transition:.5s;
}

.single-blog-post:hover .post-image img{
    transform:scale(1.08);
}

.single-blog-post .post-content{
    padding:25px;
}

.single-blog-post h3{
    font-size:22px;
    line-height:1.5;
    margin-bottom:15px;
}

.single-blog-post h3 a{
    color:var(--secondary);
}

.single-blog-post h3 a:hover{
    color:var(--primary);
}

.post-meta{
    padding:0;
    margin:0;
    list-style:none;
}

.post-meta li{
    color:#64748b;
    font-size:15px;
}

/* =========================================
   MOBILE
========================================= */
@media only screen and (max-width:991px){

    .section-title h2{
        font-size:28px;
    }

    .about-section{
        padding:60px 0;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-image{
        margin-top:30px;
    }

    .single-categories-box{
        padding:18px 12px;
    }

    .single-categories-box img{
        width:70px;
        height:70px;
    }

    .single-categories-box h3{
        font-size:15px;
    }

    .single-blog-post h3{
        font-size:18px;
    }
}
   .reelsSwiper {
    width: 100%;
    padding: 20px 0 50px;
}

.reelsSwiper .swiper-slide {
    width: 220px !important;
}

.reelsSwiper iframe {
    width: 100%;
    height: 390px;
    border: 0;
    border-radius: 20px;
}

.reelsSwiper p{
    font-size:14px;
    font-weight:600;
}

@media(max-width:768px){

.reelsSwiper .swiper-slide{

width:160px !important;

}

.reelsSwiper iframe{

height:285px;

}

}
          .single-banner-item {
    background-color: #ebf7fa;
    height: auto;
}
.bg-f7f8fa {
    background-color: #c4c4c4;
}
.page-title-content ul li {
    display: inline-block;
    position: relative;
    color: #e7e7e7;
    font-weight: 600;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}
@media only screen and (max-width: 991px){
.drodo-responsive-nav .logo {
    position: relative;
    width: 50%;
    max-width:60px;
    z-index: 999;
}}
.drugbutton{
    justify-content: center;
    align-items: center;
    display: inline-flex;

}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Font */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 10px;
}

/* Heading Sizes */
h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 26px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Paragraph */
p {
  margin-bottom: 15px;
  color: #555;
}

/* Links */
a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

a:hover {
  color: #0056b3;
}

/* Buttons */
button, .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/* Navigation Menu */
.navbar {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Small Text */
.small-text {
  font-size: 14px;
  color: #777;
}
.drugbutton{
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.drug-request-btn{
    background: linear-gradient(135deg, #2a96ff, #0d6efd);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 150, 255, 0.25);
    white-space: nowrap;
}

.drug-request-btn i{
    margin-right: 6px;
    font-size: 16px;
}

.drug-request-btn:hover{
    background: linear-gradient(135deg, #0d6efd, #084298);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
}

.drug-request-btn.active{
    background: linear-gradient(135deg, #084298, #052c65);
    color: #fff;
}

@media only screen and (max-width: 991px){
    .drugbutton{
        width: 100%;
        margin-top: 10px;
    }

    .drug-request-btn{
        width: 100%;
        text-align: center;
    }
}