/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap'); */
@font-face {
  font-family: 'AppetiteRegular';
  src: url('./assets/fonts/Appetite Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary-color: #E21E23;
  --primary-color-light: #ffdadd;
  --primary-color-dark: #b91317;
  --brand-accent: #E14F58;
  --secondary-color: #6ED3F6;
  --secondary-color-dark: #0cc0df;
  --background-color: #f8f6f4;
  --dark-background: #0a0a0a;
  --text-default: #374151;
  --text-muted: #6b7280;
  --text-dark: #111827;
  --overlay-dark: rgba(0, 0, 0, 0.78);
  --overlay-light: rgba(0, 0, 0, 0.38);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --section-soft: linear-gradient(180deg, #ffffff 0%, #fff9f9 55%, #fff5f5 100%);
  --section-warm: linear-gradient(135deg, #fffbfb 0%, #ffffff 42%, #fff3f4 100%);
  --radius-xl: 1.5rem;
  --radius-2xl: 1.75rem;
  --radius-pill: 9999px;

  --deepSaffron: #F9943B;
  --gold: #d4a853;
  --pink: #FFC0CB;
  --yellow: #FFDE59;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'AppetiteRegular';
  background-color: var(--background-color);
  color: var(--text-default);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(226, 30, 35, 0.18);
  color: var(--text-dark);
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: 'AppetiteRegular';
  font-weight: 400;
}
.font-black{
  font-weight: 400 !important;
}
p,span,a,li {
  font-family: 'AppetiteRegular';
  font-weight: 300;
}
/* Webkit Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--background-color);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 10px;
  border: 2px solid var(--background-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-dark);
}

/* Premium Classes */
.glass-premium {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.premium-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-section {
  position: relative;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.premium-kicker,
.section-tag {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;

  letter-spacing: .26em;
  text-transform: uppercase;
}

.premium-kicker::before,
.section-tag::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.premium-title {
  color: #111827;
  font-family: 'AppetiteRegular';
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  
  letter-spacing: 0;
  line-height: 1.05;
}

.premium-copy {
  color: #5f6673;
  font-size: 1.05rem;
  line-height: 1.9;
}

.premium-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.25rem;
  border-radius: 999px;
  padding: .95rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
 
  transition: transform .35s ease, border-color .35s ease;
}

.premium-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.premium-button:hover {
  transform: translateY(-2px);
}

.premium-button:hover::after {
  transform: translateX(120%);
}

.premium-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.25rem;
  border-radius: 999px;
  padding: .9rem 1.45rem;
  border: 1px solid rgba(226, 30, 35, .22);
  background: rgba(255,255,255,.72);
  color: var(--primary-color);
 
  backdrop-filter: blur(18px);
  transition: all .35s ease;
}

.premium-outline-button:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 30, 35, .45);
  background: #fff;
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 30, 35, 0.2);
}

.gold-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--deepSaffron));
}

/* .hero-overlay {
  background:
    radial-gradient(circle at 82% 22%, rgba(226, 30, 35, .28), transparent 34%),
    linear-gradient(90deg, rgba(6, 6, 6, .86), rgba(18, 18, 18, .58) 46%, rgba(0, 0, 0, .34));
} */

