/* Minimal brand tokens and tiny helpers (unique class names) */
:root {
  --ab-blue: #0d2f81;
  --ab-accent: #123b8a;
  --ab-soft: #f5f9ff;
  --ab-radius: 0.75rem;
}

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

/* 🚫 Remove overflow from sections and containers */
.ab-section,
.container,
.overflower,
#sevoiso,
div {
  overflow: visible !important;
}

/* Ensure body handles the scrolling */
html,
body {
  overflow-x: hidden; /* stop horizontal scroll */
  overflow-y: auto; /* normal vertical scroll */
}

.overflower {
  overflow-y: hidden;
}

.darkBlueFont {
  color: #1e3a8a;
}

.darkBlueBackground {
  background-color: #1e3a8a;
}

.lightBlueBackground {
  background-color: #e8f1fd;
}

.lightGreyBackground {
  background-color: #f9fafb;
}

/* top thin contact bar */
.ab-topbar {
  background: #fff;
  border-bottom: 1px solid #eef3fb;
  font-size: 0.95rem;
}
.ab-topbar .ab-contact {
  color: #2b3b59;
}

/* navbar */
.ab-navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(6, 15, 37, 0.04);
}
.ab-navbar .ab-brand {
  font-weight: 700;
  color: var(--ab-blue);
}

.ctaBtn:hover {
  background: #15326c;
  transition: 0.5s;
}

/* hero */
.ab-hero {
  min-height: 68vh;
  background: center/cover no-repeat url("./images/albasmaHero_rgb.png");
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.ab-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(48, 32, 8, 0.4));
}
.ab-hero .ab-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.ab-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.02;
}
.ab-hero p {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.6rem;
}

/* reusable small card tweaks */
.ab-card {
  border-radius: var(--ab-radius);
  border: 1px solid #eef3fb;
  background: #fff;
  box-shadow: 0 15px 15px 0px rgba(18, 59, 138, 0.08);
}

.b-radius {
  border-radius: var(--ab-radius);
}

