/* --- Enhanced Header Styles --- */
.topbar-section {
  background: linear-gradient(90deg, #FF9933 0%, #FF6600 100%) !important;
  box-shadow: 0 4px 24px rgba(255,153,51,0.10);
  border-radius: 0 0 32px 32px;
}
.topbar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.topbar-menu li {
  display: inline-block;
}
.social-icon {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.social-icon:hover {
  background: #fff;
  color: #FF6600;
  box-shadow: 0 2px 8px rgba(255,153,51,0.15);
}
.topbar-menu .btn.btn-light {
  background: #fff;
  color: #FF6600;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255,153,51,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.topbar-menu .btn.btn-light:hover {
  background: #FF6600;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,153,51,0.18);
}

/* --- Mobile Header Enhancement --- */
.mobile-header {
  background: linear-gradient(135deg, #FF9933 0%, #FF6600 50%, #E55A00 100%) !important;
  box-shadow: 0 4px 24px rgba(255,153,51,0.15) !important;
  border-radius: 0 0 25px 25px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.mobile-logo-container {
  display: inline-block;
  transition: all 0.3s ease;
}

.mobile-logo-container:hover img {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(255,255,255,0.3) !important;
}

.mobile-tool-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.mobile-tool-btn::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: left 0.5s;
}

.mobile-tool-btn:hover::before {
  left: 100%;
}

.mobile-tool-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.mobile-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,71,87,0.4);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255,71,87,0.6);
  }
}

.mobile-menu-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.hamburger-lines span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover .hamburger-lines span:nth-child(1) {
  transform: translateY(2px) rotate(5deg);
}

.mobile-menu-btn:hover .hamburger-lines span:nth-child(2) {
  opacity: 0.7;
  transform: scaleX(0.8);
}

.mobile-menu-btn:hover .hamburger-lines span:nth-child(3) {
  transform: translateY(-2px) rotate(-5deg);
}

/* Mobile header responsive adjustments */
@media (max-width: 576px) {
  .mobile-header .container {
    padding: 0.5rem 1rem;
  }
  
  .mobile-tool-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
  
  .hamburger-lines span {
    width: 18px;
  }
}

/* --- Logo Section Enhancement --- */
.logo-container {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.logo_preview {
  transition: all 0.3s ease !important;
  border-radius: 20px !important;
}

.logo_preview:hover {
  transform: scale(1.02) !important;
}

/* Decorative elements around logo */
.logo-decoration-left,
.logo-decoration-right {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF9933, transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.logo-decoration-left {
  left: 10%;
}

.logo-decoration-right {
  right: 10%;
}

.logo-decoration-left::before,
.logo-decoration-right::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #FF9933;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,153,51,0.5);
}

.logo-decoration-left::before {
  right: -4px;
}

.logo-decoration-right::before {
  left: -4px;
}

/* Beautiful decorative line below logo */
.logo-underline {
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.underline-gradient {
  flex: 1;
  max-width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF9933, #FF6600, #FF9933, transparent);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.underline-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.underline-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  background: #FF9933;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
  background: #FF6600;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
  background: #E55A00;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 8px rgba(255,153,51,0.6);
  }
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
  .logo_preview {
    width: 350px !important;
    height: 250px !important;
  }
  
  .logo-decoration-left,
  .logo-decoration-right {
    display: none;
  }
  
  .underline-gradient {
    max-width: 80px;
  }
}

/* --- Modern Navigation Menu Styles --- */
.site-menu-section {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 3px solid #FF9933;
  position: sticky;
  top: 0;
  z-index: 999;
}

.modern-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-nav-menu li {
  position: relative;
}

.nav-link-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 100px;
  text-align: center;
}

.nav-link-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,153,51,0.1), transparent);
  transition: left 0.5s;
}

.nav-link-modern:hover::before {
  left: 100%;
}

.nav-link-modern .nav-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #FF9933;
  transition: all 0.3s ease;
}

.nav-link-modern .menu-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-link-modern:hover {
  color: #FF6600;
  background: linear-gradient(135deg, rgba(255,153,51,0.08), rgba(255,102,0,0.12));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,153,51,0.2);
}

.nav-link-modern:hover .nav-icon {
  color: #FF6600;
  transform: scale(1.1);
}

.nav-link-modern:hover .menu-text {
  color: #FF6600;
}

