/* ==========================================================================
   Satyendra Seating System - Premium CSS Stylesheet
   Style: Industrial + Premium + Modern
   Colors: Navy Blue (#0B1F3A), Orange (#FF6B00), White (#FFFFFF), Light Grey (#F5F7FA)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-navy: #0B1F3A;
  --primary-navy-rgb: 11, 31, 58;
  --accent-orange: #FF6B00;
  --accent-orange-rgb: 255, 107, 0;
  --accent-orange-hover: #E05E00;
  --white: #FFFFFF;
  --light-grey: #F5F7FA;
  --grey-dark: #1E293B;
  --text-dark: #0B1F3A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --transition-speed: 0.3s;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--light-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-navy);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--light-grey);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 1rem;
  gap: 8px;
}

.btn-orange {
  background-color: var(--accent-orange);
  color: var(--white);
}

.btn-orange:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: var(--white);
}

.btn-navy:hover {
  background-color: #123058;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background-color: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline-navy:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all var(--transition-speed) ease;
  padding: 20px 0;
}

.header.scrolled {
  position: fixed;
  background-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

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

.site-logo {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-speed) ease;
}

.logo:hover .site-logo {
  transform: scale(1.03);
}


.logo-icon {
  background-color: var(--accent-orange);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.logo-text {
  font-family: var(--font-heading);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-btn {
  margin-left: 15px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1010;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.75) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 750px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title span {
  color: var(--accent-orange);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--light-grey);
  margin-bottom: 25px;
  border-left: 4px solid var(--accent-orange);
  padding-left: 15px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 650px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
  margin-left: 10px;
}

.hero-phone i {
  color: var(--accent-orange);
  font-size: 1.3rem;
}

.hero-phone:hover {
  color: var(--accent-orange);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Bar */
.trust-bar {
  position: relative;
  background-color: var(--white);
  padding: 25px 0;
  box-shadow: var(--shadow-md);
  z-index: 5;
  margin-top: -40px;
  border-radius: var(--border-radius-sm);
  border-bottom: 3px solid var(--accent-orange);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  gap: 8px;
}

.trust-item i {
  color: var(--accent-orange);
  font-size: 1.3rem;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-subtitle {
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.about-text {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-highlights {
  margin-top: 35px;
}

.about-highlights h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 8px;
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.highlight-item i {
  color: var(--accent-orange);
  font-size: 1.1rem;
}

.about-image-container {
  position: relative;
  padding: 15px;
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 4px solid var(--primary-navy);
  border-radius: var(--border-radius-sm);
  z-index: 1;
}

.about-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: var(--accent-orange);
  z-index: 3;
}

.about-image {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Products Section (Card Slider Layout)
   ========================================================================== */
.products-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px 0;
}

.products-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.4);
}

.product-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #f1f5f9;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-sm);
  z-index: 5;
}

.product-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.product-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: auto;
}

.product-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-link:hover {
  color: var(--accent-orange-hover);
}

.product-link i {
  transition: transform var(--transition-speed) ease;
}

.product-link:hover i {
  transform: translateX(4px);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--primary-navy);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
  background-color: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-md);
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f1f5f9;
  color: var(--text-muted);
  border-color: var(--border-color);
  box-shadow: none;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.slider-dot.active {
  background-color: var(--accent-orange);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed) ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 31, 58, 0.2);
  background-color: var(--primary-navy);
  color: var(--white);
}

.industry-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: color var(--transition-speed) ease;
}

.industry-card:hover h3 {
  color: var(--white);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-speed) ease;
}

.industry-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Lead Generation Section (High Conversion Glassmorphism)
   ========================================================================== */
