body{margin:0;font-family:Arial;background:#fff;color:#0d9488}
.container{padding:40px;max-width:1100px;margin:auto}

/* topbar */
.topbar{
  background: #0f4c5c;
  color:#fff;
  font-size:12px;
  padding:4px 12px;
  display:flex;
  justify-content:space-between;
  flex-wrap: wrap;          /* Allows items to move down instead of merging */
  gap: 8px;                 /* Adds consistent spacing between items when stacked */
}

/* Target the text blocks inside to prevent long text overflow */
.topbar > span {
  word-break: break-all;    /* Keeps long drug license numbers inside screen bounds */
  flex-shrink: 1;
}

/* header */
header{  
  background: linear-gradient(90deg, #0d9488, #0ea5e9);
  color:#fff;
  padding:6px 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  /*border-bottom: 2px solid #0d9488;*/
  /*border-bottom: 3px solid #064e3b; */
  border-bottom: 3px solid #2dd4bf; 
   /*border-bottom: 2px solid #e2e8f0; */
  }
header.scrolled {
  border-bottom-color: #0b7a70;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

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

.logo-box{display:flex;align-items:center;gap:20px;}

.logo-frame {
  background: #ffffff;      /* Stark white card layer */
  width: 64px;             /* Rigid constraint slightly larger than logo size */
  height: 64px;
  border-radius: 50%;      /* Modern clean circular presentation edge */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15); /* Soft drop border depth integration */
  padding: 6px;            /* Uniform interior margin spacing around the asset */
}

/* Update the image tag style to fit nicely inside the white round capsule */
.logo {
  height: 100%;            /* Spans full height of the circular frame capsule area safely */
  width: auto;
  object-fit: contain;
}


/*.logo{  
  height: 56px;
  width: auto; 
  object-fit: contain; 
  
  }*/
#companyName {
  margin: 0;
  font-size: 24px;     /* 🔥 increased from ~17–18 */
  font-weight: 800;    /* stronger */
  letter-spacing: 0.3px;
}
nav a{color:#fff;font-weight: 600;margin-left:15px;text-decoration:none;}
nav a:hover {
  opacity: 0.85; 
}
/* hero */

/* HERO */
.hero {
  background: linear-gradient(180deg, #e0f2fe 0%, #f0fdfa 100%);
  padding: 30px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;        
  padding-left: 30px;    
  padding-right: 20px;
}

/* LEFT TEXT (25%) */
.hero-text {
  flex: 1;              /* smaller portion */
  max-width: 320px;     /* restrict width */
  margin-left: 0px;    
  text-align: left !important;      
}

.hero-text h2 {
  text-align: left;
  margin: 0 0 10px;
  font-size: 24px;      /* slightly smaller */
}

.hero-text p {
  text-align: left;
  margin-bottom: 15px;
  font-size: 14px;
}

/* RIGHT IMAGE (75%) */
.hero-image {
  flex: 3;              /* bigger portion */
  text-align: right;
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-width: 850px;     /* 🔥 makes it dominant */
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: block;
  object-fit: cover;
}

.trust {
  background: #ccfbf1;
  padding: 15px;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: #0f4c5c;
  gap: 15px;
}

/* Optional styling to make your checkmarks (✔) pop dynamically */
.trust-grid div {
  display: flex;
  align-items: center;
  gap: 6px;
}

/*
.trust-grid div::first-letter {
  /*color: #0d9488;   
  color: #16a34a;   
  font-weight: 800;
  font-weight: bold;
}
*/
/* Replaces the old ::first-letter rule for cleaner flexbox alignment */
.trust-grid .checkmark {
  color: #16a34a; /* Or #16a34a */
  font-weight: 800;
  font-size: 16px;
  margin-right: 4px; /* Crisp uniform spacing right after the symbol */
}


.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #ffffff;
  color: #ffffff;
  text-align: center;
}

.stat {
  flex: 1;
  min-width: 150px;
}

/* Update the large numbers to a striking Midnight Teal */
.stat h3 {
  color: #0b5b53; /* 🟢 Deep clinical dark teal ensuring perfect typographic contrast */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* 🟢 Descriptive labels using your precise requested brand teal color */
.stat p {
  color: #0d9488; /* 🟢 Your vibrant brand teal color token for perfect consistency */
  font-weight: 600; /* Bumped to 600 weight so uppercase letters stay distinct */
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* products */
.products {
  text-align: center;
  background: #f0fdfa; /* Ultra-light pastel mint teal background */
  padding: 50px 20px;   /* Slightly increased padding for a cleaner layout */
  border-top: 1px solid rgba(13, 148, 136, 0.05); /* Soft decorative separation line */
}

/* Update your product section headings if you have them */
.products h2 {
  color: #0f4c5c; /* Deep corporate midnight teal for section titles */
  font-weight: 700;
  margin-bottom: 30px;
}
.grid{display:flex;gap: 24px;justify-content:center;flex-wrap:wrap}
.card{background:#fff;padding:20px;width:230px;border-radius:8px;box-shadow: 0 4px 12px rgba(15, 76, 92, 0.06);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.card img{width:100%;
          object-fit: contain;
          border-radius: 4px; 
          margin-bottom: 12px; /* Leaves clean breathing space below product imagery */}

/* --- PREMIUM INTERACTIVE HOVER EFFECT --- */
.card:hover {
  transform: translateY(-5px); /* Card lifts up gently when hovered */
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15); /* Stronger vivid teal layout glow */
}

/* --- PRODUCT CARD TYPOGRAPHY (Add if needed) --- */
.card h3 {
  color: #0f4c5c; /* Deep corporate midnight teal for medicine or brand names */
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}

/* brands slider */
/*
.brand-slider{overflow:hidden;padding:20px}
.brand-track{display:flex;animation:scroll 30s linear infinite}
.brand-track img{width:140px;margin:0 20px;filter: none; opacity:1;object-fit: contain;}
@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
*/
.brand-slider {
  overflow: hidden;
  padding: 30px 20px;
  background-color: #ffffff; /* Keeps the track crisp white so colorful logos pop */
  border-top: 1px solid rgba(13, 148, 136, 0.1); /* Subtle decorative teal top border */
  border-bottom: 1px solid rgba(13, 148, 136, 0.1); /* Subtle decorative teal bottom border */
}

.brand-track {
  display: flex;
  align-items: center; /* Aligns different logo heights perfectly to the center line */
  animation: scroll 30s linear infinite;
}

.brand-track img {
  width: 140px;
  margin: 0 25px;
  object-fit: contain;
  opacity: 0.85; /* Softens the logos slightly into the background background */
  
  /* --- TEAL HARMONY FILTER --- */
  /* This blends bright logo colors slightly into a corporate teal look */
  filter: sepia(20%) hue-rotate(140deg) saturate(90%); 
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brands h2{
  color: #0f4c5c; /* Deep corporate midnight teal for medicine or brand names */
  font-size: 24px;
  font-weight: 800;
  margin: 8px 0;
}

/* --- INTERACTIVE HOVER EFFECT --- */
/* When a client hovers over a logo, it snaps into its true, vibrant original colors */
.brand-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05); /* Quick subtle pop animation */
  cursor: pointer;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* button */
.btn{background: #0d9488; /* Deep teal brand color */
     color:#fff;padding:10px 16px;text-decoration:none;border-radius:4px}
.btn:hover{background: #0f4c5c;}

/* sticky */
.sticky-btn{position:fixed;bottom:20px;right:20px;background:#2ca58d;color:#fff;padding:14px 18px;border-radius:25px;text-decoration:none}

/* address */
/*
#address {
  line-height: 1.6;
  margin-top: 5px;
}


.map iframe{width:100%;height:300px;border:0}
*/

/* --- ADDRESS BLOCK STYLING --- */
#address {
  line-height: 1.6;
  margin-top: 5px;
  color: #4b5563;       /* Balanced grey text for optimal reading clarity */
  font-size: 14px;
}

/* --- GOOGLE MAP IFRAME CONTAINER --- */
.map iframe {
  width: 100%;
  height: 380px;        /* Slightly extended height for better visual layout balance */
  border: 0;
  border-radius: 8px;   /* Clean modern rounded corner shape matching your cards */
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.08); /* Soft decorative teal-tinted layout drop shadow */
  transition: box-shadow 0.3s ease-in-out;
}

/* --- INTERACTIVE MAP HOVER ELEVATION --- */
.map iframe:hover {
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.18); /* Shadow deepens with a rich brand teal tint on hover */
}


/*
.compliance {
  background: #f8fafc;
  padding: 20px;
  font-size: 13px;
  color: #444;
  text-align: center;
} */

/* FULL WIDTH SECTION */
.compliance-full {
  width: 100%;
  background: #f4fbf9;     /* Updated to a clean, crisp mint-tinted medical backdrop */
  padding: 20px 0;         /* Slightly increased vertical breathing space */
  margin-top: 35px;
  border-top: 1px solid rgba(13, 148, 136, 0.08); /* Soft matching divider line */
}

/* Heading - Swapped to corporate theme color */
.compliance-full h2 {
  color: #0f4c5c;          /* Deep corporate midnight teal */
  font-weight: 700;
  margin-bottom: 20px;
}

/* Inner alignment (uses container) */
.compliance {
  max-width: 500px;
  background: #ffffff;     /* White card container to pop against the mint background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 76, 92, 0.04); /* Ultra-soft layout drop shadow */
  border-left: 4px solid #0d9488; /* Solid vibrant teal brand accent strip */
}

/* Row alignment */
.compliance-row {
  display: grid;
  grid-template-columns: 180px auto;
  margin-bottom: 12px;     
  font-size: 14px;
  color: #4b5563;          /* High-contrast slate grey text for optimal information scannability */
}

/* Remove margin on the last row item inside the box */
.compliance-row:last-child {
  margin-bottom: 0;
}

/* Labels - Matching with corporate teal theme */
.label {
  font-weight: 600;
  color: #0f4c5c; /* Deep corporate midnight teal color */
  letter-spacing: 0.3px; /* Slightly opened for high-quality scannability */
  font-size: 14px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h2 {
  color: #0f4c5c; /* Deep corporate midnight teal for section titles */
  font-weight: 700;
  margin-bottom: 30px;
}

.contact .row {
    display: flex !important;
    flex-wrap: wrap; /* Allows safe folding on mobile phones */
    width: 100% !important;
    margin: 0 !important; /* Clears negative row margin gaps */
  }

  /* Ensures the left details panel card spans its full assigned grid space */
  .contact .col-lg-5 {
    width: 41.666667% !important; /* Standard Bootstrap 5/12 column width calculation */
    flex: 0 0 41.666667% !important;
    padding-left: 0 !important; /* Removes padding clipping issues */
  }

  /* Ensures the right map panel container spans its full assigned grid space */
  .contact .col-lg-7 {
    width: 58.333333% !important; /* Standard Bootstrap 7/12 column width calculation */
    flex: 0 0 58.333333% !important;
    padding-right: 0 !important;
  }

  /* Maximizes the map component surface layer */
  .contact .map {
    width: 100% !important;
    height: 100% !important;
  }

.contact .info {
  border-top: 3px solid #0d9488; /* Updated to brand Vivid Teal */
  border-bottom: 3px solid #0d9488; /* Updated to brand Vivid Teal */
  padding: 30px;
  background: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 24px 0 rgba(13, 148, 136, 0.08); /* Updated with a subtle teal shadow tint */
}

.contact .info i {
  font-size: 20px;
  color: #0d9488; /* Updated to Vivid Teal */
  float: left;
  width: 44px;
  height: 44px;
  background: #ccfbf1; /* Updated to soft pastel mint teal background */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f4c5c; /* Updated to Midnight Teal headings */
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #4b5563; /* Updated to crisp, legible slate gray text */
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0f4c5c; /* Updated to Midnight Teal background */
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #0d9488; /* Hover changes cleanly to Vivid Teal */
  color: #fff;
}

.contact .info .email:hover i, 
.contact .info .address:hover i, 
.contact .info .phone:hover i {
  background: #0d9488; /* Snaps to filled brand Teal background on section hover */
  color: #fff;
}

/* --- THE EMAIL FORM STYLING --- */
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0d9488; /* Updated to brand Vivid Teal */
  border-bottom: 3px solid #0d9488; /* Updated to brand Vivid Teal */
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(13, 148, 136, 0.08); /* Updated with subtle teal shadow tint */
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.contact .php-email-form .validate {
  display: none;
  color: #dc2626; /* Crisp warning red */
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #e11d48; /* Clean warning rose red tone */
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 4px;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #0d9488; /* Form success message uses your brand theme color */
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 4px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0d9488; /* Spinner animation uses your brand teal color */
  border-top-color: #f0fdfa;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  padding-bottom: 8px;
  color: #0f4c5c; /* Form field label headers in Midnight Teal */
  font-weight: 500;
}

.contact .php-email-form input, 
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #cbd5e1; /* Smooth border wrapper edge */
}

/* Active Form Focus Highlights */
.contact .php-email-form input:focus, 
.contact .php-email-form textarea:focus {
  border-color: #0d9488; /* Input glow changes to Vivid Teal on user click */
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); /* Adds a modern soft teal focal aura */
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

/* --- THE SUBMIT ACTION BUTTON --- */
.contact .php-email-form button[type="submit"] {
  background: #0d9488; /* Base background changed to Vivid Teal */
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0f4c5c; /* Transitions into midnight dark teal on hover */
}
/* --- THE MAP CONTAINER STYLING --- */
.contact .map {
  width: 100%;
  height: 100%; /* Matches the left block height via Bootstrap's d-flex stretch */
  border-top: 3px solid #0d9488; /* Matches your brand Vivid Teal line */
  border-bottom: 3px solid #0d9488; /* Matches your brand Vivid Teal line */
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(13, 148, 136, 0.08); /* Matches your signature teal shadow tint */
  display: flex; /* Forces child iframe to occupy all available internal vertical room */
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 380px; /* Establishes a comfortable fallback height base for compact tablet screens */
}

/* --- FOOTER COMPONENT --- */
footer {
  background: #0f4c5c; /* Deep corporate midnight teal background */
  color: #ffffff;      /* High contrast crisp white text */
  text-align: center;
  padding: 30px 20px;  /* Clean spatial vertical padding */
  margin-top: 50px;    /* Leaves separation room below content sections */
  border-top: 4px solid #0d9488; /* Vibrant teal border strip to complete the brand theme */
}

/* Footer Paragraph Typography */
footer p {
  margin: 0 0 8px 0;   /* Clean bottom line space margin */
  font-size: 14px;
  opacity: 0.9;        /* Softens layout text slightly for optimal premium styling */
  letter-spacing: 0.3px;
}

/* Removals of trailing margins on the final element */
footer p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #ccfbf1;      /* Highlights location tags using light pastel mint teal text */
}


/* --- STICKY ORDER FLOATING BUTTON --- */
.sticky-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999 !important;  /* Forces the button to hover safely over all maps, headers, and section layers */
  pointer-events: auto !important;

  /* Brand Typography & Sizing */
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  /* Matching Teal Brand Theme Setup */
  background: linear-gradient(135deg, #0d9488, #0ea5e9); /* Vivid Teal to Ocean Cyan Gradient */
  padding: 14px 28px;
  border-radius: 50px; /* Perfect pill shape */
  
  /* Premium Elevation Drop Shadows */
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* --- CLICKABLE INTERACTIVE ACTIONS --- */
.sticky-btn:hover {
  transform: translateY(-4px) scale(1.02); /* Crisp lifting effect on pointer hover */
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.45);
  color: #ffffff;
}

.sticky-btn:active {
  transform: translateY(-1px); /* Compresses down realistically when tapped/clicked */
}




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

  .hero-text {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero-image {
    text-align: center;
  }

  #companyName {
  font-size: 18px;     /* 🔥 increased from ~17–18 */
}

.contact .row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Overrides the desktop percentages to take up 100% full screen width */
  .contact .col-lg-5,
  .contact .col-lg-7 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Pushes the map down dynamically to separate it from the details block above */
  .contact .col-lg-7 {
    margin-top: 24px !important;
  }

  /* Keeps horizontal borders inside screen bounds without clipping */
  .contact .info,
  .contact .map {
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important; /* Fixes the border line spill over bug */
  }

  .contact .map iframe {
    width: 100% !important;
    min-height: 320px !important; /* Perfect height profile for quick phone scrolling */
  }

  .compliance-row {
  display: flex;
  flex-wrap: wrap;          /* Stacks elements if screen is too narrow */
  gap: 12px;               /* Replaces grid column spacing */
  margin-bottom: 12px;     
  font-size: 14px;
  color: #4b5563;          
  word-break: break-all;   
}

/* Ensure the label retains its space on wider screens */
.compliance-row > span:first-child {
  flex: 0 0 180px;
}



  footer {
    padding-bottom: 72px !important; 
  }

.sticky-btn {
    position: fixed !important;
    bottom: 16px !important;
    left: 16px !important;
    right: 16px !important;
    width: calc(100% - 32px) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    z-index: 999999 !important; /* Forces it over the top of the footer text layer */
    
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px; 
    text-align: center;
  }

}