.hero-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.page-hero {
  position: relative;
  min-height: clamp(390px, 56vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #111;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

/* .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.16) 42%, rgba(0,0,0,.58)),
    radial-gradient(circle at 20% 68%, rgba(226,30,35,.28), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.3) 58%, rgba(0,0,0,.2));
} */

.page-hero__content {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 0rem;
}

@media (min-width: 1024px) {
  .page-hero__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 0rem;
  }
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
 
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-hero__title {
  max-width: 780px;
  margin-top: 1.25rem;
  font-size: clamp(2.75rem, 5vw, 5.9rem);

  letter-spacing: 0;
  line-height: .94;
}

.page-hero__subtitle {
  max-width: 620px;
  margin-top: 1.25rem;
  color: rgba(255,255,255,.78);
  font-size: clamp(.98rem, 1.7vw, 1.16rem);
  line-height: 1.75;
}

.page-hero__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.page-hero__chip {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  
}

.legacy-top-hero-hidden {
  display: none !important;
}

body:not(.home-page) > section:not(.page-hero),
body:not(.home-page) main > section {
  scroll-margin-top: 7rem;
}

body:not(.home-page) > section:nth-of-type(even) {
  /* background: var(--section-warm); */
}

body:not(.home-page) > section:not(.page-hero) {
  position: relative;
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

body:not(.home-page) .bg-white,
body:not(.home-page) .bg-\[\#f5f5f5\],
body:not(.home-page) .bg-\[\#fff4f5\],
body:not(.home-page) .bg-\[\#fff3f4\] {
  background-image: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,246,247,.88));
}

body:not(.home-page) [class*="rounded-"][class*="shadow"],
body:not(.home-page) .custom-card,
body:not(.home-page) .partner-card,
body:not(.home-page) .leader-card,
body:not(.home-page) article,
body:not(.home-page) form {
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .45s ease;
}

body:not(.home-page) [class*="rounded-"][class*="shadow"]:hover,
body:not(.home-page) .custom-card:hover,
body:not(.home-page) .partner-card:hover,
body:not(.home-page) .leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 30, 35, .24) !important;
}



[class*="rounded-[30px]"],
[class*="rounded-[32px]"],
[class*="rounded-[35px]"],
[class*="rounded-[36px]"],
[class*="rounded-[40px]"],
[class*="rounded-[50px]"],
.rounded-3xl {
  border-radius: 20px !important;
}

.rounded-2xl {
  border-radius: 16px !important;
}



.blog-pagination button {
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 30, 35, .18);
  border-radius: 14px;
  background: #fff;
  color: #1f2937;

  transition: all .25s ease;
}

.blog-pagination button:hover,
.blog-pagination button.is-active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.blog-pagination button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.premium-icon-tile {
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(226, 30, 35, .1), rgba(255, 255, 255, .9));
  border: 1px solid rgba(226, 30, 35, .18);
  color: var(--primary-color);
  font-size: 1.75rem;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.group:hover .premium-icon-tile,
.policy-card:hover .premium-icon-tile,
.premium-ui-card:hover .premium-icon-tile {
  /* transform: translateY(-2px); */
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  border-color: transparent;
}

.premium-ui-card,
body:not(.home-page) .policy-card,
body:not(.home-page) #blogs .group,
body:not(.home-page) #contact-section .group {
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(226, 30, 35, .12) !important;
  /* box-shadow: 0 1px 10px rgba(17, 24, 39, .045) !important; */
}

.premium-read-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--primary-color);

  transition: gap .25s ease, color .25s ease;
}

.premium-read-link:hover {
  gap: .85rem;
  color: var(--primary-color-dark);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 30, 35, .14);
  background: rgba(226, 30, 35, .08);
}

input, textarea, select {
  border-radius: 1rem;
  transition: border-color .25s ease, background-color .25s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(226, 30, 35, .55) !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}

#contactBtn {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

#contactBtn:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.05);
}

/* Utility Overrides for Tailwind integration */
@layer utilities {
  .bg-primary {
    background-color: var(--primary-color) !important;
  }

  .bg-primary-color {
    background-color: var(--primary-color) !important;
  }

  .bg-primary-dark {
    background-color: var(--primary-color-dark) !important;
  }

  .text-primary {
    color: var(--primary-color) !important;
  }

  .border-primary {
    border-color: var(--primary-color) !important;
  }

  .shadow-primary {
  }

  .bg-dark {
    background-color: var(--dark-background) !important;
  }
}

