
:root {
  --primary-green: #24449c;
  --primary: #ffffff;
  --secondary: #44b44c;
  --text-dark: #000;
  --primary-gradient: linear-gradient(to right, #44B54F, #223F97);
  --primary-white-color: #ffffff;
}
.btn-common {
  background: var(--primary-gradient);
  padding: 10px 30px !important;
  font-weight: 600;
  color: var(--primary-white-color) !important;
  border-radius: 30px;
  border: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-primary{
  color: transparent !important;
  background-color: transparent !important;
}


*,
span {
  font-family: "Inria Sans", sans-serif;
}

p {
  font-family: "Inria Sans", sans-serif;
}

h1,
h2,
h3,
h4,
.section-title {
  font-family: "Quicksand", sans-serif;
  color: #24449c;
  font-size: 2.4rem;
  font-weight: 700;
}

body {
  margin: 0;
  padding: 0;
}

/* navbar */

.nav-link {
  font-weight: 400 !important;
  /* or use normal if needed */
}

.navbar .nav-link {
  font-family: "Saira", sans-serif;
  text-transform: capitalize;
  /* optional */
  font-weight: normal;
  font-size: 1rem;
}

.nav-link a {
  font-weight: normal;
}

/* Entire Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

/* Track (Background) */
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/* Thumb (Bubble-style) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #44b444, #2c9137);
  border-radius: 20px;
  border: 3px solid #f0f0f0;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

/* On Hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2c9137, #1e6e2a);
}

/* Top Scrolling Info Bar */
.scrolling-info {
  background-color: #f1f1f1;
  padding: 8px 0;
  font-size: 14px;
  color: #24449c;
  overflow: hidden;
  position: relative;
}

.scrolling-info .marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

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

  100% {
    transform: translateX(-100%);
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Top Info Bar - Dark Theme */
.top-info-bar {
  background-color: #1a1a1a;
  padding: 10px 0;
  font-size: 13px;
  color: #ffffff;
  border-bottom: 1px solid #333;
}

.top-info-left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.top-info-item i {
  color: #FFA630;
  font-size: 12px;
}

.top-info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-info-item a:hover {
  color: #FFA630;
}

.top-info-right {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icon:hover {
  background: #FFA630;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Clean Navbar Styles - Minimal Design */
.clean-navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 15px 0 !important;
  transition: all 0.3s ease;
}

.clean-navbar .navbar-logo {
  height: 45px;
  transition: transform 0.3s ease;
}

.clean-navbar .navbar-logo:hover {
  transform: scale(1.05);
}

.clean-navbar .navbar-nav {
  align-items: center;
}

.clean-navbar .navbar-nav .nav-link {
  color: #333333 !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 20px !important;
  margin: 0 5px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none !important;
}

.clean-navbar .navbar-nav .nav-link:hover,
.clean-navbar .navbar-nav .nav-link:focus,
.clean-navbar .navbar-nav .nav-link.active {
  text-decoration: none !important;
}

/* Underline removed - no underline animation */

.clean-navbar .navbar-nav .nav-link:hover {
  color: #2444bc !important;
}

.clean-navbar .navbar-toggler {
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 4px;
}

.clean-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* Dropdown Styles */
.clean-navbar .dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 8px;
  animation: fadeIn 0.3s ease-in-out;
}

.clean-navbar .dropdown-item {
  color: #333;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.clean-navbar .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #2444bc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Mobile Menu Overlay - Dark Theme */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding-top: 80px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  display: block;
  transform: translateX(0);
}

.mobile-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2c2c2c;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  border-bottom: 1px solid #444;
}

.mobile-menu-header h4 {
  margin: 0;
  font-weight: 600;
  color: #F17720;
  font-size: 18px;
  font-family: 'Saira', sans-serif;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F17720;
  color: #ffffff;
}

.mobile-menu-content {
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item:hover {
  color: #F17720;
  padding-left: 10px;
}

.mobile-menu-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 20px;
  color: #F17720;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mobile-menu-item:hover .mobile-menu-icon {
  background: #F17720;
  color: #ffffff;
}

.mobile-menu-text {
  flex: 1;
  font-family: 'Saira', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .clean-navbar {
    padding: 12px 0 !important;
  }

  .clean-navbar .navbar-logo {
    height: 35px;
  }

  .clean-navbar .navbar-nav .nav-link {
    padding: 10px 15px !important;
    margin: 5px 0;
    text-align: left;
  }

  .clean-navbar .navbar-nav .nav-link::after {
    display: none;
  }
}


@media (max-width: 767px) {
  .scrolling-info {
    font-size: 12px;
  }

  .navbar-brand img {
    height: 25px;
  }
}
.navbar-brand img {
  height: 40px;
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 25px;
  }
}

.navbar-light {
  background-color: linear-gradient(to right, #24449c, #44b44c) !important;
}

/* Scrolling Info Bar - Enhanced */
.scrolling-info {
  background: linear-gradient(90deg, #f1f1f1 0%, #e8e8e8 100%);
  padding: 10px 0;
  font-size: 14px;
  color: #24449c;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #ddd;
}

.scrolling-info .marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

.scrolling-info .marquee i {
  margin-right: 8px;
  color: #44b44c;
}

.scrolling-info .marquee a {
  color: #24449c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.scrolling-info .marquee a:hover {
  color: #44b44c;
}

/* Footer Modern Styles */
.footer-modern {
  background: #000;
  color: #fff;
}

.footer-modern .footer-heading {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-modern .footer-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #44b44c, #2444bc);
  margin-top: 5px;
  border-radius: 3px;
}

.footer-modern a {
  color: #cfe0ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-modern a:hover {
  color: #44b44c;
}

.footer-modern .footer-links li,
.footer-modern .footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-modern .footer-contact i {
  color: #44b44c;
}

.footer-modern .footer-map {
  border: 2px solid #44b44c;
}

.footer-modern .small {
  color: #cfd8dc;
  font-size: 0.85rem;
}

.footer-modern .brand-info p {
  font-size: 0.95rem;
}

/* Floating Home Navigation for Pharmacy Chain Page */
.floating-home-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.home-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2444bc 0%, #44b44c 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(36, 68, 188, 0.3);
  transition: all 0.3s ease;
}

.home-nav-btn i {
  font-size: 18px;
}

.home-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 68, 188, 0.4);
  color: #ffffff;
}

