/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6,p,a,span, ul li,b {
   font-family:  'Gill Sans', sans-serif !important;
}

p, span {
    font-size: 16px !important;
    font-weight: 500;
}
:root {
    --primary-color: #375383; /* Muted Blue from Logo Text */
    --secondary-color: #E2252F; /* Deep Red from Logo Emblem */
    --accent-color: #E2252F; /* A bright orange for highlights */
    --text-color: #242424;
    --background-color: #f9f9f9;
    --light-gray: #e9e9e9;
    --font-heading: "Oswald", sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    scroll-behavior: smooth;
    margin-top: 180px !important;
}
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}
.text-justify{
  text-align: justify;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.desktop-nav a.btn.btn-price-list {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.social-icons a {
    color: #fff; /* or whatever color you want */
    font-size: 20px;
    margin-left: 15px; /* Adds space between icons */
    text-decoration: none; /* Removes the underline from the links */
}

.social-icons a:hover {
    color: #ccc; /* Changes color on hover */
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-size: 22px!important;
    font-style: italic;
    color: #777;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
}

.top-header {
    background-color: #375383;
    padding: 10px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.contact-info p span {
    margin-right: 5px;
    color: #ffffff;
}

.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
}

.logo-img {
    width: 150px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.8rem;
    color: #666;
    margin-top: -5px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    color: #444;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease;
    font-weight: bold;
}

.desktop-nav a:hover {
    color: var(--secondary-color);
}

.btn-contact, .btn-price-list {
    background-color: #E2252F;
    color: white;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover, .btn-price-list:hover {
    background: linear-gradient(to right, #e93e48, #d12229);
    transform: translateY(-2px);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background-color: #fff;
    z-index: 1999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.mobile-logo {
    width: 120px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-close:hover {
    background-color: #e9ecef;
}

.mobile-nav-content {
    padding: 30px 20px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.mobile-cta {
    margin: 20px 0;
    width: 100%;
    text-align: center;
    padding: 15px;
}

.mobile-contact-info {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
}

.mobile-contact-item i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}
.mobile.have-new-wrapper {
    display: none !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
.typing-container.desk.have-new-wrapper {
    display: none;
}
.mobile.have-new-wrapper {
    display: block !important;
}
    .call-div {
        display: none !important;
    }
    .card-front {
    background-size: contain !important;
}
.products-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 0 15px !important; 
    padding: 20px 10px;
}

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-header .container {
        padding: 0 15px;
    }

    .logo-img {
        width: 120px;
    }

    /* Hide top header on very small screens but keep it on tablets */
    .top-header {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .main-header .container {
        padding: 0 10px;
    }

    .top-header {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }

    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================================= */
/* --- HERO SECTION STYLES --- */
/* ========================================================= */

.hero-section {
    background: url(images/newBanner.jpg) no-repeat  center/cover;
    padding: 200px  0px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    text-align: left;
     background-size: contain;
    background-repeat: no-repeat;
}


.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px; /* Space between text and form */
    width: 100%;
}

.hero-text-content {
    flex: 1; /* Allows the text content to grow */
    max-width: 60%; /* Prevents text from being too wide */
}

.hero-text-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: normal;
}

.hero-text-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
}

/* Form Card Styling */
.hero-form-card {
    background-color: #375383e3;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.hero-form-card .form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.hero-form-card .form-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 10px;
}

.hero-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-card .form-group input,
.hero-form-card .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.hero-form-card .form-group input:focus,
.hero-form-card .form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: transparent;
}

.hero-form-card .btn-submit {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-form-card .btn-submit:hover {
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .hero-text-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 40px;
    }

 .thnk-img {
    width: 100%;
}
    .hero-section {
    padding: 100px 0 30px;
    background-size: inherit;
    background-position: center;
}
    
    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-text-content p {
        font-size: 1rem;
    }

    .hero-form-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 30px;
    }
    
    .hero-text-content h1 {
        font-size: 1.8rem;
    }

    .hero-form-card {
        padding: 20px 15px;
    }
}


div#carousalll {
    background-color: #E8F3ED;
}





/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1;
        margin-bottom: 30px;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }
}

/* Product Categories Section */
.products-section {
    background-color: #375383;
    background: url(/images/banner.jpg) no-repeat center / cover;
}

/*.products-grid {*/
/*   display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
  
/*}*/
.products-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 20px 15px;
    padding: 20px 10px;
}
.product-card {
  perspective: 1000px;
  height: 360px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.product-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 80%;
  padding: 20px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  align-items: center;
  text-align: center;
}

.card-front {
  z-index: 2;
}

.card-back {
  transform: rotateY(180deg);
}

.product-icon img {
  max-width: 70px;
  margin-bottom: 10px;
}

.card-front h3,
.card-back h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  font-weight: 700;
  color: #000;
}