/* ─── Premium layout & typography ─── */
.section-title {
  font-family: 'AppetiteRegular';
  font-size: clamp(2.1rem, 4.2vw, 3.65rem);
 
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.home-page .section-title {
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-dark .section-title,
section.bg-black .section-title {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-eyebrow,
.home-page section > div > p.uppercase,
.home-page section .text-yellow-500.uppercase {
  color: var(--primary-color) !important;
  font-size: 0.72rem !important;

  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
}

/* ─── Navbar ─── */
#navbarInner {
}

#navbarInner.bg-white\/10 {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

#navbarInner.bg-white {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px);
  border-color: rgba(226, 30, 35, 0.08) !important;
}

.nav-dropdown-panel {
  background: #ffffff !important;
  margin-top: 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}

.group:hover .nav-dropdown-panel,
.group:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block !important;
}

.nav-dropdown-panel a {
  position: relative;
}

.nav-dropdown-panel a::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-panel a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

#contactBtn {
  letter-spacing: 0.02em;
}

#contactBtn:hover {
  transform: translateY(-2px) scale(1.02) !important;
}

#mobileMenu {
}

/* ─── Footer ─── */
.premium-footer {
  position: relative;
  overflow: hidden;
  background: var(--primary-color) !important;
  color: #ffffff !important;
}

.premium-footer::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.premium-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

.premium-footer h4 {
  font-family: 'AppetiteRegular';
  position: relative;
  color: #ffffff !important;
}

.premium-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  border-radius: 2px;
}

.premium-footer p,
.premium-footer ul,
.premium-footer li,
.premium-footer a,
.premium-footer span {
  color: #ffffff !important;
}