.home-nav-btn:active {
  transform: translateY(0);
}

/* Tablet Responsive Styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Navigation */
  .navbar-brand img {
    height: 35px;
  }
  
  .clean-navbar .navbar-nav {
    gap: 20px;
  }
  
  .clean-navbar .navbar-nav .nav-link {
    font-size: 13px;
    padding: 8px 16px !important;
  }
  
  /* Container adjustments */
  .container, .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Footer */
  .footer-modern {
    padding: 40px 0 !important;
  }
  
  .footer-modern .row {
    gap: 30px;
  }
  
  .footer-modern .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .footer-modern .map-card iframe {
    height: 250px !important;
  }
  
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Scrolling info bar */
  .scrolling-info {
    font-size: 13px;
    padding: 8px 0;
  }
  
  /* Buttons */
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  .btn-lg {
    font-size: 15px;
    padding: 12px 24px;
  }
  
  /* Registration form on tablet */
  .step-indicator {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .step {
    flex: 0 0 auto;
    min-width: 100px;
  }
  
  /* Form inputs */
  .form-control {
    font-size: 14px;
  }
  
  /* Cards and sections */
  .card {
    margin-bottom: 20px;
  }
  
  /* Pharmacy chain page */
  .section {
    padding: 40px 20px;
  }
}

/* Mobile Responsive Styles (< 768px) */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 25px;
  }
  
  .floating-home-nav {
    top: 15px;
    right: 15px;
  }

  .home-nav-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .home-nav-btn i {
    font-size: 16px;
  }

  .home-nav-btn span {
    display: none;
  }
  
  /* Navigation collapse improvements */
  .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .clean-navbar .navbar-nav {
    gap: 8px;
  }
  
  .clean-navbar .navbar-nav .nav-link {
    padding: 10px 15px !important;
    font-size: 14px;
  }
  
  /* Footer stacks on mobile */
  .footer-modern .row {
    flex-direction: column;
  }
  
  .footer-modern .col-lg-6 {
    margin-bottom: 30px;
  }
  
  /* Typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Forms */
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Buttons */
  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  /* Registration steps */
  .step-indicator {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .step {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 80px;
    font-size: 12px;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}