/* 
  Naresh Enterprises – Next-Gen 2026 E-Commerce Pharmacy Template
  Design Tokens & Aesthetics:
  - Primary Electric Cyan Blue : #0EA5E9
  - Royal Medical Blue        : #0284C7
  - Deep Midnight Slate       : #0F172A
  - Light Mint & Sky Tint     : #F0F9FF
  - Crisp Canvas Background   : #F8FAFC
  - Vibrant Coral Discount    : #EF4444
  - Amber Gold Star Rating    : #F59E0B
*/

:root {
  --primary-color: #0284C7;
  --primary-bright: #0EA5E9;
  --primary-hover: #0369A1;
  --secondary-color: #0F172A;
  --accent-cyan: #06B6D4;
  --light-tint: #F0F9FF;
  --white: #FFFFFF;
  --background: #F8FAFC;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --gold-star: #F59E0B;
  --danger: #EF4444;
  
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(2, 132, 199, 0.06);
  --shadow-md: 0 12px 32px rgba(2, 132, 199, 0.12);
  --shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.16);

  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-border: 1px solid rgba(226, 232, 240, 0.85);
  --glass-shadow: 0 12px 35px 0 rgba(2, 132, 199, 0.07);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Global Resets ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: min(92%, 1240px);
  margin: 0 auto;
}

/* ---------- Glassmorphism Card ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

/* ---------- Typography & Buttons ---------- */
h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

.sub-title {
  color: var(--primary-bright);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--light-tint);
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-bright), var(--primary-color));
  border-radius: var(--radius-full);
}

.section-header-flex .section-title::after {
  left: 0;
  transform: none;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-color) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(14, 165, 233, 0.35);
}

.btn-secondary {
  background: var(--light-tint);
  color: var(--primary-color);
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  background: var(--light-tint);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

/* Page Banner (About / Contact Pages) */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #0284C7 60%, #0EA5E9 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--primary-bright);
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 290px;
}

.toast i {
  color: var(--primary-bright);
  font-size: 1.25rem;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---------- Back To Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary-bright);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
}

/* ---------- Header & Floating Top Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06);
}

.announcement-bar {
  background: linear-gradient(90deg, #0F172A 0%, #0284C7 50%, #0EA5E9 100%);
  color: var(--white);
  font-size: 0.825rem;
  padding: 0.5rem 0;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  gap: 0.75rem;
}

.announcement-inner > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

.announcement-inner i {
  margin-right: 0.3rem;
  color: #38BDF8;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--white);
  transition: var(--transition);
}

.lang-selector:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lang-selector i {
  color: #38BDF8;
  margin-right: 0 !important;
}

.lang-selector select {
  background: transparent;
  border: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}

.lang-selector select option {
  background: #0F172A;
  color: var(--white);
}

.top-links a {
  opacity: 0.95;
}

.top-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.erp-login-btn {
  background: linear-gradient(135deg, #06B6D4, #0EA5E9) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
  text-decoration: none !important;
}

.erp-login-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4) !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.erp-login-btn i {
  font-size: 0.9rem;
  margin-right: 0 !important;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.1;
}

.logo-owner {
  font-size: 0.65rem;
  color: var(--primary-bright);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--light-tint) 0%, #E0F2FE 100%);
  color: var(--primary-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.3);
}

.logo-text span {
  color: var(--primary-bright);
}

/* Search Bar */
.search-bar {
  flex: 1;
  max-width: 580px;
  display: flex;
  align-items: center;
  background: var(--background);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--primary-bright);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.search-category {
  border: none;
  background: transparent;
  padding-right: 0.5rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border-right: 1px solid var(--border-light);
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0.75rem;
  outline: none;
  color: var(--text-dark);
}

.search-bar button {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-color) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.search-bar button:hover {
  transform: scale(1.05);
}

/* Account Icons */
.account-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icon-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
  font-size: 1.35rem;
  transition: var(--transition);
}

.nav-icon-item:hover {
  color: var(--primary-bright);
}

.icon-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Secondary Navigation Pill Bar */
.secondary-nav {
  background: var(--light-tint);
  border-top: 1px solid rgba(14, 165, 233, 0.18);
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
}

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

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-link {
  display: inline-block;
  padding: 0.85rem 0.3rem;
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text-dark);
  position: relative;
}

.nav-link i {
  color: var(--primary-bright);
  margin-right: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-bright);
}

.nav-link.highlight {
  color: var(--danger);
  font-weight: 600;
}