.nav-link-modern.active {
  background: linear-gradient(135deg, #FF9933, #FF6600);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,153,51,0.3);
}

.nav-link-modern.active .nav-icon,
.nav-link-modern.active .menu-text {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .nav-link-modern {
    padding: 8px 12px;
    min-width: 80px;
    font-size: 0.85rem;
  }
  
  .nav-link-modern .nav-icon {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .nav-link-modern .menu-text {
    font-size: 0.75rem;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 *
 *= require_tree .
 *= require_self
 */


 @font-face {
    font-family: 'Themify';
    src: url("/assets/themify-10a0179e.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('<%= asset_path "/fonts/futura-med-webfont.woff2" %>') format('woff2');
}
.topbar {
    height: 200px;
    width: 100%;
}

.logo_preview{
padding-left: 25%;
}

.hide {
  visibility: hidden
}

.marquee {
width: 450px;
line-height: 50px;
background-color: red;
color: white;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
}

.marquee p {
display: inline-block;
padding-left: 100%;
animation: marquee 15s linear infinite;
}

@keyframes marquee {
0%   { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}


.home1-slider {
  width: 100%;
  height: 60vh; /* Adjust this value for your desired height */
  position: relative;
  overflow: hidden;
}

.home1-slider .swiper-wrapper,
.home1-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.home1-slide-item .home1-slide1-content,
.home1-slide-item .home1-slide2-content,
.home1-slide-item .home1-slide3-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.home1-slide-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home1-slider {
    height: 40vh;
}

html {
    scroll-behavior: smooth;
}

/* Add scroll margins for sections */
#home,
#founderNote,
#product-page,
#reviews {
    scroll-margin-top: 80px;
}


#founderNote {
    scroll-margin-top: 100px;
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Style for active menu items */
.smooth-scroll.active {
    color: #FF9933 !important;
    position: relative;
}

.smooth-scroll.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF9933;
}

/* Hover effect for menu items */
.smooth-scroll:hover {
    color: #FF9933;
    transition: color 0.3s ease;
}

.section {
    position: relative;
    z-index: 1;
}

.card-title {
  font-weight: 700;
}

.btn-primary, .btn-outline-primary:hover {
  background-color: #FF9933 !important;
  border-color: #FF9933 !important;
}

.btn-outline-primary {
  color: #FF9933 !important;
  border-color: #FF9933 !important;
}

.btn-outline-primary:hover {
  background-color: #fff8f0 !important;
}

.card-footer {
  border-top: none;
}

/* --- Enhanced User Dropdown Styles --- */
.user-avatar-wrapper {
  position: relative;
  display: inline-block;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, #FF9933, #FF6600);
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(255, 153, 51, 0.2);
  transition: all 0.3s ease;
}

.dropdown-toggle:hover .user-avatar {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.user-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border: 2px solid white;
  border-radius: 50%;
}

.dropdown-toggle {
  background: transparent !important;
  border: none !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  color: #374151 !important;
}

.dropdown-toggle:hover {
  background: rgba(255, 153, 51, 0.08) !important;
  transform: translateY(-1px);
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu {
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  margin-top: 8px !important;
  min-width: 220px !important;
  animation: dropdownFadeIn 0.2s ease-out;
}

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

.dropdown-header {
  background: linear-gradient(135deg, #FFF7ED, #FED7AA) !important;
  border-bottom: 1px solid #F3F4F6 !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #374151 !important;
}

.dropdown-item {
  padding: 10px 16px !important;
  font-size: 14px !important;
  color: #374151 !important;
  transition: all 0.2s ease !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.dropdown-item:hover {
  background: rgba(255, 153, 51, 0.08) !important;
  color: #FF6600 !important;
  transform: translateX(4px);
}

.dropdown-item i {
  width: 16px !important;
  font-size: 14px !important;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.dropdown-item:hover i {
  opacity: 1;
}

.dropdown-item.text-danger:hover {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #DC2626 !important;
}

.dropdown-divider {
  margin: 8px 0 !important;
  border-top: 1px solid #F3F4F6 !important;
}

.hover-effect {
  transition: all 0.2s ease;
}

.hover-effect:hover {
  transform: translateX(2px);
}

/* --- Profile Page Enhancements --- */
.profile-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF9933, #FF6600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(255, 153, 51, 0.3);
}

.profile-header {
  background: linear-gradient(135deg, #FF9933, #FF6600);
  color: white;
  border-radius: 12px 12px 0 0;
  padding: 2rem;
}

.profile-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.profile-stats {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6600;
}

.stat-label {
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 0.25rem;
}