                                                                                          /* ============================================
   Flavorade India - Consolidated Styles
   ============================================ */

:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --secondary: #FFC107;
  --secondary-dark: #FFB300;
  --light-bg: #ffffff;
  --accent: #FFD54F;
  --dark-bg: #1a1a1a;
  --text-light: #ffffff;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --shadow: rgba(0,0,0,0.1);
  --shadow-hover: rgba(0,0,0,0.15);
  --gradient-primary: linear-gradient(135deg, #d32f2f 0%, #FFC107 100%);
  --gradient-secondary: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Navbar Styles
   ============================================ */
.navbar {
  background: white;
  box-shadow: 0 2px 20px var(--shadow);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
  font-size: 1.8rem;
  text-shadow: none;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-item {
  list-style: none;
}

.navbar-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  white-space: nowrap;
  display: block;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.search-btn {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
  position: relative;
  padding: 0.6rem 1.2rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 42px;
}

.search-btn:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.search-btn i {
  font-size: 1.1rem;
  color: white;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10000;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-item {
    width: 100%;
    text-align: center;
  }

  .navbar-link {
    display: block;
    padding: 0.75rem;
  }

  .search-btn {
    margin: 0.5rem auto;
  }
}

/* ============================================
   Side Social Bar
   ============================================ */
.side-social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 5px;
  background: rgba(255,255,255,0.95);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  border-radius: 0 8px 8px 0;
}

.side-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.side-social-link i {
  font-size: 18px;
}

.side-social-link.facebook { background-color: #1877f2; }
.side-social-link.facebook:hover { box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5); }
.side-social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.side-social-link.twitter { background-color: #000000; }
.side-social-link.linkedin { background-color: #0077b5; }
.side-social-link.youtube { background-color: #ff0000; }

@media (max-width: 991px) {
  .side-social-bar {
    display: none;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: white;
  min-height: 10vh;
  color: var(--text-dark);
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.35rem;
  max-width: 720px;
  color: var(--text-dark);
  font-weight: 300;
}

/* ============================================
   Products Section
   ============================================ */
.section-padding {
  padding: 80px 0;
}

.bg-white {
  background-color: white;
}

.section-title {
  position: relative;
  font-weight: 700;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: var(--text-dark);
}

.section-title:after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #1f2937;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 12px;
}

.avatar-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.avatar-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.avatar-green { background: linear-gradient(135deg, #10b981, #047857); }

.testimonial-name {
  color: white;
  font-weight: 600;
  margin: 0;
}

.testimonial-title {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star-rating i {
  color: #fbbf24;
}

.testimonial-text {
  color: #d1d5db;
  margin-bottom: 12px;
}

/* ============================================
   Contact Now Banner
   ============================================ */
.contact-banner {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('images/banner6.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
  color: white;
}

.btn-contact {
  background: var(--gradient-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

/* ============================================
   About Section
   ============================================ */
#about {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

#about .section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

#about .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

#about .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#about .card-body {
  padding: 2rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
  padding: 100px 0 60px;
}

.contact-card {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1px solid rgba(211, 47, 47, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(211, 47, 47, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.25rem;
}

.contact-card h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* Map Container */
.map-container {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.1);
}

.map-container iframe {
  border-radius: 12px;
  width: 100%;
}

/* ============================================
   Social Sidebar
   ============================================ */
.social-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.social-link i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .social-sidebar {
    right: 15px;
    top: auto;
    bottom: 80px;
    transform: none;
    flex-direction: row;
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.scroll-to-top-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-to-top-btn i {
  font-size: 20px;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
  background-color: #fce7f3;
  color: #374151;
  padding: 4rem 1.5rem 1.5rem;
  border-top: 1px solid #d1d5db;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #d1d5db;
}

.footer-brand img {
  width: 10rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #999;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-0.5rem);
}

.fb-link { background-color: #1877f2; }
.twitter-link { background-color: black; }
.ig-link { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.yt-link { background-color: #ff0000; }

.footer-links h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #dc2626;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #dc2626;
}

.footer-contact h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #dc2626;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    grid-template-columns: 2fr 1fr;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.p-4 { padding: 1.5rem; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }

@media (max-width: 991px) {
  .col-lg-6 { width: 50%; }
  .col-lg-4 { width: 33.333%; }
}

@media (max-width: 767px) {
  .col-md-6 { width: 50%; }
  .col-md-4 { width: 33.333%; }
}

@media (max-width: 575px) {
  .col-6 { width: 50%; }
}

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.text-primary { color: var(--primary); }
.bg-light { background-color: #f8f9fa; }

/* ============================================
   CUSTOMER SEGMENTS PAGE - REDESIGNED
   ============================================ */

/* Animated Background */
.segments-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  overflow: hidden;
}

.segments-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(245, 124, 0, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 40% 40%, rgba(156, 39, 176, 0.2) 0%, transparent 30%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Floating particles */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  border: 2px solid var(--secondary);
  top: 60%;
  right: -3%;
  transform: rotate(45deg);
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  border: 2px solid #9c27b0;
  border-radius: 30%;
  bottom: 20%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-30px) rotate(5deg); 
  }
  50% { 
    transform: translateY(0) rotate(0deg); 
  }
  75% { 
    transform: translateY(30px) rotate(-5deg); 
  }
}

/* Hero Section - Segments */
.segments-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.segments-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(15, 12, 41, 0.9) 0%, rgba(48, 43, 99, 0.7) 100%);
  z-index: 0;
}

.hero-content-new {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge-new i {
  color: var(--secondary);
}

.hero-title-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title-new .highlight-new {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-title-new .highlight-new::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb);
  border-radius: 2px;
}

.hero-desc-new {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* Stats with animation */
.hero-stats-new {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.stat-item-new {
  text-align: center;
  position: relative;
}

.stat-item-new::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
}

.stat-item-new:last-child::after {
  display: none;
}

.stat-number-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: inline-block;
}

.stat-label-new {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Filter Section - Glassmorphism */
.filter-section-new {
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 70px;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 50px;
}

.filter-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.filter-buttons-new {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn-new {
  padding: 12px 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: left 0.4s ease;
  z-index: -1;
}

.filter-btn-new:hover {
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.filter-btn-new:hover::before {
  left: 0;
}

.filter-btn-new.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.filter-btn-new:hover .filter-count,
.filter-btn-new.active .filter-count {
  background: rgba(255,255,255,0.3);
}

/* Glass Cards Grid */
.segments-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 20px 100px;
  position: relative;
  z-index: 1;
}

.segments-header {
  text-align: center;
  margin-bottom: 60px;
}

.segments-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.segments-header h2 span {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  perspective: 1000px;
}

/* Glass Card */
.glass-card {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  transition: all 0.5s ease;
}

.glass-card:hover .glass-card-bg {
  opacity: 0.25;
  transform: scale(1.1);
}

/* Card Content */
.glass-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.glass-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: iconShine 3s infinite;
  opacity: 0;
}

.glass-card:hover .glass-card-icon::after {
  opacity: 1;
}

@keyframes iconShine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.glass-card:hover .glass-card-icon {
  transform: rotate(10deg) scale(1.1);
  background: var(--card-gradient);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.glass-card-icon i {
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 1;
}

.glass-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.glass-card:hover .glass-card-title {
  color: white;
}

.glass-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  flex-grow: 1;
}

.glass-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.glass-card-link {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.glass-card:hover .glass-card-link {
  color: white;
  gap: 12px;
}

.glass-card-link i {
  font-size: 0.8rem;
}

.glass-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.glass-card:hover .glass-card-arrow {
  background: var(--card-gradient);
  transform: translate(5px, -5px);
}

/* Card Number */
.glass-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  z-index: 0;
}

/* Card Glow Effect */
.glass-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--card-gradient) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.glass-card:hover .glass-card-glow {
  opacity: 0.15;
}

/* Category-specific colors */
.glass-card[data-category="ghee"] { --card-color: #FF9800; --card-gradient: linear-gradient(135deg, #FF9800, #F57C00); }
.glass-card[data-category="rice"] { --card-color: #8D6E63; --card-gradient: linear-gradient(135deg, #8D6E63, #6D4C41); }
.glass-card[data-category="tea"] { --card-color: #4CAF50; --card-gradient: linear-gradient(135deg, #4CAF50, #388E3C); }
.glass-card[data-category="icecream"] { --card-color: #E91E63; --card-gradient: linear-gradient(135deg, #E91E63, #C2185B); }
.glass-card[data-category="hookah"] { --card-color: #9C27B0; --card-gradient: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.glass-card[data-category="liquor"] { --card-color: #795548; --card-gradient: linear-gradient(135deg, #795548, #5D4037); }
.glass-card[data-category="nutraceutical"] { --card-color: #00BCD4; --card-gradient: linear-gradient(135deg, #00BCD4, #0097A7); }
.glass-card[data-category="beverages"] { --card-color: #009688; --card-gradient: linear-gradient(135deg, #009688, #00796B); }
.glass-card[data-category="tobacco"] { --card-color: #8D6E63; --card-gradient: linear-gradient(135deg, #8D6E63, #6D4C41); }
.glass-card[data-category="bakery"] { --card-color: #FF5722; --card-gradient: linear-gradient(135deg, #FF5722, #E64A19); }
.glass-card[data-category="dairy"] { --card-color: #FFC107; --card-gradient: linear-gradient(135deg, #FFC107, #FFA000); }
.glass-card[data-category="pharma"] { --card-color: #673AB7; --card-gradient: linear-gradient(135deg, #673AB7, #512DA8); }
.glass-card[data-category="savoury"] { --card-color: #607D8B; --card-gradient: linear-gradient(135deg, #607D8B, #455A64); }
.glass-card[data-category="confectionery"] { --card-color: #FF4081; --card-gradient: linear-gradient(135deg, #FF4081, #F50057); }
.glass-card[data-category="chocolate"] { --card-color: #6D4C41; --card-gradient: linear-gradient(135deg, #6D4C41, #4E342E); }

/* Card animations */
.glass-card {
  opacity: 0;
  animation: cardFadeIn 0.6s ease forwards;
}

@keyframes cardFadeIn {
  to { opacity: 1; }
}

.segments-grid .glass-card:nth-child(1) { animation-delay: 0.05s; }
.segments-grid .glass-card:nth-child(2) { animation-delay: 0.1s; }
.segments-grid .glass-card:nth-child(3) { animation-delay: 0.15s; }
.segments-grid .glass-card:nth-child(4) { animation-delay: 0.2s; }
.segments-grid .glass-card:nth-child(5) { animation-delay: 0.25s; }
.segments-grid .glass-card:nth-child(6) { animation-delay: 0.3s; }
.segments-grid .glass-card:nth-child(7) { animation-delay: 0.35s; }
.segments-grid .glass-card:nth-child(8) { animation-delay: 0.4s; }
.segments-grid .glass-card:nth-child(9) { animation-delay: 0.45s; }
.segments-grid .glass-card:nth-child(10) { animation-delay: 0.5s; }
.segments-grid .glass-card:nth-child(11) { animation-delay: 0.55s; }
.segments-grid .glass-card:nth-child(12) { animation-delay: 0.6s; }
.segments-grid .glass-card:nth-child(13) { animation-delay: 0.65s; }
.segments-grid .glass-card:nth-child(14) { animation-delay: 0.7s; }
.segments-grid .glass-card:nth-child(15) { animation-delay: 0.75s; }

/* Hidden class for filtering */
.glass-card.hidden {
  display: none;
}

/* CTA Section */
.cta-section-new {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-content h2 span {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(211, 47, 47, 0.4);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(211, 47, 47, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .segments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .glass-card {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .segments-hero {
    min-height: 60vh;
    padding: 100px 20px 50px;
  }
  
  .hero-stats-new {
    gap: 30px;
  }
  
  .stat-number-new {
    font-size: 2.5rem;
  }
  
  .stat-item-new::after {
    display: none;
  }
  
  .filter-buttons-new {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  
  .filter-btn-new {
    flex-shrink: 0;
  }
  
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .glass-card {
    height: 300px;
  }
  
  .glass-card-icon {
    width: 55px;
    height: 55px;
  }
  
  .glass-card-icon i {
    font-size: 1.4rem;
  }
  
  .glass-card-title {
    font-size: 1.2rem;
  }
  
  .glass-card-desc {
    display: none;
  }
  
  .glass-card-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2.2rem;
  }
  
  .hero-desc-new {
    font-size: 1rem;
  }
  
  .segments-grid {
    grid-template-columns: 1fr;
  }
  
  .glass-card {
    height: 280px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/* ============================================
   BLOG PAGE - REDESIGNED
   ============================================ */

/* Blog Background Pattern */
.blog-bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.blog-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(211, 47, 47, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 30%);
}

/* Blog Hero Section */
.blog-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(211, 47, 47, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.blog-hero-badge i {
  color: var(--secondary);
}

.blog-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-hero-title span {
  background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}

.blog-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.blog-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: blogFloat 15s infinite ease-in-out;
}

.blog-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blog-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.blog-shape-3 {
  width: 200px;
  height: 200px;
  background: #9c27b0;
  top: 50%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes blogFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(10deg); }
  66% { transform: translate(-20px, 20px) rotate(-10deg); }
}

/* Search Box */
.blog-search-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.blog-search-box {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.blog-search-box:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.blog-search-box i {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 12px;
}

.blog-search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 1rem;
  font-family: inherit;
}

.blog-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Category Pills */
.blog-categories {
  padding: 20px 0;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.category-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-pill i {
  font-size: 0.85rem;
}

.category-pill:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.category-pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

/* Main Content */
.blog-main {
  padding: 60px 0;
}

/* Featured Post */
.featured-post {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-post-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-post-content {
  padding: 30px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.featured-category {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.featured-date i {
  margin-right: 6px;
}

.featured-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.featured-stats {
  display: flex;
  gap: 16px;
}

.featured-stats span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.featured-stats i {
  margin-right: 4px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Blog Card */
.blog-card {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.6;
}

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-card-meta i {
  margin-right: 4px;
}

.blog-card-hover {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(10px, 10px);
  transition: all 0.3s ease;
}

.blog-card:hover .blog-card-hover {
  opacity: 1;
  transform: translate(0, 0);
}

.blog-card-link {
  color: white;
  font-size: 1rem;
}

/* Load More */
.blog-load-more {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.widget-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.category-item:hover {
  background: transparent;
  color: white;
  transform: translateX(5px);
}

.category-item i {
  margin-right: 10px;
  font-size: 0.9rem;
}

.category-item .count {
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.category-item:hover .count {
  background: rgba(255, 255, 255, 0.2);
}

/* Recent Posts */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.recent-post:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.recent-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.recent-post-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 14px;
  background: #f8f9fa;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
}

.newsletter-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.newsletter-icon i {
  color: white;
  font-size: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

/* Blog CTA */
.blog-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative;
  overflow: hidden;
}

.blog-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 40%);
}

.blog-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.blog-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.blog-cta-icon i {
  color: white;
  font-size: 2rem;
}

.blog-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.blog-cta h2 span {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(211, 47, 47, 0.4);
}

.blog-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(211, 47, 47, 0.5);
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 140px 0 60px;
  }
  
  .category-pills {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  
  .category-pill {
    flex-shrink: 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-post-image {
    height: 250px;
  }
  
  .featured-title {
    font-size: 1.4rem;
  }
  
  .blog-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .blog-hero-title {
    font-size: 2rem;
  }
  
  .blog-hero-desc {
    font-size: 1rem;
  }
  
  .featured-post-content {
    padding: 20px;
  }
  
  .featured-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .blog-cta-content {
    padding: 0 20px;
  }
}

/* Animation for filtering */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide Search Modal on all pages */
.search-modal {
  display: none !important;
}

/* Thicker border for product name cards */
.product-name-border {
  border-left-width: 6px !important;
}

/* ============================================
   About Section Animation & Hover Effects
   ============================================ */

/* About Section Container */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(211, 47, 47, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 30%);
  pointer-events: none;
}

/* Animation for About Section elements */
.about-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeInUp 0.8s ease forwards;
}

@keyframes aboutFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Card Styles */
.about-card {
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left-color: var(--primary);
}

/* About Card Hover - Legacy and Milestones */
.about-card:hover {
  background: white !important;
}

/* Mission & Vision Card Hover */
.about-card-hover {
  transition: all 0.4s ease;
}

.about-card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-card-hover:hover .card-title {
  color: var(--primary);
}

/* Feature Cards - Why Choose Us */
.about-feature-card {
  background: white;
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.05), rgba(255, 193, 7, 0.05));
  transition: left 0.4s ease;
}

.about-feature-card:hover::before {
  left: 0;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

/* Feature Icon Animation */
.about-feature-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(255, 193, 7, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.about-feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scale(1.1) rotate(10deg);
}

.about-feature-card:hover .feature-icon i {
  color: white !important;
  transform: scale(1.2);
}

.about-feature-card .feature-icon i {
  transition: all 0.4s ease;
}

/* Section Title Animation */
.about-section .section-title {
  position: relative;
  display: inline-block;
}

.about-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.6s ease;
}

.about-section .section-title:hover::after {
  width: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-card:hover,
  .about-card-hover:hover,
  .about-feature-card:hover {
    transform: translateY(-5px);
  }
  
  .about-feature-card .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .about-feature-card .feature-icon i {
    font-size: 1.2rem !important;
  }
}

/* Key Milestones List Items Hover Effect */
.about-card ul.list-unstyled li {
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: default;
  border-left: 3px solid transparent;
}

.about-card ul.list-unstyled li:hover {
  background: white;
  border-left-color: var(--primary);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-card ul.list-unstyled li strong {
  color: var(--primary);
  transition: color 0.3s ease;
}

.about-card ul.list-unstyled li:hover strong {
  color: var(--secondary-dark);
}

/* Fix for contact form submit button visibility */
#contactForm button[type="submit"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1 !important;
  position: relative !important;
  background: linear-gradient(135deg, #d32f2f 0%, #f57c00 100%) !important;
  color: white !important;
  border: none !important;
  padding: 14px 40px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  margin-top: 20px !important;
}

#contactForm button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4) !important;
}

/* ============================================
   CONTACT PAGE - REDESIGNED
   ============================================ */

/* Contact Background Pattern */
.contact-bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(211, 47, 47, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.contact-hero-badge i {
  color: var(--secondary);
}

.contact-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-hero-title span {
  background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: blogFloat 15s infinite ease-in-out;
}

.contact-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.contact-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.contact-shape-3 {
  width: 200px;
  height: 200px;
  background: #9c27b0;
  top: 50%;
  left: 10%;
  animation-delay: -10s;
}

/* Contact Cards Section */
.contact-cards-section {
  padding: 60px 0 40px;
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), #f57c00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.contact-info-icon i {
  color: white;
  font-size: 1.5rem;
}

.contact-info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-info-link:hover {
  color: var(--primary-dark);
}

.contact-info-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 0;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-form-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Form Controls */
.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
  background: white;
}

.contact-form-wrapper .form-floating label {
  color: var(--text-muted);
  padding: 14px 16px;
}

.contact-form-wrapper .form-floating > .form-control:focus ~ label,
.contact-form-wrapper .form-floating > .form-select:focus ~ label {
  color: var(--primary);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
  width: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.4);
}

/* Map Wrapper */
.contact-map-wrapper {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper .map-container iframe {
  border-radius: 16px;
  width: 100%;
}

.map-info {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.map-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.map-info h4 i {
  margin-right: 8px;
}

.map-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 40%);
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-cta-icon i {
  color: white;
  font-size: 2rem;
}

.contact-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.contact-cta h2 span {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(211, 47, 47, 0.4);
}

.contact-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(211, 47, 47, 0.5);
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-hero {
    padding: 140px 0 60px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-cta h2 {
    font-size: 2rem;
  }
  
  .contact-info-card {
    padding: 25px 15px;
  }
}

@media (max-width: 576px) {
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-hero-desc {
    font-size: 1rem;
  }
  
  .contact-submit-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}
