:root {
  --primary-color: #FFD700; /* Vibrant Gold */
  --secondary-color: #DAA520; /* Goldenrod */
  --accent-color: #FFFACD; /* Lemon Chiffon */
  --text-dark: #FFFFFF;
  --text-light: #F4F4F9;
  --bg-dark: #000000; /* Pitch Black */
  --card-bg: rgba(255, 255, 255, 0.05); /* Glass Background */
  --transition-speed: 0.3s;
  
  /* Glass Sun Theme Colors */
  --sun-core: #FFD700;
  --sun-inner-glow: rgba(255, 165, 0, 0.3);
  --sun-outer-glow: rgba(255, 69, 0, 0.1);
}





body {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/background.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-dark);
  margin: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}



/* Centered Glassy Sun */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sun-core) 0%, var(--sun-inner-glow) 40%, var(--sun-outer-glow) 70%, transparent 90%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
  animation: glassRadiance 20s infinite alternate ease-in-out;
}

/* Centered Glassy Sun Rays - Softened for Readability */
body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200vw;
  height: 200vw;
  background: repeating-conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.015) 5deg, transparent 10deg);
  pointer-events: none;
  z-index: -2;
  animation: rotateRays 180s linear infinite;
  opacity: 0.6;
}


@keyframes glassRadiance {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.7; }
}




@keyframes rotateRays {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Remove torch styles */
.torch-overlay, .torch-glow {
  display: none !important;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

/* --- STYLISH UNIVERSAL ARROW MENU (Desktop & Mobile) --- */
header {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 130px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  z-index: 10000;
  box-shadow: 0 10px 50px rgba(0,0,0,1);
  overflow: visible;
}

.brand-logo {
  height: 110px;
  width: 220px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
  transform: scale(1.3);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 15px 5%;
  }
  .brand-logo {
    height: 70px;
    width: 140px;
    transform: none;
  }
  .stylish-arrow-trigger {
    font-size: 2.5rem;
  }
}

.brand-logo:hover {
  transform: scale(1.35);
  transform-origin: left center;
}

/* Stylish Arrow Trigger */
.stylish-arrow-trigger {
  cursor: pointer;
  font-size: 4rem;
  color: var(--secondary-color);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), color 0.3s;
  user-select: none;
  z-index: 10001;
  display: flex;
  align-items: center;
  animation: pulseArrow 3s infinite ease-in-out;
}

.stylish-arrow-trigger:hover {
  transform: translateX(15px) scale(1.1);
  color: #FFFFFF;
  text-shadow: 0 0 35px var(--primary-color);
}

@keyframes pulseArrow {
  0%, 100% { opacity: 0.8; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

/* Side Drawer Navigation */
.side-drawer {
  position: fixed;
  top: 0;
  right: -380px; /* Hidden */
  width: 380px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  display: flex;
  flex-direction: column;
  padding: 70px 40px;
  gap: 25px;
  z-index: 10003;
  transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 2px solid var(--primary-color);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
}

.side-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10002;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.drawer-overlay.active {
  visibility: visible;
  opacity: 1;
}

.side-drawer a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: 0.4s;
  position: relative;
  width: fit-content;
}

.side-drawer a:hover {
  color: #FFF;
  padding-left: 15px;
  text-shadow: 0 0 20px var(--primary-color);
}

.side-drawer a.active::before {
  content: '→';
  position: absolute;
  left: -40px;
  color: var(--primary-color);
}

.drawer-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: 0.3s;
}

.drawer-close:hover {
  transform: rotate(90deg);
  color: #FFF;
}

@media (max-width: 768px) {
  header { min-height: 100px; padding: 8px 4%; }
  .brand-logo { height: 85px; width: 170px; transform: scale(1.25); }
  .stylish-arrow-trigger { font-size: 3rem; }
  .side-drawer { width: 100%; right: -100%; }
}

@media (max-width: 400px) {
  header { min-height: 80px; padding: 6px 3%; }
  .brand-logo { height: 70px; width: 140px; transform: scale(1.2); }
  .stylish-arrow-trigger { font-size: 2.5rem; }
}

body.no-scroll {
  overflow: hidden;
}


/* Hero Section - Balanced 50/50 Layout */
.hero {
  background: transparent;
  color: var(--text-light);
  padding: 120px 10% 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px; /* Reduced gap to bring it closer */
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-content {
  flex: 1; /* Balanced */
}

.hero-image-container {
  flex: 1; /* Balanced */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  max-height: 65vh; /* Prevent dominating the screen */
  object-fit: contain;
  border-radius: 25px;
  /* Premium Glass Frame */
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.15), 0 25px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  animation: floatHero 6s ease-in-out infinite;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 40px;
    gap: 30px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .hero-image {
    max-height: 40vh;
  }
}


@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero p {
  font-size: 1.4rem;
  max-width: 600px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  background: rgba(0, 0, 0, 0.25);
  padding: 15px 25px;
  border-radius: 12px;
  display: inline-block;
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--primary-color);
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 5% 40px;
    gap: 40px;
  }
  .hero h1 { font-size: 3rem; }
  .hero p { max-width: 100%; }
}

/* Sections - Fully Transparent with readable headings */
section {
  padding: 80px 10%;
  background: transparent;
  position: relative;
  z-index: 1; 
}