.rx-upload-btn {
  background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.rx-upload-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-bright);
}

/* ---------- Hero Section ---------- */
.hero-section {
  padding: 4rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
              linear-gradient(135deg, #F0F9FF 0%, #F8FAFC 60%, #E0F2FE 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  color: var(--primary-bright);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 165, 233, 0.25);
  margin-bottom: 1.5rem;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-left h1 span {
  color: var(--primary-bright);
  position: relative;
  background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  color: var(--text-muted);
  font-size: 1.075rem;
  margin-bottom: 2.2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.8rem;
}

.hero-trust-badges {
  display: flex;
  gap: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-item i {
  font-size: 2rem;
  color: var(--primary-bright);
}

.trust-item strong {
  display: block;
  color: var(--secondary-color);
  font-size: 1.15rem;
  line-height: 1.1;
}

.trust-item span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Unique Hero Slider Card Showcase */
.hero-slider {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 2rem 1.75rem 3.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--danger);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.slide img {
  height: 160px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.85rem;
  transition: transform 0.4s ease;
}

.slide:hover img {
  transform: scale(1.08);
}

.slide-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-content h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.slide-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  max-width: 320px;
  line-height: 1.4;
}

.slide-price {
  margin-bottom: 0.85rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.new-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-bright);
}

.slider-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--primary-bright);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.slider-controls button:hover {
  background: var(--primary-bright);
  color: var(--white);
}

.slider-controls .prev { left: -18px; }
.slider-controls .next { right: -18px; }

.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 10;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(14, 165, 233, 0.3);
  transition: var(--transition);
}

.dots button.active {
  width: 26px;
  background: var(--primary-bright);
}

/* ---------- Features Grid Section ---------- */
.features-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 20;
  padding-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
  background: var(--white);
  border: var(--glass-border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-bright);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--light-tint) 0%, #E0F2FE 100%);
  color: var(--primary-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.025rem;
  color: var(--secondary-color);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ---------- Categories Section ---------- */
.categories-section {
  padding: 3.5rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 1.35rem;
}

.category-card {
  padding: 1.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  background: var(--white);
}

.category-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary-bright);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--light-tint);
  color: var(--primary-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
  transition: var(--transition);
}

.category-card:hover .cat-icon {
  background: var(--primary-bright);
  color: var(--white);
}

.category-card h3 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.category-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Product Grid Section ---------- */
.trending-section {
  padding: 3.5rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.85rem;
}

.product-card {
  position: relative;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background: var(--white);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.4);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-bright);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  z-index: 5;
}

.product-img-box {
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--light-tint);
}

.product-img-box img {
  max-height: 92%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-tag {
  font-size: 0.75rem;
  color: var(--primary-bright);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.rating {
  color: var(--gold-star);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.rating span {
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.price-box {
  margin-bottom: 1rem;
  margin-top: auto;
}

.price-box .mrp {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 0.4rem;
}

.price-box .current-price {
  font-size: 1.275rem;
  font-weight: 700;
  color: var(--primary-bright);
}

.card-actions .btn {
  width: 100%;
}

/* ---------- Best-Selling Horizontal Scroll ---------- */
.best-selling-section {
  padding: 4rem 0;
  background: var(--light-tint);
}

.scroll-controls {
  display: flex;
  gap: 0.5rem;
}

.scroll-controls button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--primary-bright);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.scroll-controls button:hover {
  background: var(--primary-bright);
  color: var(--white);
}

.horizontal-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-bright) transparent;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-bright);
  border-radius: 10px;
}

.best-card {
  min-width: 260px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  background: var(--white);
}

.best-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.best-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.best-info h4 {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Promo Section ---------- */
.promo-section {
  padding: 3.5rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.85rem;
}

.promo-card {
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.promo-green {
  background: linear-gradient(135deg, var(--primary-bright) 0%, var(--secondary-color) 100%);
}

.promo-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.promo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.promo-content h3 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.promo-content p {
  opacity: 0.92;
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
  max-width: 450px;
}

/* ---------- Why Choose Us ---------- */
.why-choose-section {
  padding: 4.5rem 0;
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.8rem;
  align-items: center;
}

.why-image-box {
  position: relative;
}

.why-image-box img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.floating-trust-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary-bright);
}

.floating-trust-card i {
  font-size: 2.3rem;
  color: var(--primary-bright);
}

.floating-trust-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.floating-trust-card span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.why-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.why-item {
  padding: 1.35rem;
  transition: var(--transition);
  background: var(--white);
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-bright);
}

