@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #F25A29;
  --secondary: #FFBD29;
  --bg-light: #EFEFEF;
  --bg-soft: #FFF8D6;
  --white: #FFFFFF;
  --text-main: #7A2E19;
  --text-secondary: #A84D2A;
  --shadow: 0 10px 30px rgba(242, 90, 41, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Navbar */
nav {
  width: 100%;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  animation: navSlide 1.2s ease forwards;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@keyframes navSlide {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  /* Optimized shadow: static or simplified */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.logo img:hover {
  transform: scale(1.1) rotate(2deg);
  /* Removed expensive filter animation */
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeLinks 1.2s ease forwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul li a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.4s, letter-spacing 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a i {
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.3s ease;
}

nav ul li a.active {
  color: var(--primary);
}

nav ul li a:hover i {
  transform: rotate(10deg) scale(1.2);
}

nav ul li a:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

/* Partner Button */
.partner-btn {
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-btn i {
  color: var(--white) !important;
}

.partner-btn:hover {
  background: var(--secondary);
  color: var(--text-main);
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

/* Mobile Menu (Animated Sidebar like Media Page) */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-main);
}

@media (max-width: 900px) {
  nav {
    padding: 15px 20px;
  }

  .menu-btn {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    clip-path: circle(0% at 100% 0);
    transition: 0.5s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    clip-path: circle(140% at 100% 0);
  }
}

/* Caption (Enhanced & Professional) */
.caption {
  text-align: center;
  padding: 140px 20px 60px;
  /* Account for fixed nav */
  background: linear-gradient(to bottom, #FFFFFF 0%, var(--bg-light) 100%);
  position: relative;
  z-index: 1;
}

.caption h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #D9381E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.caption h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--secondary);
  margin: 15px auto 0;
  border-radius: 10px;
}

.caption p {
  color: var(--text-secondary);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 500;
}

/* Services (Connected to Caption) */
.services {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 60px 100px;
  /* Removed top padding to flow from caption */
  background: var(--bg-light);
  overflow: visible;
  /* Changed from hidden to show shadows/glows fully */
  margin-top: -1px;
  /* seamless connection */
}

.service-box {
  flex: 1 1 350px;
  background: linear-gradient(145deg, #ffffff 0%, #FFF5E6 100%);
  border: 1px solid rgba(242, 90, 41, 0.15);
  border-bottom: 5px solid #FF9933;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 20px 40px rgba(242, 90, 41, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeUp 1s forwards;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  will-change: transform;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Decorative circle behind image - Enhanced */
.service-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 189, 41, 0.2) 0%, rgba(242, 90, 41, 0.05) 70%);
  border-radius: 50%;
  opacity: 1;
  z-index: 0;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(242, 90, 41, 0.15), 0 0 0 1px rgba(242, 90, 41, 0.1) inset;
}

.service-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #2c3e50, #F25A29);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.service-box p {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 55%;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.service-img {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 240px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* No movement on hover for image as requested */
.service-box:hover .service-img {
  transform: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Just enhanced shadow */
}

/* Responsive Design for Services */
@media (max-width: 991px) {
  .services {
    padding: 0 30px 80px;
  }
  
  .service-box {
    flex: 1 1 45%; /* 2 per row on tablet */
  }
}

@media (max-width: 768px) {
  .services {
    padding: 0 20px 60px;
    gap: 25px;
  }

  .service-box {
    flex: 1 1 100%; /* Full width on mobile */
    min-height: auto;
    padding: 30px 25px;
    /* Ensure flex direction allows stacking */
    display: flex;
    flex-direction: column;
  }

  .service-box p {
    max-width: 100%; /* Use full width on mobile */
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* Switch image to normal flow on mobile to prevent overlap */
  .service-img {
    position: relative;
    bottom: auto;
    right: auto;
    width: 120px;
    height: 100px;
    align-self: flex-end; /* Align to right */
    margin-top: 10px;
    margin-bottom: -10px; /* Slight adjustment to fit padding */
  }


  
  /* Ensure buttons wrap or position correctly if needed */
  .learn-btn {
    margin-top: 0;
    align-self: flex-start;
  }
  
  /* Re-order items if necessary: Text -> Button -> Image */
  .service-box > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.learn-btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  /* Brighter Gradient */
  color: var(--text-main);
  /* Dark text on bright btn */
  padding: 12px 26px;
  /* Slightly larger */
  border-radius: 50px;
  /* Fully rounded */
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-left: -5px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.learn-btn:hover {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  transform: translate3d(0, -2px, 0);
}

.learn-btn:hover i {
  transform: translateX(6px);
}

/* Hero Section - Original Clean Style */
.hero-section {
  width: 100%;
  min-height: 30vh;
  background: var(--bg-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 140px 20px 60px;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-content {
  z-index: 2;
  color: var(--text-main);
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-underline {
  width: 100px;
  height: 5px;
  background: var(--secondary);
  margin: 0 auto 20px;
  border-radius: 10px;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 500;
  max-width: 700px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(242, 90, 41, 0.2);
  font-size: 1.1rem;
}

.hero-btn:hover {
  background: var(--secondary);
  color: var(--text-main);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 189, 41, 0.4);
}

.hero-btn i {
  transition: transform 0.3s ease;
}

.hero-btn:hover i {
  transform: translateX(5px);
}

/* Floating Elements - Brand Colors */
.floating-dots,
.floating-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.floating-dots {
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  /* Brand Orange Glow */
  background: radial-gradient(circle, rgba(242, 90, 41, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatY 8s ease-in-out infinite;
}

.floating-circle {
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  /* Brand Yellow Glow */
  background: radial-gradient(circle, rgba(255, 189, 41, 0.15) 0%, transparent 70%);
  filter: blur(90px);
  animation: floatX 10s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes floatX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}

/* Brands Section */
.brands-section {
  background: var(--bg-soft);
  color: var(--text-main);
  padding: 100px 50px;
  text-align: center;
  overflow: hidden;
}

.brands-header h2 {
  font-size: 40px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: fadeSlideDown 1s ease forwards;
}

.brands-header p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 60px;
  animation: fadeSlideDown 1.4s ease forwards;
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

.brand-card {
  background: var(--white);
  color: var(--text-main);
  border-radius: 18px;
  padding: 40px 30px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateY(50px);
  border: 1px solid var(--bg-light);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.brand-card:nth-child(1) {
  animation-delay: 0.2s;
}

.brand-card:nth-child(2) {
  animation-delay: 0.4s;
}

.brand-card:nth-child(3) {
  animation-delay: 0.6s;
}

.brand-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.brand-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.brand-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.brand-card:hover .brand-logo {
  transform: rotate(8deg) scale(1.1);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section - Clean & Modern */
.stats-section {
  background: #FFF5EE; /* Light Peach Background */
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.stats-bg-decoration {
  display: none; /* Clean look based on screenshot */
}

.overlay {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(242, 90, 41, 0.1);
  position: relative;
  z-index: 2;
}

/* Decorative Yellow Pill */
.overlay::after {
  content: '';
  display: block;
  width: 60px;
  height: 15px;
  background: var(--secondary);
  border-radius: 20px;
  margin: 50px auto -30px; /* Position below */
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(255, 189, 41, 0.4);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FF9F43; /* Orange/Yellow specific tone */
  background: linear-gradient(135deg, #FF9F43 0%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 5px 10px rgba(255, 159, 67, 0.3));
}

.counter {
  font-size: 3.5rem;
  font-weight: 800;
  color: #5D2E1F; /* Dark Brown Text */
  margin-bottom: 5px;
  line-height: 1.1;
}

.stat p {
  font-size: 1.1rem;
  color: #A84D2A; /* Rust Orange Text */
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.love-text {
  display: none; /* Hide as not in screenshot */
}

/* Food Showcase */
.food-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-soft);
  color: var(--text-main);
  padding: 80px 5%;
  border-radius: 25px;
  margin: 100px auto;
  width: 90%;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.left-content {
  flex: 1 1 45%;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  animation: fadeInUp 1.3s ease forwards;
}

.left-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.left-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.explore-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.explore-btn:hover {
  background: var(--secondary);
  color: var(--text-main);
}

.explore-btn a {
  color: inherit !important;
  text-decoration: none;
}

.right-visual {
  position: relative;
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.right-visual video {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  z-index: 2;
  box-shadow: var(--shadow);
}

.food-img {
  position: absolute;
  border-radius: 20px;
  width: 140px;
  height: 100px;
  object-fit: cover;
  box-shadow: var(--shadow);
  animation: float 6s infinite ease-in-out alternate;
}

.img1 {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
}

.img2 {
  top: 15%;
  right: 5%;
  animation-delay: 1s;
}

.img3 {
  bottom: 10%;
  left: 15%;
  animation-delay: 2s;
}

.img4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

/* Revolution Section */
.revolution-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/kitchen_new.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  margin-bottom: 0;
}

.revolution-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.revolution-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.revolution-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 500;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.discover-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Brand Showcase Section */
.brand-showcase-section {
  padding: 100px 20px;
  background: #FFF5EE; /* Light Peach Background matching screenshot */
  text-align: center;
  border-radius: 40px;
  width: 95%;
  max-width: 1400px;
  margin: 60px auto;
  box-shadow: 0 20px 60px rgba(242, 90, 41, 0.05);
}

.brand-showcase-header {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.brand-showcase-header h2 {
  font-size: 2.8rem;
  color: #F25A29;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.brand-showcase-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 10px auto 0;
  border-radius: 10px;
}

.brand-showcase-header p {
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 60px;
  justify-content: center;
}

.brand-showcase-card {
  background: var(--white);
  border-radius: 30px;
  padding: 25px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.brand-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(242, 90, 41, 0.15);
  border-color: #F25A29;
}

.brand-showcase-card:active {
  transform: scale(0.96);
  box-shadow: 0 5px 15px rgba(242, 90, 41, 0.1);
  transition: transform 0.1s ease;
}

.brand-showcase-img-wrapper {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.5s ease;
  border: 2px solid #f0f0f0; /* Visible light border */
}

.brand-showcase-card:hover .brand-showcase-img-wrapper {
  transform: scale(1.02);
  border-color: #F25A29; /* Orange border on hover */
  box-shadow: 0 8px 25px rgba(242, 90, 41, 0.2); /* Orange glow */
}

.brand-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  padding: 0;
  transition: transform 0.6s ease;
}

.brand-showcase-card:hover .brand-showcase-img {
  transform: scale(1.1);
}

.brand-showcase-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #D84315; /* Deeper orange for better contrast */
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.brand-showcase-slogan {
  font-size: 0.75rem; /* Smaller size matching screenshot */
  color: #5D4037; /* Dark brown/grey text */
  font-weight: 700;
  line-height: 1.5;
  max-width: 90%;
  text-transform: uppercase;
  letter-spacing: 1.5px; /* Wider spacing */
}

.brand-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 45px;
  background: linear-gradient(135deg, #F25A29 0%, #FFBD29 100%);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(242, 90, 41, 0.3);
}

.brand-showcase-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(242, 90, 41, 0.4);
  color: var(--white);
}

.brand-showcase-btn i {
  transition: transform 0.3s ease;
}

.brand-showcase-btn:hover i {
  transform: translateX(5px);
}

.hidden-brand {
  display: none;
}

.brand-showcase-cta {
  margin-top: 40px;
}

.order-now-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 50px;
  background: linear-gradient(135deg, #F25A29 0%, #D9381E 100%);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(242, 90, 41, 0.3);
}

.order-now-btn-large:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 35px rgba(242, 90, 41, 0.4);
}
 .brand-showcase-section {
      background: linear-gradient(135deg, #FFF8F0 0%, #fff0e6 100%);
      /* Enhanced Gradient */
      padding: 80px 20px;
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
      margin-top: 50px;
      border-radius: 40px;
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
      max-width: 96%;
      margin-left: auto;
      margin-right: auto;
    }

    /* Decorative Background Elements */
    .brand-showcase-section::before,
    .brand-showcase-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .brand-showcase-section::before {
      top: -150px;
      left: -150px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(242, 90, 41, 0.05) 0%, transparent 70%);
    }

    .brand-showcase-section::after {
      bottom: -150px;
      right: -150px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 189, 41, 0.08) 0%, transparent 70%);
    }

    .brand-showcase-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .brand-showcase-header h2 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #F25A29;
      /* Orange per user request */
      margin-bottom: 15px;
      text-transform: uppercase;
      /* Matching screenshot style */
      letter-spacing: 1px;
    }

    .brand-showcase-header p {
      color: #666;
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .brand-showcase-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      /* Exactly 4 boxes per line */
      gap: 15px;
      /* Reduced gap to ensure fit */
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      padding: 0 10px;
      /* Add slight padding for safety */
    }

    /* Responsive Adjustments for Brand Grid */
    @media (max-width: 1024px) {
      .brand-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .brand-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .brand-showcase-header h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 640px) {
      .brand-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
      }
      
      .brand-showcase-card {
        padding: 25px 20px;
        max-width: 100%; /* Allow full width but controlled */
      }

      .brand-showcase-header h2 {
        font-size: 1.8rem;
      }
      
      .brand-showcase-header p {
        font-size: 1rem;
        padding: 0 10px;
      }

      .brand-showcase-section {
        margin-top: 30px;
        border-radius: 25px;
        padding: 60px 15px;
      }
    }

    .brand-showcase-card {
      background: linear-gradient(180deg, #ffffff 0%, #FFF8F0 100%);
      border-radius: 30px;
      padding: 25px 15px;
      /* Balanced padding */
      text-align: center;
      border: 2px solid rgba(242, 90, 41, 0.3);
      /* Visible saffron border */
      /* Professional soft shadow - Optimized */
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
      will-change: transform;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      /* Ensure no underline for anchor */
    }

    .brand-showcase-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
      /* Lighter shine */
      transform: translate3d(-100%, 0, 0);
      transition: transform 0.6s;
      z-index: 0;
      pointer-events: none;
    }

    .brand-showcase-card:hover {
      transform: translate3d(0, -5px, 0);
      /* Enhanced shadow on hover but kept professional */
      box-shadow: 0 15px 30px rgba(242, 90, 41, 0.15);
      border-color: rgba(242, 90, 41, 0.4);
    }

    .brand-showcase-card:hover::before {
      transform: translate3d(100%, 0, 0);
    }

    .brand-showcase-img-wrapper {
      width: 120px;
      height: 120px;
      border-radius: 25px;
      margin: 0 auto 15px auto;
      /* Increased margin for breathing room */
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
      /* Very subtle border */
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      /* Soft shadow */
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .brand-showcase-card:hover .brand-showcase-img-wrapper {
      transform: scale(1.05);
      border-color: rgba(242, 90, 41, 0.3);
      box-shadow: 0 10px 25px rgba(242, 90, 41, 0.15);
    }

    .brand-showcase-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .brand-showcase-card:hover .brand-showcase-img {
      transform: scale(1.1);
    }

    .brand-showcase-name {
      font-size: 1.15rem;
      /* Reduced font size */
      font-weight: 700;
      color: #F25A29;
      margin-bottom: 4px;
    }

    .brand-showcase-slogan {
      font-size: 0.7rem;
      /* Reduced font size */
      font-weight: 600;
      color: #3e1e14;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      display: block;
    }

    .brand-showcase-desc {
      font-size: 0.85rem;
      color: #666;
      line-height: 1.5;
    }

    .brand-showcase-cta {
      text-align: center;
      margin-top: 60px;
    }

    .brand-showcase-btn {
      background: linear-gradient(135deg, #F25A29 0%, #D9381E 100%);
      color: white;
      padding: 16px 50px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: 0 10px 25px rgba(242, 90, 41, 0.3);
      transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .brand-showcase-btn:hover {
      background: linear-gradient(135deg, #FFBD29 0%, #F25A29 100%);
      transform: translate3d(0, -3px, 0);
      box-shadow: 0 15px 35px rgba(242, 90, 41, 0.4);
      color: white;
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* Animation for hidden brands */
    .hidden-brand {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      display: none;
      /* Starts hidden */
    }

    .hidden-brand.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* Site Footer */
.site-footer {
  background: var(--bg-soft);
  color: var(--text-main);
  padding: 80px 0 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--primary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo-wrapper {
  position: relative;
  display: inline-block;
}

.footer-logo {
  height: 70px;
  width: auto;
}

.brand-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.brand-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 90, 41, 0.2);
}

/* Footer Links */
.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

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

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

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

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

.footer-links a.highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Footer Contact */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(242, 90, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.contact-item span, 
.contact-item a {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  background: var(--white);
  padding: 25px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 14px;
  flex-wrap: wrap;
}

.divider {
  color: #ddd;
}

.admin-link {
  color: inherit;
  text-decoration: none;
}

.developer-badge {
  font-weight: 600;
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(242, 90, 41, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 99;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.animated {
  opacity: 1;
  transform: none;
}

.hover-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pulse-btn {
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 189, 41, .0)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 189, 41, .2)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 189, 41, .0)
  }
}

/* Order Now Button */
.order-now-container {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.order-now-btn {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-now-btn:hover {
  background: var(--secondary);
  color: var(--text-main);
  transform: translateY(-3px);
}

.order-now-btn .arrow {
  transition: transform 0.3s ease;
}

.order-now-btn:hover .arrow {
  transform: translateX(5px);
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .services {
    padding: 60px 40px;
    gap: 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }

  .floating-dots,
  .floating-circle {
    display: none;
  }

  /* Hide heavy blur elements on tablets/mobile */
  .services {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }

  .service-box {
    width: 100%;
    max-width: 500px;
    min-height: 280px; /* Ensure minimum height */
  }

  .service-box p {
    max-width: 100%; /* Full width text */
    margin-bottom: 30px; /* Space above button */
    padding-right: 0;
  }

  .service-img {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 240px !important;
    height: auto !important;
    margin-top: 20px !important;
    align-self: center !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
  }

  /* Specific adjustment for Supply Chain image on mobile - Removed to maintain flow */
  /* .service-box:nth-child(3) .service-img {
    width: 125px !important;
    height: 100px !important;
    bottom: 15px !important;
    right: 15px !important;
    border-radius: 20px !important;
  } */
  
  /* Ensure button doesn't hit image on very small screens */
  .learn-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .hero-section {
    min-height: 75vh;
    padding: 120px 20px 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Fix for huge caption text on mobile */
  .caption {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .caption h1 {
    font-size: 2rem; /* Reduced from 3.5rem */
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .caption p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  .stats-container {
    flex-direction: column;
  }

  .food-showcase {
    flex-direction: column;
    text-align: center;
  }

  .left-content,
  .right-visual {
    width: 100%;
  }

  .right-visual {
    margin-top: 30px;
  }

  .right-visual video {
    width: 90%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }

  .footer-section h3 {
    border-left: none;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
  }

  .brands-header h2 {
    font-size: 32px;
  }

  .brands-header p {
    font-size: 16px;
  }

  .brand-card {
    width: 90%;
    padding: 30px 20px;
  }
}

/* =========================================
   PARTNERSHIP FORM STYLES (Modern & Clean)
   ========================================= */
.sf-form-wrap {
  background: #ffffff;
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.sf-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.sf-form-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.sf-form-subtext {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

.sf-label {
  display: block;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.sf-input, .sf-select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.sf-input:focus, .sf-select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 90, 41, 0.1);
}

.sf-geo-detect {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #eefbf3;
  color: #2e7d32;
  border: 1px dashed #2e7d32;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sf-geo-detect:hover {
  background: #e0f2e4;
}

.sf-geo-detect i {
  font-size: 1.2rem;
}

.sf-image-upload {
  position: relative;
  margin-bottom: 20px;
}

.sf-image-upload input[type="file"] {
  width: 100%;
  padding: 12px;
  background: #f4f4f4;
  border-radius: 12px;
  border: 2px dashed #ccc;
  cursor: pointer;
}

.sf-image-preview {
  display: none;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sf-image-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), #d9381e);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(242, 90, 41, 0.25);
}

.sf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(242, 90, 41, 0.35);
}

.sf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.sf-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: #2e7d32;
  color: white;
  padding: 16px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-weight: 600;
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-popup.show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .hero-section {
    height: auto;
    min-height: 70vh;
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .floating-dots,
  .floating-circle {
    display: none;
  }

  .service-box {
    padding: 20px;
  }
}
/* Common Margins */
section,
.slider,
.hero-section,
.services,
.brands-section,
.stats-section,
.food-showcase,
.footer {
  position: relative;
  z-index: 1;
  /* margin-top: 80px; Removed to prevent double spacing since we use padding in some sections */
}

/* About Page Styles */
.about-hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, #FFF8F0 0%, #fff 100%);
    padding-top: 80px;
}

.about-hero-deco-circle-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242,90,41,0.03) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 15s infinite alternate ease-in-out;
}

.about-hero-deco-circle-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,189,41,0.04) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.origin-section {
    background: #fff;
}

.origin-bg-grid {
    background-image: linear-gradient(#f0f0f0 1px, transparent 1px), linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.what-we-do-section {
    background-color: #FDFDFD;
}

.mission-section {
    background: #0F172A;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.why-trust-section {
    background-color: #fff;
}

.growth-stats-section {
    background: #FFF8D6;
}

.founder-note-section {
    background: #111;
}

.final-cta-section {
    background: linear-gradient(135deg, #F25A29 0%, #FFBD29 100%);
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 40px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(242, 90, 41, 0.2);
}

/* Animations and Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-3 { letter-spacing: 3px; }

/ *   R e s p o n s i v e   a d j u s t m e n t s   f o r   S e r v i c e s   S e c t i o n   * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
     . s e r v i c e s   { 
 
         p a d d i n g :   0   2 0 p x   6 0 p x ; 
 
         g a p :   2 0 p x ; 
 
     } 
 
     
 
     . s e r v i c e - b o x   { 
 
         f l e x - b a s i s :   1 0 0 % ; 
 
         p a d d i n g :   3 0 p x   2 0 p x ; 
 
         m i n - h e i g h t :   2 5 0 p x ; 
 
     } 
 
 
 
     . s e r v i c e - i m g   { 
 
         w i d t h :   1 0 0 p x ; 
 
         b o t t o m :   1 0 p x ; 
 
         r i g h t :   1 0 p x ; 
 
     } 
 
 
 
     . s e r v i c e - b o x   h 2   { 
 
         f o n t - s i z e :   2 2 p x ; 
 
     } 
 
 
 
     . s e r v i c e - b o x   p   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         m a x - w i d t h :   6 5 % ;   / *   I n c r e a s e d   f r o m   5 0 %   t o   a l l o w   m o r e   t e x t   * / 
 
     } 
 
 } 
 
 
