/*
Theme Name: Hearing Organization Bangladesh
Theme URI: https://hearing-org.org/
Author: Hearing Organization
Author URI: https://hearing-org.org/
Description: Hearing Organization - Professional hearing healthcare community website
Version: 1.0
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:
1. VARIABLES

2. HEARING ORGANIZATION STYLES
  2.1 Hero Section
  2.2 General Typography
  2.3 Section Title & Dividers
  2.4 Buttons

3. CONTENT ELEMENTS
  3.1 Feature Cards
  3.2 Service Cards
  3.3 Event Cards
  3.4 Statistics
  3.5 Membership Cards

4. SITE STRUCTURE
  4.1 Header Overrides
  4.2 Footer Overrides

/*--------------------------------------------------------------*/

/*======================================
1. VARIABLES
======================================*/

:root {
  --primary-color: rgb(248, 109, 114);
  --secondary-color: #1F3C5B;
  --accent-color: #2E8B57;
  --light-color: #FAFBFC;
  --dark-color: #1A1A2E;
  --border-radius-sm: 0.375rem;
  --border-radius: 0.75rem;
  --border-radius-lg: 1.5rem;
  --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

/*======================================
2. PREMIUM TYPOGRAPHY & BASE STYLES
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
  color: var(--dark-color);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.025em;
  margin-bottom: var(--spacing-sm);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: -0.05em;
}

p {
  margin-bottom: var(--spacing-sm);
  color: rgba(26, 26, 46, 0.8);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: var(--line-height-relaxed);
  color: rgba(26, 26, 46, 0.7);
}

/*======================================
3. PREMIUM COMPONENTS
======================================*/

/* 3.1 Premium Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2A4A73 50%, var(--primary-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(248, 109, 114, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 60, 91, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path fill="%23FAFBFC" d="M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--spacing-2xl) 0;
}

.hero-text h1 {
  color: white !important;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: unset;
}

.hero-text .lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-illustration {
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-illustration i {
  font-size: clamp(4rem, 8vw, 8rem);
  color: rgba(248, 109, 114, 0.9) !important;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

.hero-illustration h3 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Premium Buttons */
.btn {
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  font-size: 1rem;
  line-height: var(--line-height-tight);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: var(--box-shadow);
}

.btn-primary:hover {
  background-color: rgb(235, 89, 94);
  border-color: rgb(235, 89, 94);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.btn-outline-primary {
  border-color: white;
  color: white;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: white;
  color: var(--secondary-color);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.btn-light {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color);
  color: #fff;
}

.btn-light:hover {
  background-color: var(--light-color);
  border-color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.btn-outline-light {
  border-color: white;
  color: white;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--secondary-color);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

/* 3.2 Premium Section Styling */
.py-5 {
  padding-top: var(--spacing-2xl) !important;
  padding-bottom: var(--spacing-2xl) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgb(235, 89, 94) 100%) !important;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 800;
}

.section-title .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
  position: relative;
}

.section-title .divider::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
  opacity: 0.6;
}

/* 3.3 Premium Feature Cards */
.feature-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(31, 60, 91, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(248, 109, 114, 0.2);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
  display: inline-block;
}

.feature-card:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.feature-card h4 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: rgba(26, 26, 46, 0.7);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* 3.4 Premium Service Cards */
.service-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(31, 60, 91, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 109, 114, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  transform: scale(0.8);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--box-shadow-lg);
  border-color: rgba(248, 109, 114, 0.3);
}

.service-card i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.service-card:hover i {
  transform: translateY(-8px) scale(1.05);
  color: var(--secondary-color);
  filter: drop-shadow(0 8px 16px rgba(248, 109, 114, 0.3));
}

.service-card h4 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover h4 {
  color: var(--primary-color);
}

.service-card p {
  color: rgba(26, 26, 46, 0.7);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* 3.5 Premium Event Cards */
.event-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(31, 60, 91, 0.08);
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
}

.event-date {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: var(--spacing-md);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.event-date i {
  font-size: 1.25rem;
}

.event-content {
  padding: var(--spacing-lg);
}

.event-content h4 {
  color: var(--secondary-color);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  transition: var(--transition);
}

.event-card:hover h4 {
  color: var(--primary-color);
}

.event-content p.text-muted {
  color: rgba(26, 26, 46, 0.6) !important;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

.event-content p:last-child {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

.event-content p i {
  margin-right: var(--spacing-xs);
}

/* 3.6 Premium Statistics */
.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  position: relative;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: var(--spacing-xs);
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.stat-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 3.7 Premium Membership Cards */
.membership-type {
  background: white;
  border: 2px solid rgba(31, 60, 91, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.membership-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 109, 114, 0.1), transparent);
  transition: var(--transition);
}

.membership-type:hover::before {
  left: 100%;
}

.membership-type:hover {
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-4px);
}

.membership-type h5 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  transition: var(--transition);
}

.membership-type:hover h5 {
  color: var(--primary-color);
}

.membership-type p {
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: 0;
  line-height: var(--line-height-relaxed);
}

