/*
* Fasting Calendar - Enhanced Main Stylesheet
* Version: 2.0.0
* Author: Fasting Calendar Team
*/

/*--------------------------------------------------------------
# General - Enhanced with Vibrant Colors
--------------------------------------------------------------*/
:root {
  --primary-color: #FF7722; /* Bhagwa/Saffron color */
  --primary-light: #FF9955; /* Lighter saffron */
  --primary-dark: #E85C00; /* Darker saffron */
  --secondary-color: #138808; /* India green */
  --accent-color: #FFD700; /* Golden yellow instead of white */
  --text-color: #333333;
  --light-text: #777777;
  --bg-color: #ffffff;
  --light-bg: #FFF7F0; /* Light saffron tint for backgrounds */
  --dark-bg: #2C1810; /* Darker brown for better contrast */
  --border-color: #e9ecef;
  --border-radius: 12px; /* More rounded corners */
  --box-shadow: 0 8px 25px rgba(255, 119, 34, 0.15); /* Saffron-tinted shadows */
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1rem;
  color: var(--light-text);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn {
  border-radius: 25px; /* More rounded buttons */
  padding: 12px 30px; /* Larger padding */
  font-weight: 500;
  transition: var(--transition);
  text-transform: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 119, 34, 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 34, 0.4) !important;
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--light-text);
}

section {
  padding: 100px 0; /* More padding */
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation - Enhanced with Backdrop Blur
--------------------------------------------------------------*/
.navbar {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(255, 119, 34, 0.1);
  transition: var(--transition);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-brand::before {
  content: "🪔";
  font-size: 2rem;
  margin-right: 10px;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px rgba(255, 119, 34, 0.5)); }
  to { filter: drop-shadow(0 0 15px rgba(255, 119, 34, 0.8)); }
}

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
  padding: 8px 15px;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  border-radius: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(255, 119, 34, 0.1);
}

.navbar-nav .btn {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Hero Section - Enhanced with Patterns and Animations
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-60px) translateY(-60px); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero p.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-buttons .btn {
  margin-right: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  padding: 12px 30px;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/*--------------------------------------------------------------
# Page Header - Enhanced with Decorative Elements
--------------------------------------------------------------*/
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "🪔";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  opacity: 0.3;
  animation: glow 2s infinite alternate;
}

.page-header h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: transparent;
  display: inline-flex;
  justify-content: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Features Section - Enhanced Cards with Animations
--------------------------------------------------------------*/
.features {
  background-color: var(--bg-color);
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 119, 34, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# How It Works Section - Enhanced with Background Pattern
--------------------------------------------------------------*/
.how-it-works {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.how-it-works::before {
  content: "ॐ";
  position: absolute;
  font-size: 300px;
  color: rgba(255, 119, 34, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 25px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-card h3 {
  margin-bottom: 15px;
}

.step-card img {
  margin-top: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Testimonials - Enhanced with Quote Styling
--------------------------------------------------------------*/
.testimonials {
  background-color: var(--bg-color);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  margin-bottom: 30px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--light-text);
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.user h5 {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--text-color);
}

.user span {
  font-size: 0.85rem;
  color: var(--light-text);
}

/*--------------------------------------------------------------
# Download Section - Enhanced with Decorative Elements
--------------------------------------------------------------*/
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "🪔 🪔 🪔 🪔 🪔";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2rem;
  opacity: 0.3;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.download h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.download p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 1rem;
  justify-content: center;
}

.app-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: white;
}

.app-badge img {
  height: 50px;
  transition: var(--transition);
}

.app-badge:hover img {
  transform: scale(1.05);
}

.web-app p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# FAQ Section - Modern Accordion Design
--------------------------------------------------------------*/
.faq {
  background-color: var(--light-bg);
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-button {
  background: white;
  border: none;
  font-weight: 600;
  color: var(--text-color);
  padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-body {
  padding: 25px;
  background: white;
  color: var(--light-text);
}

/*--------------------------------------------------------------
# Newsletter - Enhanced Design
--------------------------------------------------------------*/
.newsletter {
  padding: 80px 0;
  background: var(--bg-color);
}

.newsletter-inner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 50px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.newsletter h3 {
  color: white;
  margin-bottom: 15px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter-form .form-control {
  height: 50px;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  height: 50px;
}

/*--------------------------------------------------------------
# Footer - Enhanced with Better Styling
--------------------------------------------------------------*/
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-about h4,
.footer-links h5,
.footer-contact h5 {
  color: white;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.swadeshi-badge {
  text-align: center;
  margin: 30px 0;
}

.swadeshi-badge .badge-content {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 119, 34, 0.2);
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 119, 34, 0.3);
}

.swadeshi-badge img {
  height: 24px;
  margin-right: 10px;
}

.swadeshi-badge span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Contact Info - Enhanced Cards
--------------------------------------------------------------*/
.contact-info {
  background-color: var(--bg-color);
}

.info-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
}

.info-card h3 {
  margin-bottom: 15px;
}

.info-card p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Form - Enhanced Styling
--------------------------------------------------------------*/
.contact-form {
  background-color: var(--light-bg);
}

.form-container {
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
  display: block;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 119, 34, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  padding: 12px 30px;
}

/*--------------------------------------------------------------
# Responsive Enhancements
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    text-align: center;
  }
  
  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
  
  .app-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .newsletter-inner {
    padding: 30px 20px;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .form-control {
    border-radius: 25px !important;
    margin-bottom: 15px;
  }
  
  .btn {
    border-radius: 25px !important;
    width: 100%;
  }
}

/* Add these for missing styles from original CSS */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
}

/* Additional enhancements for better visual appeal */
.feature-tabs {
  margin-bottom: 40px;
}

.feature-tabs .nav-link {
  border-radius: 25px;
  padding: 10px 20px;
  margin: 0 5px 10px;
  color: var(--text-color);
  transition: var(--transition);
}

.feature-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 40px;
  font-size: 0.85rem;
  transform: rotate(45deg);
  font-weight: 500;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light-text);
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--light-text);
}