.why-item i {
  font-size: 1.85rem;
  color: var(--primary-bright);
  margin-bottom: 0.55rem;
}

.why-item h4 {
  font-size: 0.975rem;
  color: var(--secondary-color);
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ---------- Owner / Leadership Authority Section ---------- */
.owner-section {
  padding: 4.5rem 0;
  background: var(--light-tint);
}

.owner-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  padding: 3rem;
  align-items: center;
  background: var(--white);
  border-left: 6px solid var(--primary-bright);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.owner-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owner-img-box {
  width: 100%;
  max-width: 340px;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.owner-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.owner-card:hover .owner-img-box img {
  transform: scale(1.05);
}

.owner-badge {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-tint);
  color: var(--primary-bright);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.owner-badge i {
  color: var(--primary-bright);
}

.owner-quote-icon i {
  font-size: 2.2rem;
  color: rgba(14, 165, 233, 0.25);
  margin-bottom: 0.5rem;
}

.owner-name {
  font-size: 1.9rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.owner-title {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-bright);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.owner-location {
  display: inline-block;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.owner-message {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-bright);
}

.owner-highlights {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.owner-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.owner-stat i {
  font-size: 1.8rem;
  color: var(--primary-bright);
}

.owner-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.1;
}

.owner-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.owner-contact-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.owner-address-note {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  padding: 4.5rem 0;
  background: var(--background);
}

.testimonial-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  min-height: 250px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 2.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-quote i {
  font-size: 2.2rem;
  color: rgba(14, 165, 233, 0.25);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.075rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.testimonial-user img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 1.025rem;
  color: var(--secondary-color);
  text-align: left;
}

.testimonial-user span {
  font-size: 0.775rem;
  color: var(--text-muted);
  display: block;
}

/* ---------- Blog Section ---------- */
.blog-section {
  padding: 4.5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background: var(--white);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  position: relative;
  height: 205px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.blog-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-bright);
  margin-bottom: 0.4rem;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.read-more {
  font-weight: 600;
  color: var(--primary-bright);
  font-size: 0.9rem;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.read-more:hover {
  color: var(--primary-hover);
  gap: 0.65rem;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 4.5rem 0;
  background: var(--background);
}

.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.accordion-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.accordion-header {
  width: 100%;
  padding: 1.35rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary-color);
  text-align: left;
}

.accordion-header i {
  color: var(--primary-bright);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
  padding: 0 1.6rem;
}

.accordion-item.active .accordion-content {
  max-height: 250px;
  padding: 0 1.6rem 1.35rem 1.6rem;
}

.accordion-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Contact Page Specific Styles ---------- */
.contact-section {
  padding: 4.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--white);
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--light-tint);
  color: var(--primary-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1.05rem;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.contact-item-text a:hover {
  color: var(--primary-bright);
}

.contact-form-card {
  padding: 2.5rem;
  background: var(--white);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  padding: 3.5rem 0 5.5rem 0;
}

.newsletter-card {
  padding: 3.25rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  background: linear-gradient(135deg, var(--light-tint) 0%, var(--white) 100%);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-color) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.3);
}

.newsletter-info h2 {
  font-size: 1.45rem;
  color: var(--secondary-color);
  margin-bottom: 0.35rem;
}

.newsletter-info p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: 0.55rem;
  flex: 1;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary-bright);
}

/* ---------- Footer ---------- */
.footer-section {
  background: #0B132B;
  color: #F8FAFC;
  padding: 4.5rem 0 2.25rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3.2rem;
  margin-bottom: 3.2rem;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 320px;
  line-height: 1.65;
}

.top-address {
  font-size: 0.8rem;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-contact-details {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-details p {
  opacity: 0.9;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.footer-contact-details i {
  color: #38BDF8;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-details a {
  color: #F8FAFC;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-bright);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.35rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 38px;
  height: 2.5px;
  background: #38BDF8;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  opacity: 0.82;
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  opacity: 1;
  color: #38BDF8;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.88;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.developer-credit {
  font-size: 0.825rem;
  color: rgba(248, 250, 252, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.18);
}

.developer-credit i {
  color: #38BDF8;
}

.developer-credit strong {
  color: #38BDF8;
  font-weight: 600;
}

.dev-phone a {
  color: #F8FAFC;
  text-decoration: underline;
  font-weight: 500;
}

.dev-phone a:hover {
  color: #38BDF8;
}
