/*----WhyChoose---------
----------------------*/

.whychoose-list {
  max-width: 900px;
  margin: 0 auto;
}

.whychoose-item {
  display: flex;
  align-items: flex-start;
  border-left: 4px solid #16a34a; /* emerald green */
  padding: 20px 15px;
  margin-bottom: 20px;
  background: #f9fafb;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.whychoose-item:hover {
  background: #e6f9f0;
  transform: translateX(5px);
}

.whychoose-item .icon {
  background: #16a34a;
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.whychoose-item h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.whychoose-item p {
  margin: 0;
  color: #555;
}

.corevalues .value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 0;
}

.corevalues .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
}

.corevalues .icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6f9f0;
  margin-bottom: 15px;
  overflow: hidden;
}

.corevalues .icon-box img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/*----Highlights---------
----------------------*/

.highlight-card {
  background: #fff;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ===============================
   🔥 NAVBAR BRAND — TIMES NEW ROMAN (CLIENT MATCH)
   "Karlin Pharmaceuticals & EXPORTS PVT. LTD."
   - Classic transitional serif (Times New Roman Bold)
   - Same size for both lines
   - Minimal gap between logo and text
   - High contrast strokes, bracketed serifs
   =============================== */

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 6px;  /* 🔥 MINIMAL space between logo and text */
  max-width: 100%;
  overflow: visible;
}

/* Logo */
.navbar-brand img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

.navbar.sticky-top .navbar-brand img {
  height: 45px;
}

/* Text wrapper */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;  /* Tight leading like print design */
  gap: 1px;  /* Almost no space between lines */
}

/* 🔥 BOTH LINES: SAME SIZE, TIMES NEW ROMAN BOLD */
.brand-main,
.brand-sub {
  font-family: 'Times New Roman', Times, 'Libre Baskerville', Georgia, serif;
  font-weight: 700;  /* Bold */
  font-size: 1.9rem;  /* 🔥 SAME SIZE for both lines */
  color: #ffffff;
  letter-spacing: 0.01em;  /* Slight tracking for readability */
  white-space: nowrap;
  
  /* Shadow for legibility on hero images */
  text-shadow: 
    0 1px 3px rgba(0,0,0,0.85),
    0 0 2px rgba(0,0,0,0.7);
}

/* Second line specifics */
.brand-main,
.brand-sub {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}


/* Sticky navbar - pure black like client's design */
.navbar.sticky-top .brand-main,
.navbar.sticky-top .brand-sub {
  color: #000000;  /* Pure black */
  text-shadow: none;
}

/* ===============================
   RESPONSIVE — MAINTAINING PROPORTIONS
   =============================== */

@media (max-width: 991px) {
  .navbar-brand {
    gap: 5px;
  }
  
  .navbar-brand img { 
    height: 50px; 
  }

  .brand-main,
  .brand-sub { 
    font-size: 1.65rem; 
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    gap: 4px;
  }
  
  .navbar-brand img { 
    height: 45px; 
  }

  .brand-main,
  .brand-sub { 
    font-size: 1.4rem; 
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    gap: 3px;
  }
  
  .navbar-brand img { 
    height: 38px; 
  }

  .brand-main,
  .brand-sub { 
    font-size: 1.2rem; 
  }
}

@media (max-width: 400px) {
  .navbar-brand {
    gap: 2px;
  }
  
  .navbar-brand img { 
    height: 35px; 
  }

  .brand-main,
  .brand-sub { 
    font-size: 1.05rem; 
  }
}