.ab-card-sm {
  padding: 1.25rem;
}
.ab-card-media {
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* numbers card */
.ab-num {
  text-align: center;
  padding: 1.25rem;
}

/* imports dark band */
.ab-imports {
  background: var(--ab-accent);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.ab-imports .ab-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  margin: 0.25rem;
  display: inline-block;
}

/* partners/clients */
.ab-logo {
  max-height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 8px;
}

/* quote */
.ab-quote {
  background: #fff;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 18px rgba(18, 59, 138, 0.09);
}

/* testimonial */
.ab-test {
  padding: 1.25rem;
}

/* CTA band */
.ab-cta-band {
  background: var(--ab-blue);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

/* footer (bottom) */
footer {
  padding-top: 15px;
}

.ab-footer {
  background: var(--ab-soft);
  padding: 2.5rem 0;
  color: #21314a;
}
.ab-footer a {
  color: #21314a;
  text-decoration: none;
}
.ab-footer {
  height: 38px;
}

/* small responsive tweaks */
@media (max-width: 767.98px) {
  .ab-hero {
    min-height: 52vh;
    padding: 2rem 0;
  }
  .ab-hero-inner {
    padding: 0 1rem;
  }
}
.img-shadow {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
/* Infinite logo carousel */
.ab-clients-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ab-clients-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  gap: 15px;
}

.ab-clients-track img {
  height: 90px; /* all logos same height */
  width: auto; /* width adjusts automatically */
  object-fit: contain; /* keeps proportions */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.shadow-top {
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1),
    0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

.img {
  transform: scale(0.8);
  transition: 7s ease-out, transform 1.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.img.visible {
  transform: scale(1.3);
}
@media (prefers-reduced-motion: reduce) {
  .img {
    animation: none;
    transform: none;
  }
}

/* End of index */

/* Start of about us */
.darkBlueBackground {
  background-color: #1e3a8a;
}

.btn:hover {
  background-color: #182f6d;
}
.linearBackground {
  background: linear-gradient(to right, #1e3a8a 25%, #60a5fa 100%);
}

/* Start of contact us */

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.card-custom {
  border-radius: 10px;
  padding: 20px;
}
.icon-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.icon-box i {
  font-size: 22px;
}
.feature-card {
  padding: 20px;
  background: #fcfbfb;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.linearBackground {
  background: linear-gradient(to right, #1e3a8a 25%, #60a5fa 100%);
}

.darkBlueBackground {
  background-color: #1e3a8a;
}
.sendMsgBtn:hover {
  background-color: #182f6d;
}

/* Start of event */

.custom-underline {
  text-decoration: underline solid #1e3a8a 4px;
  text-underline-offset: 9px; /* increase distance between text and underline */
}

.ctaBtn2:hover {
  color: #1e3a8a;
  background-color: #fafafa;
}

/* Start of partner */
/* Hero Section */
.gp-hero {
  background: linear-gradient(90deg, #1e3a8a, #60a5fa);
  color: white;
  padding: 60px 0;
  text-align: center;
}

/* Partner Cards */
.gp-partner-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.gp-partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Button */
.gp-btn-contact {
  background: #1e3a8a;
  color: white;
  font-weight: 500;
}
.gp-btn-contact:hover {
  background: #15326c;
  color: #fff;
}
.companyLogos {
  height: 90px; /* all logos same height */
  width: 70%; /* width adjusts automatically */
  object-fit: contain; /* keeps proportions */
}

.piramalTxt {
  color: #e84224;
}

.basiTxt {
  color: #16a34a;
}

.accordTxt {
  color: #ef7e11;
}

.boucharaTxt {
  color: #ff313b;
}

.sudairTxt {
  color: #3aae2a;
}

/* Start of products */

/* Category Colors */
.category-anesthesia {
  color: #4682b4; /* steel blue → calm, medical */
  font-weight: bold;
}
.category-antiemetic {
  color: #ff9900; /* amber → nausea relief, digestion */
  font-weight: bold;
}
.category-antibiotics {
  color: #2e8b57; /* sea green → healing, cleansing */
  font-weight: bold;
}
.category-anticoagulant {
  color: #b22222; /* firebrick red → blood-related */
  font-weight: bold;
}
.category-antifungal {
  color: #8a2be2; /* blue-violet → fungal/skin conditions */
  font-weight: bold;
}
.category-biosimilar {
  color: #20b2aa; /* light sea green → biotech, lab */
  font-weight: bold;
}
.category-cardiac {
  color: #dc143c; /* crimson → heart/blood circulation */
  font-weight: bold;
}
.category-diabetic {
  color: #8b4513; /* saddle brown → sugar/glucose stability */
  font-weight: bold;
}
.category-endocrinology {
  color: #9932cc; /* dark orchid → hormones/metabolism */
  font-weight: bold;
}
.category-immunosuppressant {
  color: #1e90ff; /* dodger blue → immune system, calm */
  font-weight: bold;
}
.category-metabolic {
  color: #ff69b4; /* hot pink → genetic/metabolic disorders */
  font-weight: bold;
}
.category-oncology {
  color: #800080; /* purple → cancer awareness */
  font-weight: bold;
}
.category-chemo {
  color: #ff4500; /* orange-red → chemotherapy (strong, intense) */
  font-weight: bold;
}
.category-psychiatric {
  color: #4169e1; /* royal blue → mental health, stability */
  font-weight: bold;
}
.category-unknown {
  color: #696969; /* dim gray → unspecified */
  font-style: italic;
}

.category-anticoagulant-lmwh {
  color: #d41bd4; /* purple for LMWH */
  font-weight: bold;
}
.category-anti-asthmatic {
  color: #4e834e; /* dark green for anti-asthmatic */
  font-weight: bold;
}

.category-branded {
  color: #06318f;
  font-weight: bold;
}

.heroBtn1:hover {
  background-color: #dfdfdf;
}

.heroBtn2:hover {
  background-color: #fff;
  color: #000;
}

/* Start of Policies */

.policy-container {
  max-width: 900px;
  margin: 2rem auto;
  color: #000;
  line-height: 1.6;
  padding: 0 1rem;
}
.policy-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.policy-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: #000;
}
.section-header {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #1e3a8a;
  padding-bottom: 0.3rem;
  color: #1e3a8a;
}
.subsection {
  margin-bottom: 1.5rem;
}
.subsection p {
  margin: 0.3rem 0;
}

.highlight {
  font-weight: 600;
  color: #0152a3;
}
.contact-info {
  margin-top: 1rem;
  font-weight: 600;
  color: #cc0000;
}
.references-list {
  margin-left: 1.5rem;
  list-style-type: square;
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .hero {
    filter: brightness(1.2);
  }
}