.card-front p,
.card-back p {
  font-size: 18px!important;
  color: #555;
  line-height: 1.4;
}

.btn-cta {
  margin-top: 15px;
  padding: 8px 18px;
  background: #cc0404;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background: #a50303;
}

/* Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .product-card {
    height: 340px;
  }
}


/* Why Choose Us Section */
.benefits-section {
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.benefit-card {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.benefit-card .icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background: url(/images/bottom-bg.jpg) no-repeat center / cover;
}

.contact-grid {
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-infoo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-infoo h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-infoo > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    padding-top: 5px;
}

.info-item h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #444;
}

.info-item p {
    margin: 0;
    color: #666;
}

.info-item small {
    color: #888;
    font-size: 0.85rem;
}

/* Contact Form Styling */
.contact-form-container {
    flex: 1.2;
    padding: 20px;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.btn-send-message {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #e2252f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--font-body);
}

.btn-send-message:hover {
    background-color: #c0392b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
        padding: 30px 20px;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form .form-group {
        margin-bottom: 20px;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e2252f;
    padding: 10px 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 13px;
    text-decoration: none;
}

.bottom-bar-item i {
    font-size: 18px;
    margin-bottom: 3px;
}

/* Show only on mobile */
@media (max-width: 767px) {
    .mobile-bottom-bar {
        display: flex;
    }
    body {
        margin-top: 14% !important;
    }
    .hero-form-card {
        position: relative !important;
        transform: matrix(1, 0, 0, 1, 0, 0) !important;
        right: auto !important;
        top: 0 !important;
    }
    .hero-wrapper {
        display: none;
    }
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn,
    .btn-price-list,
    .btn-send-message {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}



/* ===== New Pharma Section (Top Pharma Company + Logo Carousel) ===== */
.pharma-section {
    background: #f3f3f3;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pharma-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}
.pharma-title {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}
.typewriter-text {
    display: inline-block;
    border-right: 3px solid #ffd700;
    animation: pharma-cursor-blink 1s infinite;
}
@keyframes pharma-cursor-blink {
    0%, 50% { border-color: #ffd700; }
    51%, 100% { border-color: transparent; }
}
.stats-highlight {
    display: none;
    background: rgba(255, 215, 0, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 24px;
    margin: 0 8px;
    border: 2px solid #ffd700;
}
.logo-carousel {
    position: relative;
    overflow: hidden;
    /*background: rgba(255, 255, 255, 0.95);*/
    border-radius: 18px;
    padding: 35px 18px;
    /*box-shadow: 0 20px 40px rgba(0,0,0,0.15);*/
    /*backdrop-filter: blur(8px);*/
}
.carousel-track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: pharma-scroll 20s linear infinite;
}
@keyframes pharma-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-165%); }
}
.carousel-track:hover { animation-play-state: paused; }
.logo-item {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 165px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 18px;
    flex-direction: column;
}
.logo-icon {
    width: 23%;
}
.logo-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}
.logo-text {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .pharma-title { font-size: 1.8rem; margin-bottom: 28px; }
    .logo-item { min-width: 200px; height: 100px; padding: 14px; }
    .pharma-section { padding: 45px 0; }
    .typing-container {
    font-size: 2em;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid;.hero-section
    animation: typing 6s steps(50, end) infinite;
    color: #fff;
}
.hero-section {
    display: none !important;
}
.hero-section-mobile {
    position: relative;
    /*margin-top: 100px;*/
}
.hero-text-content {
    display: none;
}
.hero-text-contents img {
    width: 100%;
}

}
.typing-container {
    font-size: 2em;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid;
    animation: typing 6s steps(50, end) infinite;
    color: #fff;
}
@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
h1.typing-text {
    font-size: 35px;
}

@media (min-width:768px) {
section#top-pharma {
    margin-top: -162px;
}
.bubbles a.call {
    display: none;
}
.hero-section-mobile {
    display: none;
}
.hero-form-card {
    margin-left: 200px !important;
}
}

.pharma-section .typing-container {
    font-size: 2em;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid;
    animation: typing 6s steps(50, end) infinite;
    color: #a7a7a7;
}
.pharma-section  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: -webkit-center;
}