#sakriyam-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
}

#sakriyam-info img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  /* Restored Premium Glass Box Effect - Natural Colors */
  background: rgba(255, 255, 255, 0.98);
  padding: 15px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.3), 0 15px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  filter: contrast(1.05) brightness(1); /* Natural brightness */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#sakriyam-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 80px 10%;
  position: relative;
  overflow: hidden;
}

.intro-content {
  flex: 1.2;
}

.intro-content .card {
  text-align: left;
  border-left: 5px solid var(--primary-color);
}

.intro-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.intro-image-container {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-bottle {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.3), 0 20px 60px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
  animation: floatBottle 5s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.product-bottle:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.read-more-btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary-color);
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.read-more-btn:hover {
  background: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

@media (max-width: 992px) {
  #sakriyam-intro {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 5%;
  }
  .intro-content .card {
    text-align: center;
    border-left: none;
    border-top: 5px solid var(--primary-color);
    margin: 0 auto;
  }
  .intro-content p {
    text-align: center;
  }
  .product-bottle {
    max-width: 250px;
    margin: 0 auto;
  }
}




.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}


.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Glassmorphism Cards */
.card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.card:hover::before {
  left: 150%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
}




.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-bottom: 4px solid var(--secondary-color);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Beautiful Footer Design - Semi-Transparent Black */
footer {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(0, 0, 0, 0.95)), url('assets/latest6.jpeg') center/cover no-repeat;
  backdrop-filter: blur(5px);
  color: #FFFFFF;
  padding: 80px 5% 30px;
  border-top: 2px solid var(--primary-color);
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: left;
}

.footer-col h4 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-logo {
  height: 90px; /* Boosted to 150% of previous 60px */
  margin-bottom: 25px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Info Layout */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

/* --- SIMPLE STYLISH PRELOADER (Monochrome) --- */
/* --- 0-100% PRELOADER (Gold & Glass) --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Solid Black */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s;
  pointer-events: all;
  gap: 20px;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-percentage {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
}

.preloader-bar-container {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-color);
  transition: width 0.1s linear;
}

.preloader-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.8;
  animation: shimmerTitle 3s infinite linear;
}

@keyframes shimmerTitle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* Mobile Menu Logo Visibility */
.drawer-logo {
  width: 160px;
  margin: 0 auto 30px;
  filter: none;
  display: block;
}


@keyframes shimmerText {
  to { background-position: 200% center; }
}


/* Shimmer Effects */
.shimmer-bg {
  position: relative;
  overflow: hidden;
}

.shimmer-bg::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerAnim 2.5s infinite linear;
  pointer-events: none;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--text-light) 0%, rgba(255, 255, 255, 0.8) 50%, var(--text-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shimmerAnim {
  0% { left: -150%; }
  100% { left: 150%; }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Testimonials Section - Stylish Ghostly Branding */
#testimonials {
  position: relative;
  overflow: visible !important;
  max-width: 1000px !important;
  margin: 120px auto !important;
  padding: 80px 0 !important;
}

#testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 140%;
  background: url('assets/latest 2.jpeg') no-repeat center;
  background-size: cover; /* changed to cover for a better background fit */
  opacity: 0.3; /* Increased opacity slightly to show the beautiful pattern */
  z-index: -1;
  pointer-events: none;
}

@keyframes driftGhostly {
  from { transform: translate(-50%, -48%) rotate(-2deg); }
  to { transform: translate(-50%, -52%) rotate(2deg); }
}

.carousel-container {
  position: relative;
  width: 100%;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

.carousel-slide {
  display: none;
}
.fade {
  animation-name: fadeAnim;
  animation-duration: 1.5s;
}
@keyframes fadeAnim {
  from {opacity: .3} 
  to {opacity: 1}
}

/* Founder Story Grid Upgrade */
.founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 5%;
}

.founder-content .card {
  height: 100%;
}

.founder-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-image-frame {
  position: relative;
  padding: 15px;
  background: rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 30px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.7);
  animation: floatImage 8s ease-in-out infinite alternate;
}

.founder-image-frame img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  display: block;
}

.founder-visual::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
}

@keyframes floatImage {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(1deg); }
}

/* Contact Form - Vintage Ghostly Background (Warm Glow) */
#contact-form-section {
  position: relative;
  overflow: visible !important;
  padding: 100px 0;
  z-index: 10;
}

#contact-form-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 130%;
  background: url('assets/typewriter-contact.jpg') no-repeat center;
  background-size: contain;
  opacity: 0.2; /* Substantially boosted for better visibility */
  filter: sepia(1) hue-rotate(-15deg) brightness(0.8) contrast(1.2) invert(1); /* Warm Golden/Vintage Tone on Black */
  z-index: -1;
  pointer-events: none;
  animation: driftWarm 20s ease-in-out infinite alternate;
}

@keyframes driftWarm {
  from { transform: translate(-50%, -48%) scale(1); }
  to { transform: translate(-50%, -52%) scale(1.08); }
}

@media (max-width: 912px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px auto;
  }
  .founder-visual {
    order: -1;
  }
  .founder-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .preloader-percentage {
    font-size: 3.5rem;
  }
  .preloader-bar-container {
    width: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    max-width: 100% !important;
  }
  .footer-logo {
    margin: 0 auto 25px;
  }
}

