:root {
  --primary-color: #0070c9;
  --primary-hover: #0058a6;
  --dark-bg: #093c7d;
  --text-color: #333333;
  --light-gray: #f8f9fa;
  --border-color: #cbd5e1;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif !important;
  color: var(--text-color);
  background-color: var(--light-gray);
  font-size: 16px !important;
  line-height: 1.5;
}
.login-wrapper {
  min-height: 70vh;
  background-color: #f4f6f9;
  padding: 40px 20px;
}

.login-card-container {
  background-color: #ffffff;
  width: 100%;
  max-width: 460px;
  padding: 45px 40px;
  border: 1px solid #e1e5eb;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.login-title {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #2b3a4a !important;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.form-label-custom {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #495057 !important;
  margin-bottom: 8px !important;
  display: block;
}

.form-input-custom {
  height: 48px !important;
  font-size: 16px !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 4px !important;
  padding: 10px 15px !important;
  color: #333333 !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

.form-input-custom:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(0, 112, 201, 0.15) !important;
  outline: none !important;
}

.btn-primary-custom {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  height: 48px;
  font-size: 17px !important;
  border-radius: 4px !important;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease !important;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.forgot-link {
  color: var(--primary-color) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline !important;
  color: var(--primary-hover) !important;
}
.top-utility-bar {
  background-color: var(--dark-bg) !important;
  letter-spacing: 0.5px;
}

.navbar-brand {
  font-size: 20px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}
/* navbar ends */
/* Home page */
/* Scope typography rules cleanly under project home parent variable tags */
.project-modern-home {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

/* Hero Section Setup */
.hero-cover {
  min-height: 520px;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.btn-primary-custom {
  background-color: var(--primary-color, #0070c9);
  border-color: var(--primary-color, #0070c9);
  color: #ffffff;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover, #0058a6);
  border-color: var(--primary-hover, #0058a6);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Narrative Typography Card Base */
.narrative-card {
  border-left: 5px solid var(--primary-color, #0070c9) !important;
}

.lead-text {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  color: #4a5568 !important;
}

.body-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Responsive Grid Cards Layout */
.feature-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border-radius: 6px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08) !important;
}

.card-img-wrapper {
  height: 200px;
  overflow: hidden;
  background-color: #eaeaea;
}

.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .grid-img {
  transform: scale(1.05);
}

.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border-color: var(--primary-color, #0070c9);
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  border-color: var(--primary-color, #0070c9);
  color: #ffffff;
}

/* Bottom Dynamic CTA Section Callout */
.cta-banner {
  min-height: 240px;
}

.transition-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Keyframe Animations */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries for Typography Optimization */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-cover {
    min-height: 400px;
  }

  .lead-text {
    font-size: 1.15rem;
  }
}
/* Add this to your home page's <style> block to handle the layout separation */
.cta-banner-container {
  width: 100%;
  display: block;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.cta-banner {
  min-height: 240px;
  position: relative !important;
  display: flex !important;
  z-index: 2;
  /* Sits cleanly above normal background planes */
}
/* home page ends */
/* ======about page ====== */
.project-modern-about {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

/* Hero Setup */
.hero-cover {
  min-height: 480px;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  letter-spacing: -1px;
}

.lead-list li {
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Narrative Card Styling */
.narrative-card {
  border-left: 5px solid var(--primary-color, #0070c9) !important;
}

.border-left-primary {
  border-left: 3px solid #e2e8f0;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #4a5568 !important;
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Alternating Split Images */
.image-column-container {
  height: 320px;
}

.split-image-holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

/* Grid Management */
.card-img-wrapper {
  overflow: hidden;
}

.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border: 2px solid var(--primary-color, #0070c9);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff !important;
}

/* Button Colors */
.btn-primary-custom {
  background-color: var(--primary-color, #0070c9);
  border-color: var(--primary-color, #0070c9);
  color: #ffffff;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover, #0058a6);
  border-color: var(--primary-hover, #0058a6);
  color: #ffffff;
}

/* CTA Settings */
.cta-banner {
  min-height: 220px;
  position: relative !important;
  z-index: 2;
}

.transition-btn:hover {
  transform: scale(1.02);
}

/* Executive Leadership Elements */
.portrait-wrapper {
  align-self: stretch;
  background-color: #f1f5f9;
}

.leadership-portrait {
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.executive-statement p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Footer Safety Anchor */
.about-footer-guard {
  display: block !important;
  clear: both !important;
}

/* Micro-View Port Sizing Adjustments */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .image-column-container {
    height: 240px;
  }

  .leadership-portrait {
    height: 280px;
  }
}

/* ===========about page ends====== */
/* ===========services page ====== */
.project-modern-services {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

/* Hero Configurations */
.hero-cover {
  min-height: 460px;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 650px;
}

.badge-primary-custom {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff;
}

/* Featured Product Callout Banner */
.narrative-card {
  border-left: 5px solid var(--primary-color, #0070c9) !important;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #313d4f !important;
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Split Section Layout Engines */
.image-column-container {
  height: 360px;
}

.split-image-holder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.bg-white.shadow-sm:hover .split-image-holder {
  transform: scale(1.03);
}

.min-h-400 {
  min-height: 400px;
}

/* Core Button Utilities */
.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border: 2px solid var(--primary-color, #0070c9);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.btn-primary-custom {
  background-color: var(--primary-color, #0070c9);
  border-color: var(--primary-color, #0070c9);
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover, #0058a6);
  border-color: var(--primary-hover, #0058a6);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Fade Animation Frame */
.animate-fade-in {
  animation: serviceFade 0.6s ease-out forwards;
}

@keyframes serviceFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Layout Guard to Anchor against Footer Collisions */
.services-footer-guard {
  display: block !important;
  clear: both !important;
}

/* Responsive Handling */
@media (max-width: 991.98px) {
  .min-h-400 {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .image-column-container {
    height: 250px;
  }
}
/* =============Services pageends================ */
/* ============Sustainability page============= */
.project-modern-onboarding {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Hero Layout Engines */
.hero-cover {
  min-height: 480px;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 760px;
}

.badge-accent {
  background-color: var(--accent-color, #e2b13c);
  color: #121826;
}

/* Narrative Presentation Cards */
.narrative-card {
  border-top: 4px solid var(--primary-color, #0070c9) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

.body-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Interactive Product Component Cards */
.client-card {
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
  border-radius: 8px;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09) !important;
}

.card-img-wrapper {
  height: 175px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.client-card:hover .grid-img {
  transform: scale(1.05);
}

/* Micro Layer Badges over Assets */
.segment-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color, #0070c9);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-top-right-radius: 4px;
}

/* Refined Action Control Elements */
.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border: 2px solid var(--primary-color, #0070c9);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  border-color: var(--primary-color, #0070c9);
  color: #ffffff !important;
}

/* Smooth DOM Reveal Frames */
.animate-fade-in {
  animation: cardReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Structural Safety Utility */
.layout-footer-clear {
  display: block !important;
  clear: both !important;
}

/* Fluid Responsive Optimization Overrides */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-cover {
    min-height: 400px;
  }

  .lead-text {
    font-size: 1.15rem;
  }

  .card-img-wrapper {
    height: 190px;
  }
}
/* =============Sustainability page ends============= */
/* ============news and media page============= */
.project-modern-media {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Hero Section Component Layouts */
.hero-cover {
  min-height: 450px;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 620px;
}

.badge-accent {
  background-color: var(--accent-color, #e2b13c);
  color: #0f172a;
}

/* Blended Navigation Panels inside Hero */
.bg-blur-dark {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.max-w-400 {
  max-width: 400px;
}

/* Core Media Feed Card Engines */
.media-entry-card {
  border-radius: 8px;
  transition:
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s ease;
  position: relative;
}

.media-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07) !important;
}

.entry-title a {
  color: #1e293b;
  transition: color 0.2s ease;
  text-decoration: none;
}

.media-entry-card:hover .entry-title a {
  color: var(--primary-color, #0070c9);
}

.small-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Micro Category Tags */
.badge-news {
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.72rem;
}

.badge-release {
  background-color: #f0fdf4;
  color: #15803d;
  font-size: 0.72rem;
}

/* Uniform UI Buttons */
.btn-primary-custom {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff;
  border: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover, #0058a6);
  color: #ffffff;
}

.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border: 2px solid var(--primary-color, #0070c9);
  background-color: transparent;
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff !important;
}

/* Clean Multi-line Text Limit Rule */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Animations Frames */
.animate-fade-in {
  animation: containerReveal 0.5s ease-out forwards;
}

@keyframes containerReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Structural Clearance Component */
.media-layout-guard {
  display: block !important;
  clear: both !important;
}

/* Precision Grid Adjustments for Smaller Viewports */
@media (max-width: 991.98px) {
  .hero-cover {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
}
/* =========news and media ends============ */
/* =======careers page================ */
.project-modern-careers {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Hero Context Foundations */
.hero-cover {
  min-height: 460px;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 650px;
}

.badge-accent {
  background-color: var(--accent-color, #e2b13c);
  color: #0f172a;
}

/* Blended Layer Modules */
.bg-blur-dark {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.max-w-400 {
  max-width: 400px;
}

/* Structural Narrative Layout Components */
.heading-border {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color, #0070c9);
  border-radius: 2px;
}

.narrative-item {
  transition:
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s ease;
  border-top: 3px solid transparent !important;
}

.narrative-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
  border-top-color: var(--primary-color, #0070c9) !important;
}

.icon-wrapper {
  opacity: 0.85;
}

.small-text {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Media Text Visual Transformation Frames */
.image-transform-frame {
  max-height: 450px;
}

.showcase-img {
  object-fit: cover;
  height: 100%;
  max-height: 420px;
  transition: transform 0.4s ease;
}

.image-transform-frame:hover .showcase-img {
  transform: scale(1.02);
}

.badge-primary-marker {
  background-color: #e0f2fe;
  color: var(--primary-color, #0070c9);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* Precision UI Control Systems */
.btn-primary-custom {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff;
  border: none;
  transition: background-color 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover, #0058a6);
  color: #ffffff;
}

.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border: 2px solid var(--primary-color, #0070c9);
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff !important;
}

/* Smooth Motion Frames */
.animate-fade-in {
  animation: simpleReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes simpleReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Structural Safety Element */
.layout-footer-clear {
  display: block !important;
  clear: both !important;
}

/* Fluid Viewport Adaptability Rules */
@media (max-width: 991.98px) {
  .hero-cover {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .project-narrative-deck {
    display: block !important;
  }
}
/* ============careers page ends================ */
/* ==========contact page styles ========= */
.project-modern-contact {
  background-color: var(--light-gray, #f8f9fa);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Hero Section Geometry Engines */
.hero-cover {
  min-height: 400px;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 680px;
}

.badge-accent {
  background-color: var(--accent-color, #e2b13c);
  color: #0f172a;
}

/* Graphic Feature Left Column Layout Controls */
.image-transform-frame {
  min-height: 380px;
}

.showcase-img {
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-transform-frame:hover .showcase-img {
  transform: scale(1.02);
}

/* Structured Communication Row Components */
.channel-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.channel-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
}

.border-left-primary {
  border-left: 4px solid var(--primary-color, #0070c9) !important;
}

.border-left-success {
  border-left: 4px solid #25d366 !important;
}

.border-left-secondary {
  border-left: 4px solid #64748b !important;
}

.channel-link {
  transition: color 0.15s ease;
}

.channel-link:hover {
  color: var(--primary-color, #0070c9) !important;
}

.text-primary-dark {
  color: #1e293b;
  font-size: 1rem;
}

.small-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Interactive Operational Buttons */
.btn-outline-primary-custom {
  color: var(--primary-color, #0070c9);
  border: 2px solid var(--primary-color, #0070c9);
  background-color: transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color, #0070c9);
  color: #ffffff !important;
}

/* Dom Reveal Transition Modules */
.animate-fade-in {
  animation: revealFrame 0.45s ease-out forwards;
}

@keyframes revealFrame {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Protection Utility Clearer */
.layout-footer-clear {
  display: block !important;
  clear: both !important;
}

/* Fluid Layout Adjustments Across Mobile Screens */
@media (max-width: 991.98px) {
  .hero-cover {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .image-transform-frame {
    height: 260px !important;
    min-height: auto;
  }
}
/* ===========contact page styles ends========= */

footer.footer-section {
  background-color: var(--dark-bg);
  border-top: 4px solid var(--primary-color);
  width: 100%;
}

.footer-header {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff !important;
  padding-left: 4px;
}

.social-icons a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 1;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.5) !important;
}
/* ================= SIDEBAR ================= */
#wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
#sidebar-wrapper {
  width: 250px;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

/* Page content shift */
#page-content-wrapper {
  margin-left: 250px;
  width: 100%;
}

/* Sidebar links */
.sidebar .list-group-item {
  border: none;
  border-radius: 0;
  transition: 0.3s;
  font-size: 15px;
}

.sidebar .list-group-item:hover {
  background: #1d3557 !important;
  padding-left: 25px;
}

/* Active state */
.sidebar .list-group-item.active {
  background: #0d6efd !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  #sidebar-wrapper {
    position: relative;
    width: 100%;
    min-height: auto;
  }

  #page-content-wrapper {
    margin-left: 0;
  }
}
/* USER TRANSFER */
.transfer-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.transfer-header {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: white;
}

.progress {
  height: 30px;
  border-radius: 20px;
}

.progress-bar {
  font-weight: 600;
}

.transfer-icon {
  font-size: 3rem;
  color: #0d6efd;
}

.amount-input {
  font-size: 1.2rem;
  font-weight: 600;
}

.success-animation {
  font-size: 80px;
  color: green;
}
/* user-dashboard */
.dashboard-wrapper {
  background: #f5f7fb;
  min-height: 100vh;
  padding: 30px;
}

.user-sidebar {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sidebar-user {
  padding: 30px 20px;
  background: linear-gradient(135deg, #003366, #0056b3);
  color: #fff;
}

.avatar i {
  font-size: 70px;
  margin-bottom: 15px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li a {
  display: block;
  padding: 15px 20px;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
  background: #f4f7ff;
  color: #0056b3;
  border-left: 4px solid #0056b3;
}

.profile-content {
  padding-left: 25px;
}

.welcome-card {
  background: linear-gradient(135deg, #003366, #0056b3);
  color: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.balance-box {
  text-align: right;
}

.balance-box span {
  display: block;
  opacity: 0.8;
}

.balance-box h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.profile-card {
  border-radius: 15px;
}

.profile-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px;
  height: 100%;
}

.profile-item label {
  display: block;
  color: #6c757d;
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 600;
}

.profile-item div {
  font-weight: 600;
  color: #222;
}

.sidebar-toggle {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .profile-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .welcome-card {
    flex-direction: column;
    text-align: center;
  }

  .balance-box {
    margin-top: 15px;
    text-align: center;
  }
}
/* fintech */
