.footer {
    background-color: darkgreen;
    color: white
}

/* Font Face Declaration */
@font-face {
  font-family: 'Gagalin';
  src: url('../fonts/gagalin/Gagalin-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Inter", sans-serif;
}

/* Navbar Styling */
.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  color: #1a3d0f;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #4CAF50;
  transform: translateY(-1px);
}

.navbar-logo {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.brand-text {
  font-family: 'Gagalin', cursive;
  font-size: 1.5rem;
  color: #4CAF50;
  font-weight: normal;
}

.navbar-nav {
  margin-left: 2rem;
}

.navbar-nav .nav-item {
  margin: 0 0.5rem;
}

.navbar-nav .nav-link {
  color: #4a5568;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.15);
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 2px;
}

.navbar-nav .nav-link i {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
  transform: scale(1.1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-actions .btn {
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-actions .btn-outline-success {
  border: 2px solid #4CAF50;
  color: #4CAF50;
  background: transparent;
}

.navbar-actions .btn-outline-success:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.navbar-actions .btn-success {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.navbar-actions .btn-success:hover {
  background: linear-gradient(135deg, #45a049, #2E7D32);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(76, 175, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar-nav {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
  }
  
  .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem;
    border-radius: 8px;
  }
  
  .navbar-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    flex-direction: column;
    width: 100%;
  }
  
  .navbar-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    gap: 0.5rem;
  }
  
  .brand-text {
    font-size: 1.25rem;
  }
  
  .navbar-logo {
    width: 35px;
    height: 35px;
  }
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 50%, #d4edda 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-heading {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a3d0f;
}

.hero-highlight {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2.5rem;
 
  text-align: center;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #45a049, #2E7D32);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  color: white;
}

.hero-btn-secondary {
  background: white;
  color: #4CAF50;
  border: 2px solid #4CAF50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.hero-phone-mockup {
  position: relative;
  z-index: 3;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.app-header {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.app-status {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.app-content {
  padding: 1.5rem;
  height: calc(100% - 60px);
  overflow-y: auto;
}

.welcome-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.welcome-card h3 {
  color: #1a3d0f;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.welcome-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.food-items {
  margin-bottom: 1.5rem;
}

.food-item {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #4CAF50;
}

.food-item.expiring {
  border-left-color: #ff6b6b;
  background: linear-gradient(135deg, #fff5f5, #fff);
}

.food-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.food-info {
  flex: 1;
}

.food-name {
  display: block;
  font-weight: 600;
  color: #1a3d0f;
  font-size: 0.9rem;
}

.food-expiry {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.food-item.expiring .food-expiry {
  color: #ff6b6b;
  font-weight: 600;
}

.quick-actions {
  display: flex;
  gap: 0.75rem;
}

.action-btn {
  flex: 1;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: linear-gradient(135deg, #45a049, #2E7D32);
  transform: translateY(-2px);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;

}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a3d0f;
  animation: float 4s ease-in-out infinite;
  border-left: 4px solid #4CAF50;
}

.floating-card i {
  color: #4CAF50;
  font-size: 1.2rem;
}

.card-1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  right: -15%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 20%;
  left: -10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design for Hero Section */
@media (max-width: 991px) {
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-btn {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stats .stat-number {
    font-size: 1.5rem;
  }
  
  .phone-frame {
    width: 200px;
    height: 400px;
  }
  
  .app-content {
    padding: 1rem;
  }
  
  .welcome-card {
    padding: 1rem;
  }
  
  .food-item {
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stats .stat-item {
    flex-direction: row;
    gap: 1rem;
  }
  
  .hero-stats .stat-number {
    font-size: 1.25rem;
  }
}

/* Brand Heading with Gagalin Font */
.brand-heading {
  font-family: 'Gagalin', cursive;
  font-weight: normal;
  font-style: normal;
}


/* FAQ Section Styling */
.faq-accordion {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 100, 0, 0.1);
  }
  
  .faq-item {
    background: white;
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 2px 10px rgba(0, 100, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.15);
    transform: translateY(-2px);
  }
  
  .faq-button {
    border: none !important;
    border-radius: 10px !important;
    padding: 1.5rem !important;
    background: white !important;
    color: #2d5016 !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
  }
  
  .faq-button:hover {
    background: #f8fff8 !important;
    color: #1a3d0f !important;
  }
  
  .faq-button:not(.collapsed) {
    background: #e8f5e8 !important;
    color: #1a3d0f !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  
  .faq-question {
    flex: 1;
    text-align: left;
  }
  
  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }
  
  .faq-icon-plus {
    background: #4CAF50;
    color: white;
  }
  
  .faq-icon-minus {
    background: #2E7D32;
    color: white;
  }
  
  .faq-button:hover .faq-icon-plus {
    background: #45a049;
    transform: scale(1.1);
  }
  
  .faq-button:hover .faq-icon-minus {
    background: #1b5e20;
    transform: scale(1.1);
  }
  
  .faq-answer {
    background: #f8fff8;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    padding: 1.5rem !important;
    color: #4a6741 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    border-top: 1px solid #e8f5e8;
  }
  
  /* Remove default Bootstrap accordion styling */
  .faq-button::after {
    display: none !important;
  }
  
  /* Animation for accordion collapse */
  .accordion-collapse {
    transition: all 0.3s ease;
  }
  
  /* Custom scrollbar for FAQ answers */
  .faq-answer::-webkit-scrollbar {
    width: 6px;
  }
  
  .faq-answer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .faq-answer::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 3px;
  }
  
   .faq-answer::-webkit-scrollbar-thumb:hover {
   background: #45a049;
 }

/* Responsive FAQ Section */
@media (max-width: 768px) {
  .faq-accordion {
    padding: 1.5rem;
  }
  
  .faq-button {
    padding: 1.25rem !important;
    font-size: 1rem !important;
  }
  
  .faq-answer {
    padding: 1.25rem !important;
    font-size: 0.9rem !important;
  }
  
  .faq-icon {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .faq-accordion {
    padding: 1rem;
  }
  
  .faq-button {
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }
  
  .faq-answer {
    padding: 1rem !important;
    font-size: 0.85rem !important;
  }
  
  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}

/* Notification Section Styling */
.notification-section {
  background: linear-gradient(135deg, #2f803c 0%, #2e8f4e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.notification-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

/* Phone Container */
.notification-phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.notification-phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.notification-phone:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: #000;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 4px;
}

.status-icons i {
  font-size: 10px;
}

/* App Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: white;
  border-bottom: 1px solid #e9ecef;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.welcome-text {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.subtitle {
  color: #6c757d;
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions i {
  font-size: 18px;
  color: #6c757d;
}

.upgrade-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* App Content */
.app-content {
  padding: 20px;
  background: #f8f9fa;
  height: calc(100% - 120px);
  overflow-y: auto;
}

/* Balance Section */
.balance-section {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.balance-label {
  color: #6c757d;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.balance-amount {
  color: #333;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-size: 28px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.action-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
}

/* Food Cards */
.food-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.food-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.card-count {
  color: #6c757d;
  font-size: 12px;
}

.progress-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-fill.expiring {
  background: #ff6b6b;
  width: 30%;
}

.progress-fill.fresh {
  background: #4CAF50;
  width: 85%;
}

/* Quick Actions */
.quick-actions h6 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.action-icons {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.action-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.action-icon:hover {
  background: rgba(76, 175, 80, 0.1);
  transform: translateY(-2px);
}

.action-icon i {
  font-size: 20px;
  color: #4CAF50;
}

.action-icon span {
  font-size: 10px;
  color: #6c757d;
  font-weight: 500;
}

/* Notification Bubble */
.notification-bubble {
  position: absolute;
  top: 80px;
  right: -20px;
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 200px;
  transform: translateX(20px);
  animation: notificationFloat 3s ease-in-out infinite;
}

@keyframes notificationFloat {
  0%, 100% { transform: translateX(20px) translateY(0px); }
  50% { transform: translateX(20px) translateY(-10px); }
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.notification-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.notification-time {
  color: #6c757d;
  font-size: 10px;
  font-weight: 600;
}

.notification-title {
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.notification-subtitle {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
}

/* Content Text */
.notification-content-text {
  padding: 2rem 0;
}

.notification-headline {
  font-family: 'Gagalin', cursive;
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  color: black;
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.brand-heading{
  
}

.notification-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.notification-cta-btn {
  background: #000;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification-cta-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
  .notification-headline {
    font-size: 2.5rem;
  }
  
  .notification-phone {
    transform: none;
    margin: 0 auto;
  }
  
  .notification-bubble {
    right: 20px;
  }
  
  .notification-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .notification-headline {
    font-size: 1.8rem;
  }
  
  .notification-phone {
    width: 250px;
    height: 500px;
  }
  
  .notification-bubble {
    width: 180px;
    right: 10px;
  }
  
  .notification-description {
    font-size: 0.9rem;
  }
  
  .notification-cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .notification-headline {
    font-size: 1.5rem;
  }
  
  .notification-phone {
    width: 200px;
    height: 400px;
  }
  
  .notification-bubble {
    width: 150px;
    right: 5px;
    top: 60px;
  }
  
  .notification-description {
    font-size: 0.85rem;
  }
  
  .notification-cta-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
  }
}

/* Social Share Section Styling */
.social-share-section {
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
  position: relative;
  overflow: hidden;
}

.social-share-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(76,175,80,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(76,175,80,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(76,175,80,0.1)"/></svg>');
  pointer-events: none;
}

/* Feature Headline */
.feature-headline {
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

/* Tab Buttons */
.feature-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-tab {
  background: white;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.feature-tab.active {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.feature-tab:hover:not(.active) {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border-color: #4CAF50;
}

/* Tab Content */
.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-title {
  color: #2d5016;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tab-description {
  color: #4a6741;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(76, 175, 80, 0.15);
  transform: translateX(5px);
}

.highlight-item i {
  color: #4CAF50;
  font-size: 16px;
}

.highlight-item span {
  color: #2d5016;
  font-weight: 500;
  font-size: 0.9rem;
}

/* CTA Button */
.cta-button {
  background: #000000;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.cta-button:hover {
  background: #f5edee;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Illustration Container */
.feature-illustration-container {
  position: relative;
  /* height: 300px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-illustration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-illustration.active {
  opacity: 1;
  transform: scale(1);
}

.illustration-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone Mockup for Reels */
.phone-mockup {
  width: 200px;
  height: 350px;
  background: #000;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-player {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-thumbnail {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 10px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumbnail i {
  font-size: 40px;
  color: white;
}

.video-info h6 {
  color: #333;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.video-info p {
  color: #6c757d;
  font-size: 12px;
  margin: 0;
}

.video-actions {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}

.video-actions i {
  color: #6c757d;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.video-actions i:hover {
  color: #4CAF50;
}

/* Recipe Book for Recipes */
.recipe-book {
  width: 250px;
  height: 300px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.book-cover {
  background: white;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book-cover h5 {
  color: #2d5016;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.recipe-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recipe-image {
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-image i {
  font-size: 30px;
  color: #4CAF50;
}

.recipe-story {
  text-align: center;
}

.recipe-story p {
  color: #4a6741;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recipe-story span {
  color: #2d5016;
  font-weight: 600;
  font-size: 11px;
}

/* Profile Mockup for Profile Pages */
.profile-mockup {
  width: 220px;
  height: 280px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar i {
  font-size: 24px;
  color: white;
}

.profile-info h6 {
  color: #333;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.profile-info p {
  color: #6c757d;
  font-size: 11px;
  margin: 0;
}

.profile-stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  color: #4CAF50;
  font-weight: 700;
  font-size: 18px;
}

.stat-label {
  color: #6c757d;
  font-size: 10px;
  font-weight: 500;
}

/* Floating Stars */
.floating-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-stars span {
  position: absolute;
  font-size: 20px;
  animation: float 3s ease-in-out infinite;
}

.floating-stars span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-stars span:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.floating-stars span:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 991px) {
  .feature-headline {
    font-size: 2.2rem;
  }
  
  .feature-illustration-container {
    margin-bottom: 2rem;
  }
  
  .feature-illustration img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .feature-headline {
    font-size: 1.8rem;
  }
  
  .feature-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .feature-tab {
    padding: 8px 12px;
    font-size: 0.75rem;
    flex: 1;
    min-width: 120px;
  }
  
  .feature-illustration-container {
    height: auto;
    margin-bottom: 2rem;
  }
  
  .feature-illustration img {
    width: 100% !important;
    max-width: 250px !important;
    height: auto !important;
  }
  
  .phone-mockup,
  .recipe-book,
  .profile-mockup {
    transform: none;
  }
  
  .tab-title {
    font-size: 1.25rem;
  }
  
  .tab-description {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    padding: 8px 12px;
  }
  
  .highlight-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .feature-headline {
    font-size: 1.5rem;
  }
  
  .feature-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .feature-tab {
    width: 100%;
    text-align: center;
  }
  
  .feature-illustration img {
    max-width: 200px !important;
  }
  
  .tab-title {
    font-size: 1.1rem;
  }
  
  .tab-description {
    font-size: 0.85rem;
  }
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer .bg-success {
    margin-top: -30px;
    padding: 1.5rem !important;
  }
  
  .footer .bg-success h3 {
    font-size: 1.25rem;
  }
  
  .footer .bg-success p {
    font-size: 0.9rem;
  }
  
  .footer .d-flex.flex-column.flex-sm-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .footer .d-flex.flex-column.flex-sm-row img {
    width: 120px !important;
    height: auto !important;
  }
  
  .footer .col-md-6.mb-4 {
    text-align: center;
  }
  
  .footer .d-flex.gap-3 {
    justify-content: center;
  }
  
  .footer .col-md-6 .row {
    text-align: center;
  }
  
  .footer .col-md-6 .row .col-md-6 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .footer .bg-success {
    margin-top: -20px;
    padding: 1rem !important;
    border-radius: 20px !important;
  }
  
  .footer .bg-success h3 {
    font-size: 1.1rem;
  }
  
  .footer .bg-success p {
    font-size: 0.85rem;
  }
  
  .footer .d-flex.flex-column.flex-sm-row img {
    width: 100px !important;
  }
  
  .footer .container-fluid.bg-dark {
    padding: 2rem 0 0 0 !important;
  }
  
  .footer .text-muted {
    font-size: 0.85rem;
  }
  
  .footer .small {
    font-size: 0.75rem;
  }
}

/* General Mobile Responsive Improvements */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  /* Improve text readability on mobile */
  body {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Better touch targets */
  button, .btn, a {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improve spacing for mobile */
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .col, .col-md-6, .col-lg-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1rem !important;
  }
  
  .mb-5 {
    margin-bottom: 1.5rem !important;
  }
  
  body {
    font-size: 0.9rem;
  }
  
  /* Stack elements vertically on very small screens */
  .d-flex {
    flex-direction: column !important;
  }
  
  .d-flex.flex-row {
    flex-direction: row !important;
  }
  
  /* Center align text on mobile */
  .text-start {
    text-align: center !important;
  }
  
  .text-md-start {
    text-align: center !important;
  }
  
  .text-lg-start {
    text-align: center !important;
  }
}

/* Responsive Styles for Sustainable Food Section */
@media (max-width: 768px) {
  .quote-section h2 {
    font-size: 2rem;
  }
  
  .quote-section p {
    font-size: 0.95rem;
  }
  
  .quote-section .cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .quote-section img {
    max-width: 280px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .quote-section h2 {
    font-size: 1.5rem;
  }
  
  .quote-section p {
    font-size: 0.85rem;
  }
  
  .quote-section .cta-button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .quote-section img {
    max-width: 250px;
  }
}