.card-front.one {
    background-image: url(images/icons/profuct-category-for-gyanic.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.two {
    background-image: url(images/icons/Pediatric.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.card-front.three {
     background-image: url(images/icons/Ortho.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.four  {
     background-image: url(images/icons/Derma.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.five  {
     background-image: url(images/icons/PPI-&-Injection.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.six  {
     background-image: url(images/SYRUP--&--SUSPENSION.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.seven  {
     background-image: url(images/Antibiotics.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.seven  {
     background-image: url(images/Antibiotics.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.eight  {
     background-image: url(images/Antacid,-PPI-&-Laxative.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.card-front.nine  {
     background-image: url(images/NUTRITIONAL.jpg);
    background-position: center;
    background-repeat: no-repeat;
}


Antibiotics.jpg

.hero-text-content {
    flex: 1;
    max-width: 60%;
    visibility: hidden;
}
.logo-icon {
    width: 43%;
}
.footer-form {
    position: fixed;
    right: 15px;
    bottom: 0;
    z-index: 1000;
    width: 286px;
}
.footer-form .heading-look {
    font-size: 24px;
    background: #375383;
    color: #fff;
    text-align: center;
    display: block;
    padding: 4px 0;
    cursor: pointer;
}
div#mini_contact_form {
    padding: 15px;
    display: none;
    background: #ffff;
    margin-top: 0px !important;
}
.footer-form button.btn {
    background: #e2252f !important;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}
.call-div {
    /*position: fixed;*/
    bottom: 260px;
    right: 0px;
    z-index: 99;
    display: grid;
    gap: 22px;
}
.call-div img {
    width: 75px;
}
a.call img {
    width: 135px;
}
.call-div a.whats {
    right: 10px !important;
    position: fixed;
    bottom: 60px;
}


@media only screen and (min-width: 990px) and (max-width: 1550px) {
    section#top-pharma {
    margin-top: -175px !important;
}
.hero-section {
    background: url(images/newBanner.jpg) no-repeat  center/cover;
    padding: 195px  0px !important;
    display: flex;
    align-items: center;
    /* min-height: 100vh; */
    text-align: left;
    background-size: contain;
    background-repeat: no-repeat;
}
/*.hero-form-card form {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 6px !important;*/
/*}*/
/*.hero-form-card .form-subtitle {*/
/*    text-align: center;*/
/*    font-size: 0.9rem;*/
/*    color: #fff;*/
/*    margin-bottom: 5px !important;*/
/*}*/
/*.hero-form-card {*/
/*    background-color: #375383e3;*/
/*    padding: 20px 30px !important;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
/*    max-width: 360px;*/
/*    width: 100%;*/
/*}*/

}

.hithere {
  animation: hithere 3s ease infinite;
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.grid-div {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 10px 20px;
}
/*a.call {*/
/*    background-color: #e2252f;*/
    /* background-position: center; */
/*    padding: 15px 20px;*/
/*    border-radius: 80px 0px 0 80px;*/
    /* object-fit: cover; */
/*}*/
.main-header {
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

    /* Left Menu */
    .prodtype-menu {
        flex: 1 1 200px;
        border: 1px solid #375383;
        border-radius: 6px;
        padding: 10px 0;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .prodtype-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .prodtype-menu-item {
        padding: 12px 20px;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
        color: #000;
    }
    .prodtype-menu-item:hover {
        background: #f0f0f0;
    }

    /* Right Grid */
    .prodtype-grid {
        flex: 3 1 500px;
        display: grid;
        grid-template-columns: 2fr 2fr 2fr;
        gap: 20px;
    }
   .prodtype-card {
    text-align: center;
    border: 1px solid #375383;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
    .prodtype-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
 .prodtype-card h4 {
    margin: 10px 0 0;
    font-size: 20px;
    color: #000;
}
    .prodtype-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .prodtype-section {
            flex-direction: column;
        }
        .prodtype-menu {
            width: 100%;
        }
    }
    .prodtype-section {
    background: #fff;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .prodtype-section {
        margin-top: 0px;
    }
}
.container.one {
    justify-content: center;
}
/*.prodtype-section ::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;*/
/*    background-size: 50px 50px;*/
/*    opacity: 0.3;*/
/*}*/
@media only screen and (min-width: 990px) and (max-width: 1550px) {
  .prodtype-section {
        margin-top: 0px !important;
    }
}
 .prd-section {
        display: flex;
        gap: 20px;
        padding: 30px 0;
        flex-wrap: wrap;
    }

    /* Left Menu */
    .prd-menu {
        flex: 1 1 200px;
        border: 1px solid #006400;
        border-radius: 6px;
        padding: 10px 0;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .prd-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .prd-menu li {
        padding: 12px 20px;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
        color: 000;
    }
    .prd-menu li:hover {
        background: #f0f0f0;
    }

    /* Right Grid */
    .prd-grid {
        flex: 3 1 500px;
        display: grid;
        grid-template-columns: 2fr 2fr 2fr;
        gap: 20px;
    }
    .prd-card {
        text-align: center;
        border: 1px solid #006400;
        border-radius: 8px;
        padding: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .prd-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .prd-card h4 {
        margin: 10px 0 0;
        font-size: 16px;
        color: 000;
    }
    .prd-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .prd-section {
            flex-direction: column;
        }
        .prd-menu {
            width: 100%;
        }
        .prodtype-section .container {
    max-width: 1240px;
    margin: 0px auto;
    padding: 0 25px;
    display: grid !important;
    gap: 40px;
}
.prodtype-grid {
    flex: 3 1 500px;
    display: grid !important;
    gap: 20px;
    grid-template-columns: 1fr;
}
.top-header {
    display: none !important;
}
nav.navbar.desktop-nav .btn-list {
    display: none !important;
}
.main-header {
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-list {
    display: none;
}
.hero-form-card {
    padding: 20px 15px;
    margin-top: 20px;
}

    }
    .prodtype-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    gap: 60px;
}
.swing {
	transform-origin: top center;
	animation: swing 2s ease infinite;
}
@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}
ul.prodtype-menu-list a {
    text-decoration-line: none;
}

.footer-form {
  max-width: 400px;
  border-radius: 8px;
}

.heading-look {
  display: block;
  font-size: 18px;
  font-weight: 500;
  background: #0073aa;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}

.fo-form {
  display: none; /* Hidden by default */
  margin-top: 15px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 10px;
}

label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.form-control {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea.form-control {
  resize: vertical;
}

button.btn:hover {
  background: #005f8d;
}
header.header.thnk {
    position: relative !important;
    z-index: 99;
}
/* Popup Background */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}
@media only screen and (min-width: 990px) and (max-width: 1550px) {
    .hero-form-card {
        margin-left: 165px !important;
        margin: 0 auto !important;
    }
}
button.btn.btn-price-list.open-form {
    background-color: rgb(226, 37, 47);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 25px;
    text-decoration: none;
    transition: 0.3s;
border:none;
}
.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    background: #e2252f;
    border: none;
}

button.btn.btn-price-list.open-form {
    display: none;
}
/*a.call {*/
/*    display: none;*/
/*}*/






.circle-button {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #d7261f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.text-circle {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 150px;
  height: 150px;
  pointer-events: none;
}

.inner-btn {
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.1;
}
/* FULL HERO SECTION */
.hero-wrapper {
    position: relative;
    /*height: 100vh;*/
    float: left;
    width: 100%;
    overflow: hidden;
}

 SLIDER FULL SCREEN 
.slideshow-container {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}


.mySlides { display: none; }

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM ON RIGHT */
.hero-form-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 380px;
  background: rgba(0, 32, 96, 0.85);
  padding: 30px;
  border-radius: 12px;
  color: #fff;
}

.hero-form-card input,
.hero-form-card textarea {
  width: 100%;
  margin: 7px 0;
  padding: 10px;
  border-radius: 6px;
  border: 0;
  outline: none;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #e50000;
  color: #fff;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* ARROWS */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: #000000;
  font-size: 30px;
  z-index: 20;
  user-select: none;
}
.prev { left: 10px; }
.next { right: 10px; }

/* FADE ANIMATION */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4; }
  to   { opacity: 1; }
}





.testimonial-section {
    padding: 50px;
    background: url("images/thumb-350-1351187.webp");
    background-size: cover;
}
.test-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.test-card {
    padding: 45px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}
/* Headings */
.test-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 22px;
}

/* Text */
.test-card p {
    font-size: 14px !important;
    line-height: 22px;
    margin-bottom: 15px;
}

/* Author */
.author {
    font-weight: 700;
    font-size: 13px;
    display: block;
}

/* Color Classes */
.pink-bg h3 { color: #ff3c7d; }
.blue-bg h3 { color: #3a4fff; }
.green-bg h3 { color: #00bb72; }
.orange-bg h3 { color: #ff7b00; }
.purple-bg h3 { color: #bd3aff; }

/* Circular Background Shapes */
.test-card::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.65);
    border-radius: 50%;
    z-index: -1;
}

.test-card::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    z-index: -1;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .test-row {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

@media (max-width: 576px) {
    .test-row {
        grid-template-columns: repeat(1, 1fr); /* 1 per row */
    }
}

body, html { margin: 0; padding: 0; }

/* Full-width slider */
.owl-full-slider .owl-stage-outer {
    width: 100%;
}

/* Image styling */
.owl-full-slider img {
    width: 100%;
    height: 70vh;          /* Change to 100vh for full screen */
    object-fit: cover;
    display: block;
}

/* Remove any spacing */
.owl-full-slider .owl-item {
    margin: 0;
    padding: 0;
}
section {
    width: 100%;
    float: left;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Left Button */
.prev {
  left: 15px;
}

/* Right Button */
.next {
  right: 15px;
}

/* Hover Effect */
.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.prev:focus,
.next:focus {
    outline: none !important;
    box-shadow: none !important;
}

.prev:active,
.next:active {
    outline: none !important;
    box-shadow: none !important;
}

button {
    -webkit-tap-highlight-color: transparent;
}

footer {
    width: 100%;
    float: left;
}