/*======================================
4. PREMIUM ANIMATIONS
======================================*/

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  75% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(248, 109, 114, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(248, 109, 114, 0.6);
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/*======================================
5. PREMIUM RESPONSIVE DESIGN
======================================*/

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero-text .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .service-card {
    padding: var(--spacing-lg);
  }

  .feature-card {
    padding: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .hero-section .container-fluid {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .hero-text h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
  }

  .hero-text .lead {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    margin-bottom: var(--spacing-lg);
  }

  .hero-illustration {
    margin-top: var(--spacing-lg);
  }

  .hero-illustration i {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .section-title h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .display-4 {
    font-size: clamp(2rem, 5vw, 2.5rem) !important;
  }

  .display-5 {
    font-size: clamp(1.75rem, 4vw, 2rem) !important;
  }

  .stat-item h3 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .service-card, .feature-card {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
  }

  .hero-text h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-text .lead {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

  .section-title h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .section-title .divider {
    width: 60px;
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .service-card {
    padding: var(--spacing-lg);
  }

  .event-card {
    margin-bottom: var(--spacing-md);
  }

  .membership-type {
    padding: var(--spacing-md);
  }

  .stat-item {
    padding: var(--spacing-md);
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/*======================================
6. PREMIUM UTILITIES & ENHANCEMENTS
======================================*/

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: var(--primary-color);
  color: white;
}

/* Focus styles */
.btn:focus,
.service-card:focus,
.feature-card:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Premium loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(248, 109, 114, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
}

/* Enhanced spacing utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }

/* Text improvements */
.text-secondary-custom {
  color: rgba(26, 26, 46, 0.7) !important;
}

.text-muted-custom {
  color: rgba(26, 26, 46, 0.5) !important;
}

/* Premium shadows */
.shadow-premium {
  box-shadow: 0 25px 50px -12px rgba(31, 60, 91, 0.25);
}

.shadow-soft {
  box-shadow: 0 10px 40px -10px rgba(31, 60, 91, 0.15);
}

/* Glass morphism effect */
.glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/*======================================
8. PREMIUM HEADER STYLES - REDESIGNED
======================================*/

/* Header Base Styles */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(31, 60, 91, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(31, 60, 91, 0.15);
  border-bottom-color: rgba(31, 60, 91, 0.12);
}

/* Top Bar - Hidden on scroll */
.header-top-bar {
  background: linear-gradient(135deg, var(--secondary-color), #1A2F4A);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.premium-header.scrolled .header-top-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.contact-link {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.contact-link:hover {
  color: var(--primary-color) !important;
  transform: translateX(3px);
}

.contact-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.contact-link:hover i {
  transform: scale(1.1);
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: white !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover.fa-facebook-f {
  background: #1877F2;
  border-color: #1877F2;
}

.social-link:hover.fa-x-twitter {
  background: #000000;
  border-color: #000000;
}

.social-link:hover.fa-instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: transparent;
}

.social-link:hover.fa-youtube {
  background: #FF0000;
  border-color: #FF0000;
}

/* Main Navigation */
.main-navigation {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.premium-header.scrolled .main-navigation {
  padding: 0.75rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand Section */
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
  text-transform: unset;
}

.brand-location {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.brand:hover .brand-name {
  color: var(--primary-color);
}

.brand:hover .brand-location {
  color: var(--secondary-color);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.625rem 1.125rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  display: block;
  text-transform: capitalize;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(248, 109, 114, 0.08);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(248, 109, 114, 0.12);
}

.nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-app-download {
  background: linear-gradient(135deg, var(--primary-color), rgb(235, 89, 94));
  color: white !important;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(248, 109, 114, 0.3);
  white-space: nowrap;
}

.btn-app-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.3s ease;
}

.btn-app-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(248, 109, 114, 0.4);
  background: linear-gradient(135deg, rgb(235, 89, 94), var(--primary-color));
}

.btn-app-download:hover::before {
  left: 100%;
}

.btn-app-download i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-app-download:hover i {
  transform: scale(1.1);
}

/* Mobile Menu Toggle - Improved Design */
.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(248, 109, 114, 0.1);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Hamburger Lines */
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.mobile-menu-toggle span::before {
  top: -8px;
}

.mobile-menu-toggle span::after {
  bottom: -8px;
}

/* Hover Effects */
.mobile-menu-toggle:hover span,
.mobile-menu-toggle:hover span::before,
.mobile-menu-toggle:hover span::after {
  background: var(--primary-color);
}

/* Active State - X Animation */
.mobile-menu-toggle.active {
  background: rgba(248, 109, 114, 0.15);
}

.mobile-menu-toggle.active span {
  background: transparent;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span::before {
  top: 0;
  background: var(--primary-color);
  transform: rotate(0deg);
}

.mobile-menu-toggle.active span::after {
  bottom: 0;
  background: var(--primary-color);
  transform: rotate(90deg);
}

/* Additional styling for better visibility */
.mobile-menu-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 109, 114, 0.3);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after {
    width: 20px;
    height: 2.5px;
    border-radius: 2.5px;
  }

  .mobile-menu-toggle span::before {
    top: -7px;
  }

  .mobile-menu-toggle span::after {
    bottom: -7px;
  }
}

@media (max-width: 576px) {
  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    padding: 7px;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after {
    width: 18px;
    height: 2px;
    border-radius: 2px;
  }

  .mobile-menu-toggle span::before {
    top: -6px;
  }

  .mobile-menu-toggle span::after {
    bottom: -6px;
  }
}

/* Mobile Offcanvas */
.premium-offcanvas {
  background: linear-gradient(135deg, #FAFBFC 0%, #F0F4F8 100%);
  border-left: 1px solid rgba(31, 60, 91, 0.1);
  width: 300px;
  max-width: 85vw;
  height: 100vh;
}

.offcanvas-header {
  background: linear-gradient(135deg, var(--secondary-color), #1A2F4A);
  color: white;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(31, 60, 91, 0.1);
}

.offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.offcanvas-logo {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.offcanvas-title {
  color: white !important;
  font-weight: 700;
  margin: 0;
  font-size: 1.1rem;
}

.offcanvas-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  transition: var(--transition);
  font-size: 1rem;
}

.offcanvas-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile Navigation Items */
.mobile-nav {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: block !important;
  width: 100%;
}

.mobile-nav-item {
  margin-bottom: 0.25rem;
  display: block !important;
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
  width: 100%;
  background: transparent;
  border: none;
}

.mobile-nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(248, 109, 114, 0.08);
  padding-left: 2rem;
}

.mobile-nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(248, 109, 114, 0.12);
  border-left: 4px solid var(--primary-color);
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.mobile-nav-item {
  margin-bottom: 0.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  text-transform: capitalize;
}

.mobile-nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(248, 109, 114, 0.08);
  padding-left: 2rem;
}

.mobile-nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(248, 109, 114, 0.12);
  border-left: 4px solid var(--primary-color);
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
}

/* Mobile CTA */
.btn-mobile-cta {
  background: linear-gradient(135deg, var(--primary-color), rgb(235, 89, 94));
  color: white !important;
  border: none;
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  margin: 0 1.5rem;
}

.btn-mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

/* Mobile Contact Info */
.mobile-contact {
  padding: 1rem 1.5rem;
  background: rgba(31, 60, 91, 0.05);
  margin: 1rem;
  border-radius: var(--border-radius);
}

.mobile-contact-title {
  color: var(--secondary-color) !important;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.mobile-contact-item:last-child {
  margin-bottom: 0;
}

.mobile-contact-item i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.mobile-contact-item a {
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-contact-item a:hover {
  color: var(--primary-color) !important;
}

/* Mobile Social Links */
.mobile-social {
  padding: 1rem 1.5rem;
}

.mobile-social-title {
  color: var(--secondary-color) !important;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-social-links {
  display: flex;
  gap: 0.75rem;
}

.mobile-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  background: linear-gradient(135deg, var(--primary-color), rgb(235, 89, 94));
  border: 2px solid transparent;
  transition: var(--transition);
  font-size: 1rem;
}

.mobile-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(248, 109, 114, 0.3);
}

.mobile-social-link.fa-facebook-f:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.mobile-social-link.fa-x-twitter:hover {
  background: #000000;
  border-color: #000000;
}

.mobile-social-link.fa-instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: transparent;
}

.mobile-social-link.fa-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

/* Header Responsive Design */
@media (max-width: 992px) {
  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  .brand-logo {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .premium-header {
    position: fixed !important;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .brand-logo {
    height: 40px;
  }

  .premium-navbar {
    padding: 0.75rem 0;
  }
}

@media (max-width: 576px) {
  .brand-wrapper {
    gap: 0.5rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo {
    height: 35px;
  }

  .premium-toggler {
    width: 40px;
    height: 40px;
  }

  .toggler-icon {
    width: 18px;
  }
}

/* Mobile Navigation Styles */
@media (min-width: 992px) {
    .hero-section .hero-text {
        margin-left: 116px;
    }
}
@media (max-width: 991px) {
  .premium-header {
    position: fixed;
  }

  .main-navigation {
    padding: 1rem 0;
  }

  .nav-wrapper {
    gap: 1rem;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-location {
    font-size: 0.7rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .premium-header.scrolled .header-top-bar {
    display: none;
  }

  .main-navigation {
    padding: 0.75rem 0;
  }

  .nav-wrapper {
    gap: 0.75rem;
  }

  .brand-logo {
    height: 35px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-location {
    font-size: 0.65rem;
  }

  .btn-app-download {
    display: none !important;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-toggle span {
    width: 16px;
  }
}

@media (max-width: 576px) {
  .brand {
    gap: 0.75rem;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-location {
    display: none;
  }

  .mobile-menu-toggle {
    width: 34px;
    height: 34px;
  }

  .mobile-menu-toggle span {
    width: 14px;
  }
}

/* Body padding to account for fixed header */
body {
  padding-top: 120px;
  transition: padding-top 0.3s ease;
}

body.header-scrolled {
  padding-top: 80px;
}

@media (max-width: 991px) {
  body {
    padding-top: 100px;
  }

  body.header-scrolled {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  body.header-scrolled {
    padding-top: 70px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  body.header-scrolled {
    padding-top: 65px;
  }
}

/*======================================
9. PREMIUM FOOTER STYLES
======================================*/

.premium-footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1A2F4A 50%, #0F1E33 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(248, 109, 114, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(31, 60, 91, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.footer-decoration {
  position: relative;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}

.decoration-line {
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

/* Footer Logo & Branding */
.footer-logo {
  text-align: left;
}

.footer-logo-img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

.footer-brand-name {
  color: white !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-tight);
  letter-spacing: -0.025em;
  text-transform: unset;
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--line-height-relaxed);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Footer Headings */
.footer-heading {
  color: white !important;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-md) !important;
  letter-spacing: -0.025em;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* Footer Links */
.footer-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
}

.footer-link:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.footer-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-link:hover i {
  transform: translateX(3px);
}

.footer-menu-item {
  margin-bottom: 0.5rem;
}

/* Social Icons */
.social-title {
  color: white !important;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 1rem;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: transparent;
}

.social-icon.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.social-icon.linkedin:hover {
  background: #0077B5;
  border-color: #0077B5;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--box-shadow-sm);
}

.contact-info h6 {
  color: white !important;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-link {
  color: var(--primary-color) !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent-color) !important;
  text-decoration: underline;
}

.contact-address {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 1rem;
  line-height: var(--line-height-normal);
}

/* Newsletter */
.newsletter-title {
  color: white !important;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-form {
  position: relative;
  max-width: 100%;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 3rem 0.75rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(248, 109, 114, 0.25);
  color: white;
}

.newsletter-btn {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: var(--border-radius-lg);
  color: white;
  padding: 0 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--box-shadow-lg);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.bottom-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.25rem 0;
}

.bottom-link:hover {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

.separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.75rem;
  font-size: 0.9rem;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-brand-name {
    font-size: 1.25rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .contact-item {
    gap: var(--spacing-xs);
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .footer-bottom-links {
    text-align: center !important;
  }

  .separator {
    display: none;
  }

  .bottom-link {
    display: block;
    margin: 0.25rem 0;
  }
}

@media (max-width: 576px) {
  .footer-logo-img {
    max-height: 50px;
  }

  .footer-brand-name {
    font-size: 1.1rem;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.9rem;
    padding: 0.375rem 0;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .newsletter-input {
    font-size: 0.85rem;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
  }

  .copyright-text,
  .bottom-link {
    font-size: 0.85rem;
  }
}

/*======================================
7. ACCESSIBILITY & PERFORMANCE
======================================*/

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #E63946;
    --secondary-color: #1D3557;
  }

  .feature-card,
  .service-card,
  .event-card,
  .membership-type {
    border: 2px solid var(--dark-color);
  }
}

/* Print styles */
@media print {
  .hero-section,
  .btn,
  .hero-illustration {
    display: none;
  }

  .section-title h2 {
    color: var(--dark-color) !important;
  }

  .feature-card,
  .service-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}

/*======================================
5. UTILITY CLASSES
======================================*/

.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
}

.shadow-custom {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1) !important;
}

/*======================================
6. EXISTING STYLES PRESERVATION
================================------*/

/* Keep any existing styles that might be used elsewhere in the application */
.padding-large {
  padding: 60px 0;
}

.overflow-hidden {
  overflow: hidden;
}
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color:             #717171;
  --white-color:              #fff;
  --black-color:              #272727;
  --gray-color:               #F3F3F3;
  --gray-color-200:           #E3E3E3;
  --gray-color-300:           #E0E0E0;
  --gray-color-500:           #D0D0D0;
  --gray-color-800:           #3A3A3A;
  --light-gray-color:         #D2D2D2;
  --primary-color:            rgb(248, 109, 114);
  --secondary-color:          #1F3C5B;
  --bs-body-color:            #272727;
  --bs-secondary-color:       #FFE8F0;
  --bs-secondary-rgb:         255, 232, 240;
  --bs-primary-rgb:           248,109,114;
  --bs-border-color:          #E3E3E3;
  --bs-dropdown-link-active-bg: #F5F5F5;
  --light-color:              #F8F8F8;
  --light-blue-color:         #EDF1F3;
  --navbar-color-color:       #131814;
  --swiper-theme-color:       #4A4A4A;
  --swiper-pagination-color:  #4A4A4A;
  --bs-box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);

  --bs-btn-font-size: 1rem;
}

/* Fonts */
:root {
    --body-font           : "Nunito", sans-serif;
    --heading-font        : "Nunito", sans-serif;
}

@media (min-width: 1850px){
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1540px;
  }
}

/*----------------------------------------------*/
/* 2. GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}
p {
  color: var(--black-color);
  letter-spacing: 0.01rem;
  line-height: normal;
}
a {
  color: var(--black-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
hr{
  margin: 1.25rem 0;
  color: var(--gray-color-200);
  opacity: 1;
}

/*------------ Background Color -----------*/
.bg-gray {
  background: var(--gray-color);
}
.bg-dark {
  background: var(--black-color);
}
.bg-light {
  background: var(--light-color);
}
.bg-light-gray {
  background: #F5F5F5;
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 2em;
  margin-bottom: 2em;
}
.margin-medium {
  margin-top: 4em;
  margin-bottom: 4em;
}
.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}
.margin-xlarge {
  margin-top: 9.5em;
  margin-bottom: 9.5em;
}

/* 2.2 Section Title
/*----------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  text-transform: capitalize;
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 115%;
}
h4,
h5,
h6 {
  color: var(--light-black-color);
}

h1{
  font-size: 3.9rem;
}
h2{
  font-size: 3.6rem;
}
h3{
  font-size: 2.1rem;
}
h4{
  font-size: 1.4rem;
}
h5{
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: 0.01rem;
}
h6{
  font-size: 1.1rem;
}

@media only screen and (max-width: 999px) {
  h1{
    font-size: 3rem;
  }
  h2{
    font-size: 2.95rem;
  }
  h3{
    font-size: 1.5rem;
  }
  h4{
    font-size: 1.24rem;
  }
  h5{
    font-size: 1.20rem;
  }
}

@media only screen and (max-width: 500px) {
  h1{
    font-size: 2.6rem;
  }
  h2{
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
/** 2.3 Buttons
--------------------------------------------------------------*/
.btn {
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.09em;
  color: var(--white-color);
  background-color: var(--primary-color);
  border: none;
  padding: 1.125rem 2.625rem;
  font-size: 1rem;
  border-radius: 200px;
  cursor: pointer;
}
.btn:hover,
.btn:focus-visible,
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: var(--white-color);
  background-color: var(--black-color);
}
.btn-dark {
  background-color: var(--black-color);
}
.btn-dark:hover {
  background-color: var(--primary-color);
}

.btn-light:hover {
  color: #fff;
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
/** 3. CONTENT ELEMENTS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
/** 3.1 Form Control
--------------------------------------------------------------*/
.form-control {
  padding: 1rem;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.01rem;
  line-height: normal;
}
.form-control:focus {
  box-shadow: none;
  border-color: #131814;
}
input.form-control::placeholder,
textarea.form-control::placeholder {
  color: var(--black-color);
}

/*--------------------------------------------------------------
/** 3.2 Form Select
--------------------------------------------------------------*/
.filter-blog .form-select,
.filter-shop .form-select{
  padding: 0;
  font-size: 21px;
  font-weight: 300;
  border: none;
  background-color: transparent;
  line-height: normal;
  width: 180px;
}
.form-select:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(243, 141, 68, 0.25);
}

/*--------------------------------------------------------------
/** 3.3 Table
--------------------------------------------------------------*/
th{
  font-weight: 300;
  letter-spacing: 0.06rem;
}

/*--------------------------------------------------------------
/** 3.4 Pagination
--------------------------------------------------------------*/
.page-link {
  padding: 0;
  font-size: 21px;
  color: var(--black-color);
  background: none;
  border: none;
}
.page-link:focus {
  color: var(--primary-color);
  background: none;
  box-shadow: none;
}
.page-link:hover {
  color: var(--primary-color);
  background: none;
  border: none;
}
.active>.page-link, .page-link.active {
  color: var(--primary-color);
  background: none;
  border: none;
}
.disabled>.page-link, .page-link.disabled {
  color: var(--gray-color-500);
  background: none;
  border: none;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*----------------------------------------------*/
/* 4. SITE STRUCTURE */
/*----------------------------------------------*/

/* Preloader */
#preloader {
  background: #FFF;
  opacity: 0.8;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999999;
  transition: 0.2s ease-in-out;
}
#preloader.hide-preloader{
  display: none;
}

.book {
  --color: var(--primary-color);
  --duration: 6.8s;
  width: 32px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.book .inner {
  width: 32px;
  height: 12px;
  position: relative;
  transform-origin: 2px 2px;
  transform: rotateZ(-90deg);
  animation: book var(--duration) ease infinite;
}
.book .inner .left,
.book .inner .right {
  width: 60px;
  height: 4px;
  top: 0;
  border-radius: 2px;
  background: var(--color);
  position: absolute;
}
.book .inner .left:before,
.book .inner .right:before {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: inherit;
  position: absolute;
  top: -10px;
  left: 6px;
}
.book .inner .left {
  right: 28px;
  transform-origin: 58px 2px;
  transform: rotateZ(90deg);
  animation: left var(--duration) ease infinite;
}
.book .inner .right {
  left: 28px;
  transform-origin: 2px 2px;
  transform: rotateZ(-90deg);
  animation: right var(--duration) ease infinite;
}
.book .inner .middle {
  width: 32px;
  height: 12px;
  border: 4px solid var(--color);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  transform: translateY(2px);
}
.book ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 0;
}
.book ul li {
  height: 4px;
  border-radius: 2px;
  transform-origin: 100% 2px;
  width: 48px;
  right: 0;
  top: -10px;
  position: absolute;
  background: var(--color);
  transform: rotateZ(0deg) translateX(-18px);
  animation-duration: var(--duration);
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.book ul li:nth-child(0) {
  animation-name: page-0;
}
.book ul li:nth-child(1) {
  animation-name: page-1;
}
.book ul li:nth-child(2) {
  animation-name: page-2;
}
.book ul li:nth-child(3) {
  animation-name: page-3;
}
.book ul li:nth-child(4) {
  animation-name: page-4;
}
.book ul li:nth-child(5) {
  animation-name: page-5;
}
.book ul li:nth-child(6) {
  animation-name: page-6;
}
.book ul li:nth-child(7) {
  animation-name: page-7;
}
.book ul li:nth-child(8) {
  animation-name: page-8;
}
.book ul li:nth-child(9) {
  animation-name: page-9;
}
.book ul li:nth-child(10) {
  animation-name: page-10;
}
.book ul li:nth-child(11) {
  animation-name: page-11;
}
.book ul li:nth-child(12) {
  animation-name: page-12;
}
.book ul li:nth-child(13) {
  animation-name: page-13;
}
.book ul li:nth-child(14) {
  animation-name: page-14;
}
.book ul li:nth-child(15) {
  animation-name: page-15;
}
.book ul li:nth-child(16) {
  animation-name: page-16;
}
.book ul li:nth-child(17) {
  animation-name: page-17;
}
.book ul li:nth-child(18) {
  animation-name: page-18;
}

@keyframes page-0 {
  4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  13%, 54% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  63% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-1 {
  5.86% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  14.74%, 55.86% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  64.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-2 {
  7.72% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  16.48%, 57.72% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  66.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-3 {
  9.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  18.22%, 59.58% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  68.22% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-4 {
  11.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  19.96%, 61.44% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  69.96% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-5 {
  13.3% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  21.7%, 63.3% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  71.7% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-6 {
  15.16% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  23.44%, 65.16% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  73.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-7 {
  17.02% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  25.18%, 67.02% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  75.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-8 {
  18.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  26.92%, 68.88% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  76.92% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-9 {
  20.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  28.66%, 70.74% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  78.66% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-10 {
  22.6% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  30.4%, 72.6% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  80.4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-11 {
  24.46% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  32.14%, 74.46% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  82.14% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-12 {
  26.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  33.88%, 76.32% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  83.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-13 {
  28.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  35.62%, 78.18% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  85.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-14 {
  30.04% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  37.36%, 80.04% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  87.36% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-15 {
  31.9% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  39.1%, 81.9% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  89.1% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-16 {
  33.76% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  40.84%, 83.76% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  90.84% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-17 {
  35.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  42.58%, 85.62% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  92.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-18 {
  37.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  44.32%, 87.48% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  94.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes left {
  4% {
    transform: rotateZ(90deg);
  }
  10%, 40% {
    transform: rotateZ(0deg);
  }
  46%, 54% {
    transform: rotateZ(90deg);
  }
  60%, 90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(90deg);
  }
}
@keyframes right {
  4% {
    transform: rotateZ(-90deg);
  }
  10%, 40% {
    transform: rotateZ(0deg);
  }
  46%, 54% {
    transform: rotateZ(-90deg);
  }
  60%, 90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
@keyframes book {
  4% {
    transform: rotateZ(-90deg);
  }
  10%, 40% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  40.01%, 59.99% {
    transform-origin: 30px 2px;
  }
  46%, 54% {
    transform: rotateZ(90deg);
  }
  60%, 90% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  96% {
    transform: rotateZ(-90deg);
  }
}

/* Search Bar
------------------------------------------------------------- */
.search-box {
  background: var(--gray-color);
  position: relative;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 120px;
  cursor: pointer;
  z-index: 9;
}
.search-box input.search-input {
  font-size: 1.3em;
  width: 70%;
  height: 30px;
  padding: 25px;
  border-radius: 80px;
  border-color: rgb(0 0 0 / 25%);
  background: transparent;
}
.search-box svg {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
}
.search-box svg.search {
  margin-left: -50px;
}


/** Search Form
--------------------------------------------------------------*/
.search-form input[type="search"].search-field {
  border: none;
  background: #f1f1f1;
  width: 100%;
  border-radius: 50px;
  padding: 10px 40px;
}
.search-form input[type="search"].search-field::focus {
  border-color: #af9aaa;
}
.search-form button {
  position: absolute;
  top: 6px;
  right: 9px;
  background: transparent;
  border: none;
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.search-popup.is-visible {
  opacity: 1;
  visibility: visible;
  cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
  cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.search-popup-container {
  background-color: transparent;
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  text-align: center;
  box-shadow: none;
  cursor: default;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.is-visible .search-popup-container {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-popup-form {
  position: relative;
  margin: 0 0 3em 0;
}
.search-popup-form .form-control {
  padding: 0 0 .375em 0;
  font-size: 2em;
}
.search-popup-form #search-popup-submit {
  display: none;
}
.search-popup .search-popup-close {
  display: block;
  position: absolute;
  top: 2em;
  right: 2em;
  margin: -0.5em;
  padding: 0.5em;
  line-height: 0;
}
.search-popup .search-popup-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search-popup .search-popup-close i {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  fill: rgba(0,0,0,0.5);
}
.search-popup .search-popup-close:hover i {
  fill: rgba(0,0,0,1);
}
.search-popup .cat-list-title {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 0.6em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.search-popup .cat-list {
  margin: 0;
  list-style-type: none;
}
.search-popup .cat-list-item {
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: 0.015em;
  font-size: 2em;
}
.search-popup .cat-list-item a {
  position: relative;
}
.search-popup .cat-list-item a::after {
  background: none repeat scroll 0 0 #fff;
  content: "";
  height: 1px;
  border-bottom: 1px solid #ff9697;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: height 0.3s,opacity 0.3s,-webkit-transform 0.3s;
  transition: height 0.3s,opacity 0.3s,transform 0.3s;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.search-popup .cat-list-item a:hover::after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.search-popup .cat-list-item::after {
  content: "/";
  padding: 0 5px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: text-top;
}
.search-popup .cat-list-item:last-child::after {
  display: none;
}

@media only screen and (max-width: 991px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.425em;
  }
}
@media only screen and (max-width: 767px) {
.search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}
@media only screen and (max-width: 575px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.125em;
  }
  .search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}

.search-popup input[type="search"] {
  font-size: 24px;
  height: 60px;
  padding: 26px;
}
.search-popup .search-form button {
  top: 12px;
  right: 15px;
}
.search-popup .search-form button svg {
  height: 28px;
  width: 28px;
}

/* nav tabs */
.nav-tabs .nav-link{
  color: var(--black-color);
}
:focus-visible {
  outline: none;
}

/* 4.1 Header
/*----------------------------------------------*/
.site-header {
  width: 100%;
  z-index: 10;
  transition: background 0.3s ease-out;
}
.navbar-toggler svg.navbar-icon {
  width: 50px;
  height: 50px;
}
.navbar-nav .nav-item a.nav-link {
  font-size: 0.7619em;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--black-color);
}
.navbar-nav .nav-item a.nav-link.active, 
.navbar-nav .nav-item a.nav-link:focus, 
.navbar-nav .nav-item a.nav-link:hover {
  color: var(--primary-color);
}
.modal {
  --bs-modal-zindex: 99999;
}
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}
.dropdown-menu{
  --bs-dropdown-link-active-color: var(--primary-color);
  --bs-dropdown-link-active-bg: #F5F5F5;
  --bs-dropdown-zindex: 99999;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
}
.cart-dropdown .dropdown-menu,
.wishlist-dropdown .dropdown-menu{
  min-width: 21rem;
}
.cart-dropdown.dropdown a::after,
.wishlist-dropdown.dropdown a::after{
  display: none;
}

@media only screen and (max-width: 500px) {
  .cart-dropdown .dropdown-menu,
  .wishlist-dropdown .dropdown-menu{
    min-width: fit-content;
  }
}

/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
  box-shadow: none;
}
#header-nav .offcanvas {
  transition: 0.5s ease-in-out;
}
#header-nav .offcanvas.show {
  z-index: 99999;
}
#header-nav .offcanvas-end {
  width: 500px;
}

/*------------ Top User Icons -----------*/
.site-header .user-items svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  #navbar .user-items {
    display: none;
  }
}

/* 4.2 Billboard
/*----------------------------------------------*/
/*------------Swiper Arrow -----------*/
.swiper-next,
.swiper-prev{
  color: var(--black-color);
  z-index: 9999;
}
.swiper-button-disabled{
  color: var(--gray-color-500);
}

@media only screen and (max-width: 765px) {
  section#billboard{
    height: 100vh !important;
  }
}

/* 4.3 Icon Box - Company Services
/*----------------------------------------------*/
.icon-box .icon-box-icon svg {
  width: 33px;
  height: 33px;
  fill: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  #company-services .icon-box {
    flex-wrap: wrap;
  }
}

/* 4.4 Product
/*----------------------------------------------*/
.card-concern{
  text-align: center;
  bottom: 145px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.card-concern .btn{
  padding: 1.125rem;
}
.card-concern svg {
  width: 27px;
  height: 27px;
  cursor: pointer;
}
.card:hover .card-concern{
  bottom: 160px;
  opacity: 1;
}

/* 4.5 Items Listings
/*----------------------------------------------*/
#items-listing img{
  max-width: 80px;
  max-height: 90px;
}

/*------------Swiper Pagination -----------*/
.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 35px;
}
.swiper-pagination span.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

/* 4.6 Testimonial
/*----------------------------------------------*/
.rating svg.star {
  width: 16px;
  height: 16px;
}

/* 4.7 Brands
/*----------------------------------------------*/
#brands .brand-images img{
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
#brands .brand-images a.brand:hover img{
  filter: grayscale(0%);
  opacity: 1;
}

/* 4.8 Instagram
/*----------------------------------------------*/
.instagram-item .icon-overlay {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: auto;
  color: var(--light-color);
  opacity: 0;
  transition: 0.9s ease-out;
}
.instagram-item:hover .icon-overlay {
  opacity: 1;
}

/* 4.9 Footer
/*----------------------------------------------*/
#footer .menu-list .menu-item a{
  font-size: 0.7619em;
  font-weight: 300;
  letter-spacing: 0.09em;
  color: var(--black-color);
}
#footer .menu-list .menu-item a:hover{
  color: var(--primary-color);
}
.social-links svg {
  width: 20px;
  height: 20px;
  transition: 0.3s ease-in-out;
  color: var(--light-gray-color);
}
.social-links svg:hover {
  color: var(--primary-color);
}
.social-links li {
  padding-right: 30px;
}

/*----------------------------------------------*/
/* 5. SITE STRUCTURE */
/*----------------------------------------------*/
/* ----------- Search Bar -----------*/
select#input-sort {
  border: none;
  padding: 0;
  text-align: right;
  cursor: pointer;
}

/* 5.1 Single Product Page
/*----------------------------------------------*/
.thumb-swiper .swiper-slide{
  height: auto;
}
.swiper-slide-thumb-active img{
  border: var(--bs-border-width) var(--bs-border-style) var(--primary-color) !important;
}
.product-info del{
  color: var(--gray-color-500);
}

/*---- Product Tabs ----------*/
.nav-tabs .nav-link {
  letter-spacing: 0.06em;
}
.nav-tabs .nav-link {
  background: none;
  border: none;
}
.nav-tabs button.nav-link.active {
  color: var(--primary-color);
  background: none;
}
.nav-tabs button.nav-link:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .product-tabs .review-item{
    width: 100%;
    flex-wrap: wrap;
  }
  .product-tabs .review-item .image-holder{
    margin-bottom: 10px;
  }
}
.main-logo {
  width:52px;
}
.primary-text {
  color: var(--primary-color);
}

.sliders .mySlides > img {
  width: 100%; 
  height: 500px;
}

.sliders .mySlides {
  display: none;
}

/* Caption text */
.sliders .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.sliders .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.sliders .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.sliders .active {
  background-color: #717171;
}

/* Fading animation */
.sliders .fade {
  animation-name: fade;
  animation-duration: 5.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.docaid-offer {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

.docaid-offer .title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.docaid-offer .offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.docaid-offer .offer-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.docaid-offer .offer-item i {
  display: block;
  margin: 0 auto 15px;
  color: var(--primary-color);
  font-size: 25px;
}

.docaid-offer .offer-item h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 30px;
}

.docaid-offer .offer-item p {
  font-size: 1rem;
  color: #555;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

/* About US Page Styles */

    .bg-purple {
        background-color: #9b59b6;
    }

    .text-purple {
        color: #9b59b6;
    }

    .bg-purple.bg-opacity-10 {
        background-color: rgba(155, 89, 182, 0.1);
    }

    .about-hero-section {
        position: relative;
        overflow: hidden;
    }

    .about-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: 200px;
        background-repeat: repeat;
        opacity: 0.5;
    }

    .hero-icon-display {
        position: relative;
        z-index: 1;
    }

    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }

    .mission-card {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2) !important;
    }

    .stat-number {
        font-size: 3rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
    }

    .service-card,
    .vision-card,
    .values-card {
        border-radius: 15px;
        transition: all 0.3s ease;
        background: #fff;
    }

    .service-card:hover,
    .vision-card:hover,
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15) !important;
    }

    .service-icon,
    .vision-icon,
    .values-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .knowledge-image > div {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    }

    .highlight-item {
        font-size: 1.1rem;
    }

    .cta-section {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        color: #6c757d;
    }

/*======================================
10. MEMBERSHIP FORM STYLES
======================================*/

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1F3C5B 50%, var(--primary-color) 100%) !important;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(248, 109, 114, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 60, 91, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Premium Form Card */
.premium-form-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 60, 91, 0.1);
  box-shadow: 0 25px 50px -12px rgba(31, 60, 91, 0.25);
}

.card-header-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
  position: relative;
  overflow: hidden;
}

.card-header-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: shimmer 8s linear infinite;
}

.premium-form-card .card-body {
  background: #FAFBFC;
}

  .members-preview-banner {
      box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
      transition: all 0.3s ease;
  }

  .members-preview-banner:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
  }

  .benefit-card {
      border-radius: 12px;
      border: 1px solid rgba(0, 123, 255, 0.1);
      transition: all 0.3s ease;
      background: #fff;
  }

  .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
      border-color: rgba(0, 123, 255, 0.3);
  }

  .benefit-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
  }

  .benefit-icon, .reg-icon, .vision-icon i {
    color: #fff !important;
  }

  /* Event list page */
  
    .event-card-compact {
        border-radius: 15px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid rgba(0, 123, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .event-card-compact:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2) !important;
        border-color: rgba(0, 123, 255, 0.3);
    }

    .event-banner {
        height: 120px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
    }

    .date-box {
        width: 70px;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .date-box .month {
        font-size: 0.8rem;
        text-transform: uppercase;
        font-weight: 600;
    }

    .date-box .day {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1;
    }

    .event-date-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10;
    }

    .fee-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .fee-badge .badge {
        font-size: 0.9rem;
        padding: 8px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .status-badge-open,
    .status-badge-upcoming,
    .status-badge-closed {
        position: absolute;
        bottom: -10px;
        right: 15px;
        z-index: 10;
    }

    .status-badge-open .badge,
    .status-badge-upcoming .badge,
    .status-badge-closed .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        border-radius: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .event-content {
        margin-top: 15px;
    }

    .event-title {
        font-size: 1.2rem;
        line-height: 1.4;
        min-height: 56px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .event-title a {
        transition: color 0.3s ease;
    }

    .event-title a:hover {
        color: #667eea !important;
    }

    .event-description {
        line-height: 1.6;
        min-height: 60px;
    }

    .detail-item {
        display: flex;
        align-items: center;
    }

    .registration-period {
        border-top: 1px dashed #dee2e6;
    }

    .stat-box {
        transition: transform 0.3s ease;
    }

    .stat-box:hover {
        transform: translateY(-5px);
    }

/* Form Sections */
.form-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border: 1px solid rgba(31, 60, 91, 0.08);
  transition: var(--transition);
}

.form-section:hover {
  box-shadow: 0 4px 16px rgba(31, 60, 91, 0.1);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(248, 109, 114, 0.3);
}

.section-title {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Form Labels */
.form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
  text-transform: capitalize;
}

/* Form Controls */
.form-control,
.form-select {
  border: 2px solid rgba(31, 60, 91, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  transition: var(--transition);
  font-size: 1rem;
  background: #ffffff;
  color: var(--secondary-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(248, 109, 114, 0.25);
  background: #ffffff;
  color: var(--secondary-color);
}

.form-control::placeholder,
.form-select::placeholder {
  color: rgba(31, 60, 91, 0.4);
}

/* Submit Button */
.btn-premium-submit {
  background: linear-gradient(135deg, var(--primary-color), rgb(235, 89, 94));
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  color: white;
  box-shadow: 0 4px 16px rgba(248, 109, 114, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-premium-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn-premium-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(248, 109, 114, 0.4);
  background: linear-gradient(135deg, rgb(235, 89, 94), var(--primary-color));
}

.btn-premium-submit:hover::before {
  left: 100%;
}

/* Form Check */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(248, 109, 114, 0.25);
}

/* Invalid Feedback */
.invalid-feedback {
  font-size: 0.875rem;
  color: #dc3545;
}

/* Text Muted */
.text-muted {
  font-size: 0.85rem;
  color: rgba(31, 60, 91, 0.5) !important;
}

/* Event Details */

.event-header-banner {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.registration-form-card {
    position: sticky;
    top: 20px;
}

.date-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card {
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-section {
    padding: 20px;
  }

  .section-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .page-header {
    padding: 60px 0 40px !important;
  }

  .page-header h1 {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 576px) {
  .form-section {
    padding: 15px;
  }

  .section-header {
    gap: 10px;
  }

  .section-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .form-control,
  .form-select {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .btn-premium-submit {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .toast-container {
      position: fixed !important;
      top: 100px !important;
      right: 20px !important;
      z-index: 9999 !important;
  }

  .toast {
      min-width: 300px;
      max-width: 400px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin-bottom: 10px;
      animation: slideInRight 0.5s ease-out;
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .toast.hiding {
      opacity: 0;
      transform: translateX(100%);
  }

  .toast.bg-success {
      background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  }

  .toast.bg-danger {
      background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  }

  .toast.bg-warning {
      background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
  }

  .toast-body {
      font-size: 15px;
      font-weight: 500;
      padding: 12px 16px;
  }

  .toast-body i {
      font-size: 18px;
  }

  .toast .btn-close {
      filter: brightness(0) invert(1);
      opacity: 0.8;
      transition: opacity 0.2s;
  }

  .toast .btn-close:hover {
      opacity: 1;
  }

  @keyframes slideInRight {
      from {
          transform: translateX(100%);
          opacity: 0;
      }
      to {
          transform: translateX(0);
          opacity: 1;
      }
  }

  @keyframes fadeOut {
      from {
          opacity: 1;
      }
      to {
          opacity: 0;
      }
  }
}