.footer-social-pill {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-pill:hover {
  background: #ffffff;
  color: var(--primary-color) !important;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* ─── Page hero ─── */
.page-hero__title {
  font-family: 'AppetiteRegular';
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.page-hero__eyebrow {
}

.page-hero__chip {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.page-hero__chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.page-hero__divider {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 1.5rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--deepSaffron));
}

/* ─── Home hero ─── */
.home-page .heroSwiper .swiper-slide {
  transform: scale(1.02);
}

/* .home-page .hero-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(226, 30, 35, 0.22), transparent 50%),
    radial-gradient(circle at 12% 88%, rgba(249, 148, 59, 0.12), transparent 40%),
    linear-gradient(105deg, rgba(4, 4, 4, 0.92) 0%, rgba(12, 12, 12, 0.72) 48%, rgba(0, 0, 0, 0.45) 100%);
} */

.home-page .heroSwiper .premium-kicker {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.home-page .heroSwiper .premium-kicker::before {
  background: linear-gradient(90deg, var(--primary-color), var(--deepSaffron));
  opacity: 1;
  height: 2px;
}

.home-page .heroSwiper .premium-outline-button {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.home-page .heroSwiper .premium-outline-button:hover {
  background: #fff !important;
  color: var(--text-dark) !important;
  border-color: #fff !important;
}

.home-page .heroSwiper h1 {
  font-family: 'AppetiteRegular';

  letter-spacing: -0.03em;
  line-height: 1.02;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.home-page .hero-btn,
.home-page section button.bg-\[\#E14F58\],
.home-page section button[class*="bg-[#E14F58]"] {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;

  letter-spacing: 0.03em;
}

.home-page .hero-btn:hover,
.home-page section button.bg-\[\#E14F58\]:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.home-page .border.border-white {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .border.border-white:hover {
  background: #fff !important;
  color: var(--text-dark) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
}

/* ─── Cards & stats ─── */
.custom-card,
.partner-card,
.leader-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.bg-dark .custom-card,
section.bg-black .custom-card {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px);
}

.bg-dark .custom-card:hover,
section.bg-black .custom-card:hover {
  border-color: rgba(226, 30, 35, 0.35) !important;
  transform: translateY(-6px) !important;
}

.home-page img.rounded-\[40px\],
.home-page img[class*="rounded-[40px]"] {
  border-radius: var(--radius-2xl) !important;
}

.home-page .border-l-4 {
  border-left-width: 3px !important;
  border-image: linear-gradient(180deg, var(--primary-color), var(--deepSaffron)) 1;
  padding-left: 1.25rem !important;
}

.home-page .border-l-4 h3 {
  font-family: 'AppetiteRegular';
  color: var(--primary-color);
}

.home-page .absolute.bg-black {
  background: linear-gradient(145deg, #111, #1a1a1a) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-card,
.home-page .custom-card.bg-white {
  border: 1px solid rgba(226, 30, 35, 0.08) !important;
  overflow: hidden;
}

.leader-card:hover img,
.home-page .custom-card img.hover\:scale-110:hover {
  transform: scale(1.06);
}

.home-page .bg-\[\#f5f5f5\],
.home-page .bg-\[\#f4f4f4\] {
  background: var(--section-soft) !important;
}

.home-page .bg-\[\#f5f5f5\].rounded-3xl {
  border: 1px solid rgba(226, 30, 35, 0.06);
  transition: all 0.4s ease;
}

.home-page .bg-\[\#f5f5f5\].rounded-3xl:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 30, 35, 0.15);
  background: #fff !important;

/* Contact form enhancements */
.form-input, .form-textarea {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--brand-accent) !important;
}

.form-textarea {
  min-height: 140px;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
  .form-input, .form-textarea { height: auto; }
}

/* Slightly stronger call-to-action for submit */
#contactBtn {
  background: linear-gradient(90deg, var(--brand-accent), #d94b4f);
}

#formStatus {
  margin-bottom: .25rem;
}
}

/* ─── Forms & UI polish ─── */
.premium-ui-card {
  border-radius: var(--radius-xl) !important;
}

.premium-ui-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 22px 48px rgba(226, 30, 35, 0.1) !important; */
  border-color: rgba(226, 30, 35, 0.22) !important;
}

input, textarea, select {
  background: rgba(255, 255, 255, 0.9);
}

.blog-pagination {
  gap: 0.5rem;
}

.blog-pagination button {
  border-radius: 12px;
}

.blog-pagination button.is-active {
}

/* ─── Section rhythm (home) ─── */
.home-page > section {
  position: relative;
}

.home-page > section.py-28 {
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
}

.home-page > section.bg-white:nth-of-type(even) {
  background: var(--section-soft) !important;
}

/* Icon accents */
.home-page .text-\[\#E14F58\],
.text-\[\#E14F58\] {
  color: var(--primary-color) !important;
}

.home-page .bg-\[\#E14F58\]\/10 {
  background: rgba(226, 30, 35, 0.12) !important;
}

/* Timeline & about page extras */
.timeline-line::before {
  background: linear-gradient(to bottom, transparent, var(--primary-color), var(--deepSaffron), transparent) !important;
}

.partner-card,
.leader-card {
  border-radius: var(--radius-xl) !important;
}

.policy-card {
  border-radius: var(--radius-xl) !important;
}

#blogs .group img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

#blogs .group:hover img {
  transform: scale(1.05);
}

/* ─── Product pages (dairy) ─── */
.page-main {
  padding-top: 0;
}

.product-section {
  background: var(--section-soft);
}

.product-section--alt {
  background: #fff;
}

.product-section--frozen {
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 50%, #fff9f9 100%);
}

.product-gallery {
  position: relative;
}

.product-float-badge {
  position: absolute;
  z-index: 10;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-xl);
  bottom: -1.5rem;
  right: -0.5rem;
}

.product-float-badge--top {
  bottom: auto;
  top: -1.25rem;
  left: -0.5rem;
  right: auto;
}

.product-float-badge--light {
  background: #fff;
  border: 1px solid rgba(226, 30, 35, 0.1);
  color: var(--text-dark);
}

.product-float-badge--dark {
  background: linear-gradient(145deg, #111, #1c1c1c);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-float-badge__value {
  display: block;
  font-family: 'AppetiteRegular';
  font-size: 1.75rem;

  line-height: 1;
  color: var(--primary-color);
}

.product-float-badge--dark .product-float-badge__value {
  color: #fff;
}

.product-float-badge__label {
  display: block;
  font-size: 0.9rem;

  margin-top: 0.35rem;
  opacity: 0.75;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.product-features li > i {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(226, 30, 35, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(226, 30, 35, 0.15);
  color: var(--primary-color);
  font-size: 1.35rem;
}

.product-features li strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.product-features li span {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.product-mini-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.product-mini-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(226, 30, 35, 0.1);
  color: var(--primary-color);
  font-size: 1.75rem;
}

.product-mini-card h3 {
  font-family: 'AppetiteRegular';
  font-size: 1.25rem;

  color: var(--text-dark);
}

.product-mini-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.frozen-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.frozen-card i {
  font-size: 2.25rem;
  color: var(--secondary-color-dark);
}

.frozen-card h3 {
 
  color: var(--text-dark);
}

.premium-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Premium bullet (JS upgraded) */
.premium-bullet {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
}

body.inner-page button.bg-black,
body.inner-page a.bg-black {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
}

body.inner-page button.bg-black:hover,
body.inner-page a.bg-black:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

body.inner-page .page-main > section:first-child {
  padding-top: clamp(3rem, 6vw, 5rem);
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — unified premium design (all HTML pages)
   ═══════════════════════════════════════════════════════════ */

body.inner-page {
  background-color: var(--background-color);
}

body.inner-page .section-tag,
body.inner-page .section-eyebrow,
body.inner-page section p.text-yellow-500,
body.inner-page section p.uppercase[class*="tracking"],
body.inner-page section span.uppercase[class*="tracking"] {
  color: var(--primary-color) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem !important;
 
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
}

body.inner-page .section-tag::before,
body.inner-page .section-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

body.inner-page .section-title {
  margin-top: 0.75rem;
}

body.inner-page section:not(.page-hero) {
  position: relative;
}

body.inner-page section:not(.page-hero) > .max-w-7xl,
body.inner-page section:not(.page-hero) > div[class*="max-w"] {
  position: relative;
  z-index: 1;
}

body.inner-page .text-\[\#E14F58\]:not(.premium-button):not(.premium-read-link) {
  color: var(--primary-color) !important;
}

body.inner-page .bg-\[\#E14F58\],
body.inner-page .bg-\[\#E14F58\]\/10,
body.inner-page .bg-\[\#E14F58\]\/20 {
  --tw-bg-opacity: 1;
}

body.inner-page .bg-\[\#faf7f2\],
body.inner-page .bg-\[\#faf8f4\],
body.inner-page .bg-\[\#f4f4f4\],
body.inner-page .bg-\[\#f5f5f5\] {
  background: var(--section-soft) !important;
}

body.inner-page .premium-gradient-text,
body.inner-page .gradient-text {
  background: linear-gradient(120deg, var(--primary-color), var(--deepSaffron));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.inner-page .premium-button,
body.inner-page a.premium-button,
body.inner-page button.premium-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill) !important;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark)) !important;
  color: #fff !important;
  transition: transform 0.35s ease;
  border: none !important;
}

body.inner-page .premium-button:hover {
  transform: translateY(-2px) !important;
}

body.inner-page a[class*="border"][class*="rounded-full"]:not(.premium-button) {
  transition: all 0.35s ease;
}

body.inner-page a[class*="border-white"]:hover,
body.inner-page a[class*="border"][class*="rounded-full"]:hover {
  transform: translateY(-2px);
}

.glass-card,
body.inner-page .glass-premium {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: var(--radius-2xl) !important;
}

body.inner-page .glass {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.inner-page .hero-glass,
body.inner-page section.legacy-top-hero-hidden .glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-gradient::after,
.recipe-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.25) 45%, rgba(0,0,0,.65)),
    radial-gradient(circle at 18% 70%, rgba(226, 30, 35, 0.25), transparent 40%);
  pointer-events: none;
}

body.inner-page .overlay {
  background: linear-gradient(105deg, rgba(0,0,0,.82), rgba(226, 30, 35, 0.55) 55%, rgba(0,0,0,.4)) !important;
}

.premium-swiper {
  border-radius: var(--radius-2xl) !important;
  overflow: hidden;
}

body.inner-page .swiper img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.inner-page .swiper:hover img {
  transform: scale(1.03);
}

body.inner-page section img[class*="rounded"] {
  border-radius: var(--radius-xl) !important;
}

/* About page */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.float { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 6s ease-in-out infinite 2s; }
.fade-up { animation: fadeUp 0.85s ease forwards; }
.slide-in { animation: slideIn 0.85s ease forwards; }
.spin-slow { animation: spin-slow 22s linear infinite; }

.timeline-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), var(--deepSaffron), transparent);
  transform: translateX(-50%);
}

.journey-dot::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.25;
  animation: pulse-ring 2s ease-out infinite;
}

.partner-card:hover .partner-logo { transform: scale(1.08); }
.leader-card:hover .leader-img { transform: scale(1.05); }

.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(226, 30, 35, 0.35));
}
.ornament::after {
  background: linear-gradient(to left, transparent, rgba(226, 30, 35, 0.35));
}

/* Page-specific cards */
.client-card,
.media-card,
.infrastructure-card,
.recipe-card,
.policy-card,
.step-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-xl) !important;
}