.pricing-features li i {
  margin-right: 10px;
}

.pricing-features li.disabled {
  color: var(--border-color);
}

.pricing-footer {
  margin-top: auto;
}

.annual-pricing {
  text-align: center;
  margin-top: 50px;
}

.annual-badge {
  display: inline-block;
  background-color: rgba(255, 119, 34, 0.1);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  padding: 60px 0;
}

.cta h2 {
  color: white;
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Team Section Enhancements */
.team-section {
  background-color: var(--light-bg);
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image img {
  width: 100%;
  height: auto;
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h4 {
  margin-bottom: 5px;
}

.member-info span {
  display: block;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-info p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.member-info .social-links {
  justify-content: center;
  margin-top: 15px;
}

.member-info .social-links a {
  background-color: rgba(255, 119, 34, 0.1);
  color: var(--primary-color);
}

/* Timeline Enhancements */
.milestones {
  background-color: var(--bg-color);
}

.timeline {
  position: relative;
  padding: 30px 0;
}

.timeline:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--primary-light);
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content:before {
  content: "";
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
}

.timeline-content h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.timeline-content.right {
  margin-left: auto;
}

.timeline-content:not(.right):before {
  right: -10px;
}

.timeline-content.right:before {
  left: -10px;
}

/* Value Cards */
.our-values {
  background-color: var(--bg-color);
}

.value-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  margin-bottom: 30px;
  transition: var(--transition);
  background: white;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
}

/* Mission Section */
.our-mission {
  background-color: var(--light-bg);
}

.mission-content {
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-content h3 {
  margin-bottom: 20px;
}

/* Story Section */
.our-story {
  background-color: var(--bg-color);
}

.story-content {
  margin-bottom: 30px;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Support Hours */
.support-hours {
  background-color: var(--light-bg);
}

.support-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.support-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hours-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 500;
}

.hours-list .time {
  color: var(--light-text);
}

.note {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-style: italic;
}

/* Map Section */
.map-section {
  background-color: var(--bg-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Connect Section */
.connect-section {
  background-color: var(--light-bg);
  padding-bottom: 100px;
}

.connect-card {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.connect-content h3 {
  margin-bottom: 15px;
}

.connect-content p {
  margin-bottom: 20px;
}

.connect-content .social-links {
  flex-direction: column;
  align-items: flex-start;
}

.connect-content .social-link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
  transition: var(--transition);
  text-decoration: none;
}

.connect-content .social-link i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 119, 34, 0.1);
  border-radius: 50%;
  margin-right: 15px;
  color: var(--primary-color);
  transition: var(--transition);
}

.connect-content .social-link:hover {
  color: var(--primary-color);
}

.connect-content .social-link:hover i {
  background-color: var(--primary-color);
  color: white;
}

.newsletter-form h4 {
  margin-bottom: 15px;
}

.newsletter-form p {
  margin-bottom: 20px;
}

/* Feature List Enhancements */
.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 8px 0;
}

.feature-list i {
  color: var(--primary-color);
  margin-right: 10px;
}

.feature-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* All Features Section */
.all-features {
  background-color: var(--light-bg);
}

.all-features .feature-card {
  background-color: white;
  text-align: left;
  padding: 30px;
}

.all-features .feature-card h4 {
  margin-bottom: 15px;
}

.all-features .feature-card ul {
  list-style: none;
  padding-left: 0;
}

.all-features .feature-card li {
  padding: 5px 0;
  color: var(--light-text);
}

/* Enhanced Responsive Design */
@media (max-width: 1199px) {
  .timeline:before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .timeline-content.right {
    margin-left: 60px;
  }
  
  .timeline-content:before,
  .timeline-content.right:before {
    left: -10px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-nav .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .feature-content {
    margin-bottom: 30px;
  }
  
  .download-content {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .app-badges {
    justify-content: center;
  }
  
  .cta {
    text-align: center;
  }
  
  .cta .btn {
    margin-top: 20px;
  }
  
  .story-content {
    margin-bottom: 30px;
  }
  
  .support-card {
    text-align: center;
  }
  
  .connect-content {
    margin-bottom: 40px;
  }
  
  .connect-content .social-links {
    align-items: center;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p.lead {
    font-size: 1.1rem;
  }
  
  .feature-tabs .nav-link {
    margin-bottom: 10px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .mission-content {
    padding: 30px;
  }
  
  .hours-list li {
    flex-direction: column;
  }
  
  .hours-list .time {
    margin-top: 5px;
  }
  
  .connect-card {
    padding: 30px;
  }
  
  .form-container {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .btn {
    padding: 8px 20px;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .form-container {
    padding: 25px;
  }
}
/* Missing App Mockup CSS - Add this to your style.css */

/* App Mockup Container */
.hero-image,
.app-mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Create CSS-based Phone Mockup */
.app-mockup,
.css-phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  border-radius: 40px;
  padding: 20px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.5);
  animation: phoneFloat 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes phoneFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  33% { 
    transform: translateY(-10px) rotate(1deg); 
  }
  66% { 
    transform: translateY(-20px) rotate(-1deg); 
  }
}

/* Phone Screen */
.mockup-screen,
.css-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

/* Phone Notch */
.mockup-screen::before,
.css-phone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  opacity: 0.8;
}

/* App Interface */
.mockup-content,
.css-phone-content {
  position: absolute;
  top: 40px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

/* App Header */
.mockup-header,
.css-app-header {
  height: 15px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Calendar Grid */
.mockup-calendar,
.css-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 20px;
}

/* Calendar Days */
.mockup-day,
.css-calendar-day {
  height: 30px;
  background: var(--light-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-color);
  font-weight: 500;
}

/* Special Festival Days */
.mockup-day:nth-child(7n+1),
.css-calendar-day:nth-child(7n+1) { 
  background: rgba(255, 119, 34, 0.2); 
}

.mockup-day:nth-child(11),
.mockup-day:nth-child(23),
.css-calendar-day:nth-child(11),
.css-calendar-day:nth-child(23) { 
  background: var(--primary-color); 
  color: white; 
  animation: dayPulse 2s infinite;
  font-weight: bold;
}

.mockup-day:nth-child(17),
.css-calendar-day:nth-child(17) { 
  background: rgba(19, 136, 8, 0.2); 
}

@keyframes dayPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* If you don't have a .hero-image element, create this fallback */
.hero-mockup-fallback {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* Add this class to your hero sections that need the mockup */
.hero-with-mockup {
  position: relative;
  overflow: visible;
}

.hero-with-mockup::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  animation: phoneFloat 6s ease-in-out infinite;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .app-mockup,
  .css-phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .hero-with-mockup::after {
    width: 250px;
    height: 500px;
    right: 5%;
  }
}

@media (max-width: 992px) {
  .app-mockup,
  .css-phone-mockup {
    position: relative;
    margin: 40px auto 0;
    width: 280px;
    height: 560px;
  }
  
  .hero-with-mockup::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .app-mockup,
  .css-phone-mockup {
    width: 250px;
    height: 500px;
  }
}
/*
* Fasting Calendar - Fixed UI Styles
* Add this CSS to fix the existing UI issues
*/

/* Fix countdown section positioning and styling */
.festival-countdown {
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.countdown-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.countdown-container h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 70px;
  padding: 0.5rem;
}

.countdown-item span:first-child {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Fix CSS phone mockup positioning and styling */
.css-phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background: linear-gradient(145deg, #f5f5f5, #ffffff);
  border-radius: 35px;
  padding: 15px;
  box-shadow: 
      0 20px 50px rgba(0,0,0,0.15),
      inset 0 1px 0 rgba(255,255,255,0.8);
  animation: phoneFloat 6s ease-in-out infinite;
  z-index: 5;
}

@keyframes phoneFloat {
  0%, 100% { 
      transform: translateY(0px) rotate(0deg); 
  }
  33% { 
      transform: translateY(-8px) rotate(0.5deg); 
  }
  66% { 
      transform: translateY(-15px) rotate(-0.5deg); 
  }
}

.css-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.css-phone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  opacity: 0.8;
}

.css-phone-content {
  position: absolute;
  top: 30px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: white;
  border-radius: 18px;
  padding: 15px;
  overflow: hidden;
}

.css-app-header {
  height: 12px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 8px;
  margin-bottom: 15px;
}

.css-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-top: 15px;
}

.css-calendar-day {
  height: 24px;
  background: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.css-calendar-day:nth-child(7n+1) { 
  background: rgba(255, 119, 34, 0.15); 
  color: var(--primary-color);
}

.css-calendar-day:nth-child(11),
.css-calendar-day:nth-child(23) { 
  background: var(--primary-color); 
  color: white; 
  animation: dayPulse 2s infinite;
  font-weight: 600;
  transform: scale(1);
}

.css-calendar-day:nth-child(17) { 
  background: rgba(19, 136, 8, 0.15);
  color: var(--secondary-color);
}

@keyframes dayPulse {
  0%, 100% { 
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 119, 34, 0.4);
  }
  50% { 
      transform: scale(1.05);
      box-shadow: 0 0 0 3px rgba(255, 119, 34, 0.1);
  }
}

/* Fix hero section layout */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 2rem;
}

/* Fix festival decorations positioning */
.festival-decoration {
  position: absolute;
  font-size: 2rem;
  animation: festivalFloat 4s ease-in-out infinite;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.festival-decoration:nth-child(1) { 
  top: 15%; 
  left: 8%; 
  animation-delay: 0s; 
}

.festival-decoration:nth-child(2) { 
  top: 25%; 
  right: 10%; 
  animation-delay: 1s; 
}

.festival-decoration:nth-child(3) { 
  bottom: 30%; 
  left: 15%; 
  animation-delay: 2s; 
}

.festival-decoration:nth-child(4) { 
  bottom: 20%; 
  right: 8%; 
  animation-delay: 3s; 
}

@keyframes festivalFloat {
  0%, 100% { 
      transform: translateY(0px) rotate(0deg);
      opacity: 0.4;
  }
  50% { 
      transform: translateY(-10px) rotate(5deg);
      opacity: 0.6;
  }
}

/* Fix CSS Indian Flag */
.css-indian-flag {
  position: relative;
  width: 24px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  border-radius: 2px;
  vertical-align: middle;
}

.css-indian-flag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      #FF9933 0%, #FF9933 33.33%,
      white 33.33%, white 66.66%,
      #138808 66.66%, #138808 100%);
}

.css-indian-flag::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #000080;
  opacity: 0.8;
  background: transparent;
}

/* Fix user avatar styling */
.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.2);
}

/* Fix CSS Om Symbol */
.css-om-symbol {
  position: relative;
  font-family: "Arial Unicode MS", "Noto Sans", sans-serif;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
  transition: var(--transition);
}

.css-om-symbol::before {
  content: "ॐ";
  font-size: 2rem;
  color: white;
  animation: omGlow 3s infinite alternate;
}

@keyframes omGlow {
  from { 
      filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
      transform: scale(1);
  }
  to { 
      filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
      transform: scale(1.02);
  }
}

/* Responsive fixes */
@media (max-width: 991px) {
  .hero-image {
      margin-top: 3rem;
      order: 2;
  }
  
  .hero .col-lg-6:first-child {
      order: 1;
      text-align: center;
      margin-bottom: 2rem;
  }
  
  .css-phone-mockup {
      width: 250px;
      height: 500px;
  }
  
  .festival-countdown {
      order: 3;
      margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
      padding-top: 100px;
      padding-bottom: 60px;
  }
  
  .css-phone-mockup {
      width: 220px;
      height: 440px;
  }
  
  .countdown-timer {
      gap: 1rem;
  }
  
  .countdown-item span:first-child {
      font-size: 1.5rem;
  }
  
  .countdown-container {
      padding: 1.5rem;
      margin: 0 1rem;
  }
  
  .festival-decoration {
      font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .countdown-timer {
      gap: 0.75rem;
  }
  
  .countdown-item {
      min-width: 50px;
      padding: 0.25rem;
  }
  
  .countdown-item span:first-child {
      font-size: 1.25rem;
  }
  
  .countdown-label {
      font-size: 0.75rem;
  }
  
  .css-phone-mockup {
      width: 200px;
      height: 400px;
  }
  
  .css-calendar-day {
      height: 20px;
      font-size: 7px;
  }
}
/* Fix for page header diya decoration */
.page-header::before {
  content: "🪔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.1;
  animation: glow 3s infinite alternate;
  pointer-events: none;
  z-index: 1;
}

/* Remove duplicate diyas if they exist */
.page-header .festival-decoration {
  display: none;
}