.lead-section {
  background: linear-gradient(135deg, #09172B 0%, #152E52 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.lead-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(11, 31, 58, 0.5);
  border-radius: 50%;
  filter: blur(80px);
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.lead-left-title {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.lead-left-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.lead-image-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 15px;
  margin-bottom: 30px;
  position: relative;
}

.lead-image-box img {
  border-radius: var(--border-radius-sm);
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.lead-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.lead-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lead-badge i {
  color: var(--accent-orange);
}

.lead-countries {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.lead-countries h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.country-flags {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
}

.country-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 5px 12px;
  border-radius: var(--border-radius-sm);
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.form-control option {
  background-color: var(--primary-navy);
  color: var(--white);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-checkbox input {
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--accent-orange);
}

.form-policy-line {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 15px;
  text-align: center;
}

.form-policy-line a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.form-policy-line a:hover {
  color: var(--white);
}

/* ==========================================================================
   Why Clients Trust Us
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.trust-card {
  background-color: var(--light-grey);
  border-radius: var(--border-radius-md);
  padding: 35px 25px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border-left: 4px solid var(--primary-navy);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-orange);
}

.trust-card-icon {
  background-color: rgba(11, 31, 58, 0.05);
  color: var(--primary-navy);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px auto;
  transition: all var(--transition-speed) ease;
}

.trust-card:hover .trust-card-icon {
  background-color: var(--accent-orange);
  color: var(--white);
}

.trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Export & Delivery Network Map Section
   ========================================================================== */
.network-section {
  position: relative;
  background-color: var(--white);
}

.network-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.network-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.network-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--light-grey);
  padding: 15px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.network-flag {
  font-size: 2rem;
  line-height: 1;
}

.network-info h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
}

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

.network-visual {
  background-color: var(--primary-navy);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.network-visual::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
  transform: rotate(15deg);
  opacity: 0.5;
}

.map-container {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 2;
}

.map-hub {
  position: absolute;
  background-color: var(--accent-orange);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-hub::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

.map-label {
  position: absolute;
  background-color: var(--white);
  color: var(--primary-navy);
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--border-radius-sm);
  top: calc(50% - 30px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.map-node {
  position: absolute;
  background-color: var(--white);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.map-node.nepal { top: 38%; left: 45%; }
.map-node.bhutan { top: 42%; left: 62%; }
.map-node.bangladesh { top: 58%; left: 58%; }
.map-node.intl { top: 75%; left: 25%; }

.map-line {
  position: absolute;
  background: linear-gradient(to right, var(--accent-orange), var(--white));
  height: 2px;
  transform-origin: left center;
  opacity: 0.6;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 60px 0;
  border-top: 4px solid var(--accent-orange);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05));
  skew-x: -20deg;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.cta-banner-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-phone i {
  color: var(--accent-orange);
}

/* ==========================================================================
   Contact Section & Google Maps Embed
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}

.contact-info-box {
  background-color: var(--light-grey);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-navy);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  background-color: var(--primary-navy);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
  color: var(--text-body);
  font-size: 0.95rem;
}

.contact-detail-text a:hover {
  color: var(--accent-orange);
}

.map-embed {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQs Accordion */
.faq-box {
  margin-top: 0;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-navy);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(11, 31, 58, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.faq-toggle-icon {
  font-size: 1rem;
  color: var(--primary-navy);
  transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background-color: var(--light-grey);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-content {
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--text-body);
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 70px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-info-logo {
  margin-bottom: 20px;
}

.footer-info-logo .logo-title {
  color: var(--white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-export-countries {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-export-countries span {
  color: var(--accent-orange);
  font-weight: 600;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 1.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: var(--accent-orange);
  margin-top: 4px;
}

.footer-contact-item a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   Sticky & Floating UI Widgets
   ========================================================================== */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition-speed) ease;
  animation: bounceFloat 3s infinite;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(32, 186, 90, 0.4);
}

@keyframes bounceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sticky "Get Quote" Side Button */
.quote-sticky {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.quote-sticky:hover {
  background-color: var(--accent-orange-hover);
  padding-bottom: 14px;
}

/* ==========================================================================
   Image Gallery with Lightbox Popup
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 31, 58, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-speed) ease;
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--light-grey);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 58, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-box {
  width: 100%;
  max-height: 70vh;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-img-box img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-heading);
  margin-top: 20px;
  text-align: center;
}

.lightbox-caption h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.lightbox-caption p {
  color: var(--accent-orange);
  font-size: 0.95rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--accent-orange);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.lightbox-btn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* ==========================================================================
   Inquiry Form Success Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 58, 0.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.success-modal {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--accent-orange);
  animation: modalIn 0.3s ease-out forwards;
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  font-size: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.success-modal h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-navy);
}

.success-modal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* ==========================================================================
   Subpages Specific Styles (About, Products, contact, SEO)
   ========================================================================== */
.page-hero {
  position: relative;
  background-color: var(--primary-navy);
  padding: 140px 0 70px 0;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.85) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--accent-orange);
}

.breadcrumb span {
  color: var(--accent-orange);
}

/* Page Specifics */
.value-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.2);
}

.value-card i {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-detail-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.product-detail-card:nth-child(even) .product-detail-img-box {
  order: 2;
}

.product-detail-img-box {
  height: 400px;
  overflow: hidden;
}

.product-detail-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content {
  padding: 40px;
}

.product-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.product-specs {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  font-size: 0.9rem;
  color: var(--text-body);
}

.spec-item span {
  font-weight: 600;
  color: var(--primary-navy);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* 1024px and down (Tablets / small desktops) */
@media (max-width: 1024px) {
  .trust-items {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-card {
    flex: 0 0 calc(50% - 15px);
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .network-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-detail-card {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  
  .product-detail-card:nth-child(even) .product-detail-img-box {
    order: 0;
  }
  
  .product-detail-img-box {
    height: 300px;
  }
}

/* 768px and down (Mobile devices) */
@media (max-width: 768px) {
  .site-logo {
    height: 80px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .header {
    padding: 15px 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 25px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
     position: absolute !important;
    right: 40px !important;
    top: 50% !important;
    transform: translateY(-50%)
    
  }
  
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .product-card {
    flex: 0 0 100%;
  }
  
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner-actions .btn {
    width: 100%;
  }
  
  .lightbox {
    padding: 20px;
  }
  
  .lightbox-prev {
    left: 10px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  
  .lightbox-next {
    right: 10px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  
  .lightbox-caption {
    margin-top: 15px;
    margin-bottom: 50px;
  }
  
  .quote-sticky {
    display: none; /* Hide sticky button on small devices to keep screen clean */
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }
}

/* 480px and down (Very small screens) */
@media (max-width: 480px) {
  .trust-items {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-phone {
    justify-content: center;
    margin-left: 0;
    margin-top: 10px;
  }
  
  .highlights-list {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .glass-card {
    padding: 20px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .success-modal {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   Admin Portal & Login Layout
   ========================================================================== */
.admin-login-body {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #061224 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  color: var(--white);
  text-align: center;
}

.login-card h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.login-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.login-logo {
  margin-bottom: 25px;
  display: inline-block;
}

.login-logo img {
  height: 80px;
  margin: 0 auto;
}

/* ==========================================================================
   Admin Dashboard Interface
   ========================================================================== */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: var(--light-grey);
  font-family: var(--font-body);
}

.admin-sidebar {
  width: 260px;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.sidebar-header {
  padding: 30px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-header img {
  height: 40px;
}

.sidebar-header h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.sidebar-menu {
  flex-grow: 1;
  padding: 24px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border-left: 4px solid transparent;
}

.sidebar-link:hover, .sidebar-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
  border-left-color: var(--accent-orange);
}

.sidebar-link i {
  width: 20px;
  font-size: 1.1rem;
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; /* Prevents flex items from breaking layouts */
}

.admin-navbar {
  background-color: var(--white);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.admin-navbar h2 {
  font-size: 1.5rem;
  color: var(--primary-navy);
}

.admin-user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.admin-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 107, 0, 0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.admin-content {
  padding: 40px;
  flex-grow: 1;
  overflow-y: auto;
}

.admin-section-view {
  display: none;
}

.admin-section-view.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

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

/* Stats Cards Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card-info h4 {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stat-card-info .stat-number {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.stat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-card-icon.blue { background-color: rgba(11, 31, 58, 0.08); color: var(--primary-navy); }
.stat-card-icon.orange { background-color: rgba(255, 107, 0, 0.08); color: var(--accent-orange); }
.stat-card-icon.green { background-color: rgba(37, 211, 102, 0.08); color: #25D366; }
.stat-card-icon.purple { background-color: rgba(139, 92, 246, 0.08); color: #8B5CF6; }

/* Dashboard split grid */
.dashboard-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

.admin-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-card-header h3 {
  font-size: 1.15rem;
  color: var(--primary-navy);
}

.admin-card-body {
  padding: 24px;
}

/* Listings Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 12px 16px;
  background-color: var(--light-grey);
  color: var(--primary-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--border-color);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-body);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background-color: rgba(245, 247, 250, 0.5);
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.success { background-color: rgba(37, 211, 102, 0.12); color: #20BA5A; }
.status-badge.pending { background-color: rgba(245, 158, 11, 0.12); color: #D97706; }
.status-badge.failed { background-color: rgba(239, 68, 68, 0.12); color: #EF4444; }

/* Log items */
.log-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 5px;
}

.log-item {
  padding: 10px 14px;
  background-color: var(--light-grey);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--primary-navy);
  font-size: 0.85rem;
}

.log-item.failed {
  border-left-color: var(--accent-orange);
}

.log-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--primary-navy);
}

.log-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.log-details {
  color: var(--text-body);
}

/* Modal Dialogs */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal.active {
  display: flex;
}

.admin-modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border-top: 5px solid var(--accent-orange);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease-out forwards;
}

.admin-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.admin-modal-close {
  background: transparent;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.admin-modal-close:hover {
  color: var(--accent-orange);
}

.admin-modal-body {
  padding: 24px;
}

.admin-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background-color: var(--light-grey);
}

/* Action button items */
.action-btn-group {
  display: flex;
  gap: 8px;
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 0.88rem;
}

.action-btn.edit { background-color: rgba(11, 31, 58, 0.06); color: var(--primary-navy); }
.action-btn.edit:hover { background-color: var(--primary-navy); color: var(--white); }
.action-btn.delete { background-color: rgba(239, 68, 68, 0.08); color: #EF4444; }
.action-btn.delete:hover { background-color: #EF4444; color: var(--white); }

/* Drag & Drop File Upload widget */
.upload-dropzone {
  border: 2px dashed #cbd5e1;
  background-color: var(--light-grey);
  border-radius: var(--border-radius-md);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  margin-bottom: 20px;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--accent-orange);
  background-color: rgba(255, 107, 0, 0.02);
}

.upload-dropzone i {
  font-size: 2.5rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.upload-dropzone p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 5px;
}

.upload-dropzone span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.upload-preview-item {
  position: relative;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--light-grey);
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spinner animation for upload loading state */
@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fa-spin { animation: fa-spin 1s linear infinite; }

.upload-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: rgba(239, 68, 68, 0.8);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
}

/* ==========================================================================
   Blog Listing & Single Page Layout
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.25);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

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

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

.blog-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 15px;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-content p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.blog-read-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-link:hover {
  color: var(--accent-orange-hover);
}

/* Single Blog Article */
.blog-article-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.blog-featured-media {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.blog-article-content {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
}

.blog-article-content p {
  margin-bottom: 25px;
}

.blog-article-content h2, .blog-article-content h3 {
  color: var(--primary-navy);
  margin: 35px 0 15px 0;
}

/* ==========================================================================
   Careers Section
   ========================================================================== */
.career-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.career-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.career-card:hover {
  border-color: rgba(11, 31, 58, 0.2);
  box-shadow: var(--shadow-md);
}

.career-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.career-card-header h3 {
  font-size: 1.3rem;
  color: var(--primary-navy);
}

.career-badge {
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
}

.career-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.career-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.career-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.career-card-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.career-card-body li {
  margin-bottom: 5px;
}

/* File Upload input custom styling */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-input {
  width: 100%;
  height: 48px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

.file-upload-trigger {
  width: 100%;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
  pointer-events: none;
}

.file-upload-wrapper:hover .file-upload-trigger {
  border-color: var(--accent-orange);
  background-color: rgba(255, 255, 255, 0.12);
}

.file-upload-wrapper.dark-theme .file-upload-trigger {
  background-color: var(--light-grey);
  border-color: var(--border-color);
  color: var(--text-muted);
}

.file-upload-wrapper.dark-theme:hover .file-upload-trigger {
  border-color: var(--primary-navy);
  background-color: #f8fafc;
}

/* Honeypot anti-spam field */
.hp-field {
  display: none !important;
}

/* Captcha styling */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.captcha-question {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.dark-theme .captcha-question {
  background-color: var(--light-grey);
  border-color: var(--border-color);
  color: var(--primary-navy);
}

.captcha-input {
  flex-grow: 1;
}

/* Responsive Overrides for Admin Panels */
@media (max-width: 1024px) {
  .admin-sidebar {
    width: 70px;
  }
  
  .sidebar-header h3, .sidebar-link span, .sidebar-footer {
    display: none;
  }
  
  .sidebar-link {
    justify-content: center;
    padding: 15px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dashboard-split {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .career-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-navbar {
    padding: 0 20px;
  }
  
  .admin-content {
    padding: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

