/* ShanviKart Custom Stylesheet */
/* Brand Colors:
   Primary Green: #0B7A38
   Dark Green: #065A2A
   Primary Orange: #F57C00
   Light Green: #E8F5E9
   White: #FFFFFF
   Light Background: #F8FAFC
   Dark Text: #1F2937
*/

:root {
  --primary-green: #0B7A38;
  --dark-green: #065A2A;
  --primary-orange: #F57C00;
  --light-green: #E8F5E9;
  --white: #FFFFFF;
  --light-bg: #F8FAFC;
  --dark-text: #1F2937;
  --text-muted: #6B7280;

  /* Font Families */
  --font-primary: 'Outfit', sans-serif;

  /* Transition speed */
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}



/* General Styles */
body {
  font-family: var(--font-primary);
  background-color: var(--light-bg);
  color: var(--dark-text);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  line-height: 1.7;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--light-green);
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navbar Styling */
.navbar {
  padding: 15px 0;
  transition: var(--transition-normal);
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--white) !important;
}



.navbar-brand img {
  height: 45px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 0px solid var(--primary-green);
  transition: var(--transition-normal);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  transition: var(--transition-normal);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}



/* Primary CTA Button style */
.btn-download-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(11, 122, 56, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-download-cta:hover {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #E65100 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.35);
  color: var(--white) !important;
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 15px;
}

.hero-slide-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

.hero-slide-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.hero-slide-content .hero-buttons {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
}

.swiper-slide-active .hero-slide-content h1,
.swiper-slide-active .hero-slide-content p,
.swiper-slide-active .hero-slide-content .hero-buttons {
  transform: translateY(0);
  opacity: 1;
}

.btn-hero-primary {
  background-color: var(--primary-green);
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid var(--primary-green);
  transition: var(--transition-normal);
  margin-right: 15px;
}

.btn-hero-primary:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: transparent;
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid var(--white);
  transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
  background-color: var(--white);
  color: var(--primary-green) !important;
  transform: translateY(-2px);
}

/* Custom Swiper Navigation/Pagination styling */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white) !important;
  background-color: rgba(11, 122, 56, 0.4);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-green);
}

.swiper-pagination-bullet {
  background: var(--white) !important;
  opacity: 0.5 !important;
  width: 10px !important;
  height: 10px !important;
  transition: var(--transition-normal);
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--primary-orange) !important;
  width: 25px !important;
  border-radius: 5px !important;
}

/* Responsive adjust for Hero Content */
@media (max-width: 768px) {
  .hero-slide-content h1 {
    font-size: 2.2rem;
  }

  .hero-slide-content p {
    font-size: 1.1rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

/* Section Common Styling */
.section-padding {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-title-wrapper {
  margin-bottom: 50px;
}

.section-tagline {
  color: var(--primary-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-green);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.section-title-left::after {
  left: 0;
  transform: translateX(0);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Us Section */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition-slow);
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3);
  z-index: 2;
}

/* Stats Counter Section */
.stats-section {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 60px 0;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-title {
  font-size: 1rem;
  color: var(--light-green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section */
.feature-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 35px 25px;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Glassmorphism Effect for Feature Cards */
.feature-card-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}



.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-green) 0%, rgba(232, 245, 233, 0.2) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-normal);
}



.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 122, 56, 0.1);
  border-color: rgba(11, 122, 56, 0.15);
}



.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-green);
  color: var(--white);
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-green);
}



.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* App Screens Section */
.screens-section {
  background-color: var(--light-bg);
}

.screens-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Phone Mockup Frame Overlay styling */
.phone-mockup-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 640px;
  border: 12px solid #27272a;
  border-radius: 40px;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  background-color: transparent;
}

/* Notch */
.phone-mockup-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 25px;
  background-color: #27272a;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.screens-slider {
  padding: 50px 0;
}

.screen-slide {
  transition: var(--transition-normal);
  transform: scale(0.8);
  opacity: 0.5;
  filter: blur(1px);
}

/* Active Screen focus effect */
.swiper-slide-active.screen-slide,
.swiper-slide-duplicate-active.screen-slide {
  transform: scale(1);
  opacity: 1;
  filter: none;
  z-index: 5;
}

.screen-img-wrapper {
  width: 296px;
  height: 592px;
  border-radius: 28px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 2px solid transparent;
}

.screen-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Download App Section */
.download-section {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 0 15px;
}

.download-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--primary-orange) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: #111827 !important;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-store:hover {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 124, 0, 0.35);
}

.btn-store i {
  font-size: 2rem;
  margin-right: 12px;
}

.store-text-small {
  font-size: 0.75rem;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

.store-text-large {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.download-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-mockup-image {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  animation: floatApp 4s ease-in-out infinite;
  border-radius: 20px;
}

@keyframes floatApp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Contact Section */
.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.contact-info-item:hover .contact-info-icon {
  background-color: var(--primary-orange);
  color: var(--white);
}

.contact-info-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-green);
}



.contact-info-text p,
.contact-info-text a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin: 0;
  transition: var(--transition-normal);
}

.contact-info-text a:hover {
  color: var(--primary-orange);
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.form-floating>.form-control {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--light-bg);
  color: var(--dark-text);
}



.form-floating>.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.25rem rgba(11, 122, 56, 0.15);
  background-color: var(--white);
}

.form-floating>label {
  color: var(--text-muted);
}

.btn-submit-enquiry {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 12px;
  width: 100%;
  transition: var(--transition-normal);
  box-shadow: 0 5px 15px rgba(11, 122, 56, 0.2);
}

.btn-submit-enquiry:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.3);
  transform: translateY(-1px);
}

/* Footer Section */
.footer {
  background-color: var(--dark-green) !important;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  height: 50px;
  width: 200px;
  object-fit: contain;
  border-radius: 8px;
  background-color: var(--white);
  padding: 2px;
}

.footer-desc {
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: var(--transition-normal);
}

.footer-social-link:hover {
  background-color: var(--primary-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-widget-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none !important;
  transition: var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-info i {
  color: var(--primary-orange);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 1.1rem;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none !important;
  transition: var(--transition-normal);
}

.footer-contact-info a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Back To Top Button */
#backToTop {
  position: fixed;
  bottom: -60px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: bottom 0.4s ease, background-color 0.3s ease, transform 0.3s ease;
}

#backToTop.show {
  bottom: 25px;
}

#backToTop:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}

/* Internal Pages Styling */
.internal-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.internal-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .internal-card {
    padding: 30px 20px;
  }
}

.policy-section-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.policy-section-title:first-of-type {
  margin-top: 0;
}

/* Delete Account form container styling */
.delete-account-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Custom Alert styling */
.custom-alert {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-alert-warning {
  background-color: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.2);
  color: var(--primary-orange);
}