.client-card { position: relative; overflow: hidden; }
.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.75), transparent);
  transition: left 0.75s ease;
  z-index: 2;
  pointer-events: none;
}
.client-card:hover::before { left: 100%; }
.client-card:hover,
.media-card:hover,
.infrastructure-card:hover,
.recipe-card:hover {
  transform: translateY(-8px) !important;
}

.step-card:hover { transform: translateY(-6px) !important; }

.content p {
  line-height: 1.9;
  color: var(--text-muted);
}
.content li {
  margin-bottom: 0.65rem;
  color: var(--text-default);
}
.content h2 {
  font-family: 'AppetiteRegular';
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

/* Dairy product page */
body.inner-page section .absolute.bg-yellow-400,
body.inner-page .bg-yellow-400.rounded-full {
  background: var(--primary-color) !important;
}

body.inner-page section .absolute[class*="bg-yellow"] {
  background: linear-gradient(135deg, var(--primary-color), var(--deepSaffron)) !important;
  color: #fff !important;
  border-radius: var(--radius-xl) !important;
}

body.inner-page button.hover\:bg-yellow-400:hover,
body.inner-page a.hover\:bg-yellow-400:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

body.inner-page #featured,
body.inner-page #blogs {
  scroll-margin-top: 7rem;
}

/* Blog featured strip */
body.inner-page .bg-white\/10.backdrop-blur-2xl {
  border-radius: var(--radius-2xl) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Career / contact stat pills */
body.inner-page .grid.grid-cols-3 .bg-white.rounded-2xl,
body.inner-page .grid .bg-white.rounded-2xl.p-4 {
  border: 1px solid rgba(226, 30, 35, 0.08);
  transition: transform 0.3s ease;
}
body.inner-page .grid.grid-cols-3 .bg-white.rounded-2xl:hover {
  transform: translateY(-3px);
}

/* Dark sections on inner pages */
body.inner-page section.bg-black,
body.inner-page section.bg-dark {
  background: linear-gradient(165deg, #0a0a0a, #141414 50%, #0f0a0a) !important;
}

body.inner-page section.bg-black h2,
body.inner-page section.bg-black h3 {
  color: #fff;
}

/* Product details tabs / panels */
body.inner-page [class*="rounded-[30px]"],
body.inner-page [class*="rounded-[35px]"],
body.inner-page [class*="rounded-[40px]"] {
  border-radius: var(--radius-xl) !important;
}



