/* style.css — Luxury purple + gold theme
   Place hero-bg.jpg (your uploaded purple texture) in same folder
*/

/* style.css — Luxury purple + gold theme
   Place hero-bg.jpg (your uploaded purple texture) in same folder
*/

/* style.css — Luxury purple + gold theme
   Place hero-bg.jpg (your uploaded purple texture) in same folder
*/ 

/*<section id="values" class="section values">*/ 


/*
    </nav> */

/* style.css — Luxury purple + gold theme
   Place hero-bg.jpg (your uploaded purple texture) in same folder
*/

:root {
  --purple-1: #4b0b7a;   /* deep */
  --purple-2: #6a0dad;   /* mid */
  --purple-3: #8d3bff;   /* light accent */
  --gold-1: #ffd700;
  --gold-2: #ffb84d;
  --muted: #6a4b8f;
  --card-bg: rgba(255, 255, 255, 0.6);
  --glass: rgba(255, 255, 255, 0.4);
  --max-width: 1100px;
  --radius: 12px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* Reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  color: #2a014f;
  background: linear-gradient(180deg, #ffffff 0%, #f4eaff 25%, #d8baff 60%, #b17dff 100%);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 2;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* stay above everything */
  background: rgba(255, 255, 255, 0.9); /* near-white background */
  backdrop-filter: blur(6px); /* keeps your blended theme looking smooth */
}

/* Ensures inner header layout stays aligned */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
}


.logo {
  display: flex;
  align-items: left;
  font-weight: 1000;
  letter-spacing: 0.08em;
  color: var(--purple-1);
  font-size: 1rem;
}

/* --- Logo size adjustment (Fixed) --- */
.logo img {
  height: 80px; /* Desktop default */
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Tablets / smaller laptops */
@media (max-width: 1024px) {
  .logo img {
    height: 70px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
}

/* Tablets / smaller laptops */
@media (max-width: 1024px) {
  .logo img {
    height: 95px;
  }
}

/* Phones (portrait + small devices) */
@media (max-width: 768px) {
  .logo img {
    height: 85px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .logo img {
    height: 75px;
  }
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #3d0066;
  font-weight: 600;
  opacity: 0.85;
}

nav a:hover {
  color: var(--gold-1);
}

/* HERO */
.hero {
  min-height: 86vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #faf7ff, #e5d9f2, #c19cff 90%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0 0 0 ;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
  pointer-events: none;
}

/* Golden bubbles (unchanged) */
.bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4px);
  background: radial-gradient(circle at 35% 30%, rgba(255,241,196,0.95) 0%, rgba(255,200,65,0.15) 90%, rgba(255,150,0,0.06) 100%);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: float 9s ease-in-out infinite alternate;
}
.b1 { width:160px;height:160px;left:8%;top:14%;animation-duration:11s }
.b2 { width:90px;height:90px;right:12%;top:18%;animation-duration:7s;opacity:0.85 }
.b3 { width:220px;height:220px;left:50%;top:6%;transform:translateX(-30%);animation-duration:12s;opacity:0.72 }
.b4 { width:120px;height:120px;right:6%;bottom:8%;animation-duration:10s;opacity:0.78 }

@keyframes float {
  0% { transform: translateY(0) scale(1) rotate(0deg) }
  50% { transform: translateY(-18px) scale(1.03) rotate(6deg) }
  100% { transform: translateY(0) scale(0.98) rotate(-4deg) }
}

/* Hero content */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text .eyebrow {
  color: #629444;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0 0 12px;
  color: var(--purple-1);
  line-height: 1.03;
}

.lead {
  color: rgba(50, 10, 80, 0.85);
  max-width: 56ch;
  margin-bottom: 18px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-features li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.hero-features li:before {
  content: '•';
  color: #629444;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(245,240,255,0.5));
  padding: 22px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #2a014f;
  box-shadow: 0 8px 18px rgba(120, 50, 200, 0.08);
}
.hero-card h3 { margin-top: 0 }
.muted { color: var(--muted) }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #2b1200;
  box-shadow: 0 10px 30px rgba(106,13,173,0.12);
}
.btn-outline {
  border: 1px solid rgba(120, 50, 200, 0.3);
  color: #2a014f;
  background: rgba(255,255,255,0.3);
  margin-left: 10px;
}

/* Sections */
.section {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(219,199,255,0.6));
  padding: 36px 10px;
  color: #2d044a;
}
.section:nth-child(even) {
  background: linear-gradient(180deg, rgba(245,240,255,0.9), rgba(255,255,255,0.98));
}

.section h2 {
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--purple-1);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 20px;
  align-items: start;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(240,230,255,0.55));
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #2a014f;
  box-shadow: 0 8px 18px rgba(120, 50, 200, 0.06);
}

.value h5 {
  margin: 0 0 8px;
  color: #629444;
}

/* Certificates */
.cert-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cert {
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(240,230,255,0.5));
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 700;
  color: var(--purple-1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-info a { color: var(--gold-1) }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 8px;
  color: var(--purple-1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(106,13,173,0.2);
  background: rgba(255,255,255,0.8);
  color: #2a014f;
  margin-top: 6px;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(90, 30, 140, 0.6);
}

.form-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* === Google Map Section === */
#map-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(235,220,255,0.6));
  border-top: 1px solid rgba(120,50,200,0.1);
  border-bottom: 1px solid rgba(120,50,200,0.1);
  padding: 60px 0;
  text-align: center;
}

#map-section h2 {
  color: var(--purple-1);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

#map-section p {
  color: rgba(70,0,130,0.8);
  font-size: 1rem;
  margin-bottom: 20px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(141,59,255,0.2);
  max-width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive map */
@media (max-width: 768px) {
  #map-section { padding: 40px 0; }
  #map-section h2 { font-size: 1.5rem; }
  .map-container iframe { height: 300px; }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(245,240,255,0.4), rgba(230,210,255,0.2));
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.4);
  color: #2a014f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-left {
  font-size: 0.85rem;
  color: #3a0066;
}

.footer-left span {
  color: #4b0b7a;
  font-weight: 600;
}

.footer-right {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  background: linear-gradient(90deg, #baff4d, #9fff28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
  text-align: right;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    font-size: 0.95rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  top: 47%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 40px 0 0 40px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: pulse-glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-50%) scale(1.05);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  flex-shrink: 0;
}
.whatsapp-number {
  font-size: 0.95rem;
  white-space: nowrap;
}

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    top: auto;
    bottom: 160px;
    right: 20px;
    transform: none;
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-number {
    display: none;
  }
  .whatsapp-icon {
    margin: 0;
    width: 32px;
    height: 32px;
  }
}

/* Floating Get in Touch Button */
.floating-getintouch {
  position: fixed;
  right: 20px;
  bottom: 200px;
  transform: translateY(-83px);
  z-index: 99;
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #2b1200;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  font-family: 'Poppins', system-ui, sans-serif;
}

.floating-getintouch:hover {
  transform: translateY(-83px);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .floating-getintouch {
    right: 16px;
    bottom: 155px;
    transform: translateY(-70px);
    font-size: 0.9rem;
    padding: 9px 18px;
  }
}

/* Responsive Fixes */
@media (max-width:1100px){
  .hero-content{grid-template-columns:1fr;gap:20px;text-align:center}
  .hero-card{max-width:480px;margin:0 auto}
}
@media (max-width:900px){
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:768px){
  nav{display:flex}
  .header-inner{flex-wrap:wrap;justify-content:space-between}
  .hero{padding:40px 0}
  .hero h1{font-size:32px}
  .grid-2,.grid-3,.grid-4,.contact-grid{grid-template-columns:1fr}
  .b3{display:none}
}
@media (max-width:480px){
  .hero{padding:24px 0}
  .eyebrow{font-size:11px}
  .logo{font-size:0.9rem}
  .logo img{height:40px}
  .hero-text h1{font-size:28px}
  .btn{display:block;width:100%;margin-bottom:10px}
}

/* === Final Footer (Green-Yellow + Grey Combo) === */
.site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.08));
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 35px;
  font-family: 'Poppins', sans-serif;
  color: #bfbfbf;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left — PURE • SUSTAINABLE • RELIABLE (green-yellow gradient) */
.footer-left {
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00cc44, #ccff33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.95rem;
}

/* Right — Build and managed by SyNchRoniK (FORCED GREY) */
.footer-right {
  color: #8c8c8c !important; /* force grey */
  font-size: 0.8rem;
  font-weight: 400;
  text-align: right;
}

.footer-right a {
  color: #8c8c8c !important; /* force grey for link */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: #bfbfbf !important; /* slightly lighter grey on hover */
}

/* === Mobile Layout (Stacked) === */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .footer-left {
    order: 1;
    font-size: 0.9rem;
  }

  .footer-right {
    order: 2;
    font-size: 0.75rem;
    text-align: center;
  }
}


/* === Compact Cycle Chart Section === */
.cycle-section {
  position: relative;
  background: linear-gradient(180deg, #f9f6ff, #fff);
  padding: 50px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.cycle-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #6a0dad; /* bright purple */
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cycle-subtitle {
  font-size: 0.95rem;
  color: #6a0dad;
  margin-bottom: 40px;
}

.cycle-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  margin: 0 auto;
}

/* Circular path */
.cycle-path {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid #8d3bff; /* purple ring */
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

/* Shared box styles */
.cycle-box {
  position: absolute;
  width: 190px;
  background: #fff;
  color: #6a0dad;
  font-size: 0.85rem;
  line-height: 1.3;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 12px 14px;
  z-index: 2;
}

/* Box positions */
.box1 {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.box2 {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.box3 {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.box4 {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
  .cycle-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cycle-path {
    display: none;
  }

  .cycle-box {
    position: static;
    width: 85%;
  }
}
 /* ==== Dropdown Menu Styling ==== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  text-decoration: none;
  
  font-weight: 600;
  padding: 10px 20px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: linear-gradient(90deg, #d4af37, #f5e087);
  color: #2b1200;
}

.dropdown:hover .dropdown-content {
  display: block;
}
  /*solvent free image
.benefits-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-image img {
  width: 60%;
  max-width: 250px;
 border-radius:12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}*/

/* Solvent Free Benefits Layout*/ 
#benefits .grid-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

/* Left text section */
.benefits-text {
  flex: 0 0 35%;
}

.benefits-text ul {
  list-style: disc;
  padding-left: 35px;
  line-height: 2;
  font-size: 1.2rem;
  color: #333;
}

/* Right image section */
.benefits-image {
  flex: 0 0 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive for mobile/tablet */
@media (max-width: 900px) {
  #benefits .grid-2 {
    flex-direction: column;
  }

  .benefits-text, .benefits-image {
    flex: 0 0 100%;
    width: 100%;
  }

  .benefits-image img {
    width: 100%;
    margin-top: 20px;
  }
}

/* Responsive behavior for tablets & phones */
@media (max-width: 900px) {
  .benefits-layout {
    flex-direction: column;
    text-align: center;
  }
  .benefits-image {
    justify-content: center;
    margin-top: 20px;
  }
  .benefits-image img {
    width: 100%;
    max-width: 350px;
  }
} 
/* Solvent Free Benefits Section */
.benefits-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  flex-wrap: nowrap; /* Prevents image from dropping below text */
}

/* Left text area */
.benefits-text {
  flex: 24% 0 35%;
}

.benefits-text ul {
  list-style: disc;
  padding-left: 28px;
  line-height: 3.6;
  font-size: 1.2rem;
  color: #333;
}

/* Right image area */
.benefits-image {
  flex: 0 0 65%;
  display: flex;
  justify-content: flex-end;
}

.benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive behavior */
@media (max-width: 900px) {
  .benefits-wrapper {
    flex-direction: column;
  }

  .benefits-text,
  .benefits-image {
    flex: 0 0 100%;
  }

  .benefits-image {
    justify-content: center;
  }

  .benefits-image img {
    width: 100%;
    margin-top: 20px;
  }
}

/* Contact Layout */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.contact-left {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-right {
  flex: 1;
}

/* Contact cards */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.person {
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.person:last-child {
  border-bottom: none;
}

.profile-icon {
  font-size: 48px;
  color: #7b3fe4;
  margin-bottom: 10px;
}

.person h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 4px;
  font-weight: 600;
}

.designation {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.contact-info p {
  margin: 6px 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info i {
  color: #7b3fe4;
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover {
  color: #7b3fe4;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
  }

  .contact-left {
    text-align: center;
  }

  .contact-info p {
    font-size: 0.9rem;
  }
}
 
/* CONTACT SECTION */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}

.contact-left, .contact-right {
  flex: 1;
}

/* Left side card style */
.contact-left {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.person {
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.person:last-child {
  border-bottom: none;
}

.profile-icon {
  font-size: 48px;
  color: #7b3fe4;
  margin-bottom: 10px;
}

.person h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 4px;
  font-weight: 600;
}

.designation {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.contact-info p {
  margin: 6px 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info i {
  color: #7b3fe4;
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover {
  color: #7b3fe4;
}

/* Responsive layout */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-left, .contact-right {
    width: 100%;
  }

.contact-card {
  padding: 15px;
}
}
/* Contact form styles - ensure these don't conflict with existing .card/.btn styles */
.contact-form.card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7b3fe4;
  box-shadow: 0 4px 12px rgba(123,63,228,0.08);
}

.form-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.btn.btn-primary {
  background: linear-gradient(90deg, #7b3fe4, #5b28d1);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.btn-primary:hover {
  opacity: 0.95;
}

/* Small screens: make sure left + right stack and full width */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-left, .contact-right {
    width: 100%;
    padding: 0;
  }
  .contact-form.card {
    padding: 20px;
  }
}

/* Main heading styling */
.bakuchiol-main-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: inherit; /* keeps same color as theme */
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Two-column layout (text + image) */
.bakuchiol-hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2; /* stays above overlay */
}

/* Left content */
.bakuchiol-left {
  flex: 0 0 35%;
}

.bakuchiol-points {
  list-style: disc;
  padding-left: 20px;
  line-height: 2;
  font-size: 1rem;
  color: inherit;
}

/* Right image */
.bakuchiol-right {
  flex: 0 0 65%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bakuchiol-right img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 12px;
  max-height: 200px; /* ensures image height aligns with text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive layout for mobile */
@media (max-width: 900px) {
  .bakuchiol-hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .bakuchiol-left,
  .bakuchiol-right {
    flex: 0 0 80%;
  }

  .bakuchiol-right img {
    width: 30px;
    max-height: none;
    margin-top: 20px;
  }

  .bakuchiol-main-heading {
    font-size: 1.8rem;
  }
}


/* Heading styling (keeps same font as theme) */
.bakuchiol-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 2.5rem;
  z-index: 3;
  position: relative;
}

/* Layout for text + image below heading */
.bakuchiol-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 3; /* ensures it sits above overlay/bubbles */
}



/* Left section */
.bakuchiol-left {
  flex: 0 0 50%;
}

.bakuchiol-points {
  list-style: disc;
  padding-left: 25px;
  line-height: 1.8;
  font-size: 1rem;
  color: inherit;
  text-align: left;
}

/* Right section (image) */
.bakuchiol-right {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  align-items: right;
}

.bakuchiol-right img {
  width: 30px;
  max-height: 30px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive for mobile/tablet */
@media (max-width: 900px) {
  .bakuchiol-layout {
    flex-direction: column;
    text-align: center;
  }

  .bakuchiol-left,
  .bakuchiol-right {
    flex: 0 0 100%;
  }

  .bakuchiol-right img {
    width: 30px;
    max-height: none;
    margin-top: 20px;
  }

  .bakuchiol-heading {
    font-size: 1.8rem;
  }
}

/* --- Event Modal Popup --- */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; /* Above everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal box */
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: scaleUp 0.3s ease-in-out;
}

/* Image inside modal */
.event-image {
  width: 80%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}
.close-btn:hover {
  color: #a020f0; /* your theme’s purple */
}

/* Download button */
.download-btn {
  display: inline-block;
  background: #5b1dbd; /* purple tone */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}
.download-btn:hover {
  background: #7c3aed;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleUp {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .modal-content {
    padding: 15px;
    max-width: 90%;
  }
  .download-btn {
    width: 100%;
  }
}
 

/* --- Fragrance Page Styling --- */
.fragrance-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #2c004b;
  padding-top: 100px;
  padding-bottom: 100px;
}

.fragrance-title {
  font-size: 3rem;
  font-weight: 700;
  color: #3c006b;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.fragrance-tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #7c3aed;
  margin-bottom: 50px;
  font-style: italic;
}

.fragrance-content {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: left;
  line-height: 1.8;
  font-size: 1.05rem;
}

.fragrance-content strong {
  color: #5b1dbd;
}

.fragrance-content em {
  color: #7c3aed;
  font-style: normal;
}

.fragrance-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fragrance-image img {
  width: 300px;
  max-width: 1100px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Dropdown Menu (same as used in home page) */
.dropdown {
  position: relative;
  display: inline-block;
}
/* Prevent header from overlapping content */
.fragrance-page {
  padding-top: 90px; /* adjust this to your header’s height */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f2e6ff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .fragrance-title {
    font-size: 2.2rem;
  }

  .fragrance-tagline {
    font-size: 1.3rem;
  }

  .fragrance-content {
    text-align: center;
  }

  .fragrance-image img {
    width: 95%;
  }
}

/* Base link styling */
nav a {
  color: #3c006b; /* purple text */
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Hover and active link */
nav a:hover,
nav a.active,
.nav-link.active-parent {
  color: #7c3aed; /* brighter purple highlight */
}

/* Dropdown structure */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #3c006b;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f2e6ff;
  color: #7c3aed;
}



/* --- Sticky Header --- */
#main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  z-index: 9999;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Desktop layout - unchanged */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo img {
  height: 70px;
  width: auto;
}

/* --- Navigation --- */
nav {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

nav a {
  text-decoration: none;
  color: #6a1b9a; /* violet-purple */
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #9c27b0;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #6a1b9a;
}

.dropdown-content a:hover {
  background: #f3e5f5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* --- MOBILE VIEW --- */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .logo img {
    height: 80px;
    max-width: 100%;
  }

  /* horizontal nav below logo */
  nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 6px 10px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a,
  .dropdown > a {
    display: inline-block;
    background: transparent;
    color: #6a1b9a;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  nav a:hover,
  .dropdown > a:hover {
    background: #f3e5f5;
  }

  /* Dropdown inside scroll area */
  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
  }
}











/* Add to bottom of style.css */
.container {
  width: 100%;
  max-width: 1100px; /* or whatever your desktop width is */
  margin: 0 auto;
  padding: 0 20px; /* ensures padding on mobile */
  box-sizing: border-box;
}

.hero-content, .section .container {
  overflow-x: hidden; /* avoid horizontal scroll/gap */
}

/* For mobile */
@media (max-width: 600px) {
  .container {
    padding: 0.1 15px;
  }
}

.cert-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.cert-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px; /* ensure some mobile padding */
}

@media (max-width: 600px) {
  .cert-slide img {
    max-height: 260px; /* already you had this */
  }
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ----- FORCE HEADER + NAV MOBILE FIX (paste at VERY END of style.css) ----- */

/* ensure nav isn't hidden by previous rules */
nav, nav.nav, .nav, .header-inner nav {
  display: flex !important;
}

/* reset any earlier "display:none" on nav for mobile */
@media (max-width: 768px) {
  /* header container: stacked but slim */
  header.site-header,
  .site-header,
  .header-inner {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 14px !important;
    background: transparent !important; /* preserve your theme */
  }

  /* Logo line: full width and large */
  .logo {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
     /* padding: 4px 0 6px 0 !important; */
  }
  .logo img {
    height: 90px !important;       /* BIG on mobile per your request */
    max-height: none !important;
    width: auto !important;
    display: inline-block !important;
    object-fit: contain !important;
  }

  /* Navigation row under logo: horizontal and slim */
  nav, nav.nav, .nav {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 6px 0 0 0 !important;
    padding: 6px 8px !important;
    flex-wrap: nowrap !important; /* try to keep in one line */
    overflow-x: auto !important;  /* allow horizontal scroll if it overflows */
    -webkit-overflow-scrolling: touch !important;
    background: transparent !important;
  }

  /* Nav items: compact and no wrapping */
  nav a, .nav a, .header-inner nav a {
    white-space: nowrap !important;
    padding: 6px 8px !important;
    font-size: 0.9rem !important;
    color: #ffffff !important;     /* ensure visible color */
    text-decoration: none !important;
    display: inline-block !important;
  }

  /* Active / hover styling */
  nav a.active, nav a[aria-current="page"] {
    color: var(--gold-1) !important;
    font-weight: 700 !important;
  }
  nav a:hover {
    color: var(--gold-1) !important;
  }

  /* ensure nothing is positioned over the header (z-index) */
  header.site-header, .header-inner {
    position: relative !important;
    z-index: 9999 !important;
  }
}

/* ----- End override ----- */

/* === FINAL FIX: MOBILE HEADER + NAVIGATION ALIGNMENT (SunshineExim) === */
@media (max-width: 768px) {

  /* Full-width logo line */
  header.site-header .logo,
  .site-header .logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px 0 !important;
  }

  header.site-header .logo img,
  .site-header .logo img {
    height: 60px !important; /* adjust size if needed */
    width: auto !important;
  }

  /* Navigation bar below logo — horizontal scroll */
  header.site-header nav,
  .site-header nav,
  .nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 8px 10px !important;
    margin: 0 auto !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    background: transparent !important;
  }

  /* Hide scrollbars */
  header.site-header nav::-webkit-scrollbar,
  .site-header nav::-webkit-scrollbar,
  .nav::-webkit-scrollbar {
    display: none !important;
  }

  /* Navigation buttons — violet-purple theme */
  header.site-header nav a,
  .site-header nav a,
  .nav a {
    background: linear-gradient(90deg, #8b3ef8, #a566ff) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: 0 0 10px rgba(139, 62, 248, 0.4) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
  }

  /* Hover and active color */
  header.site-header nav a:hover,
  .site-header nav a.active {
    background: linear-gradient(90deg, #a566ff, #c09bff) !important;
    box-shadow: 0 0 12px rgba(165, 102, 255, 0.6) !important;
  }

  /* Header container styling for sleek mobile look */
  header.site-header,
  .site-header {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(138,43,226,0.15)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
  }
}


/* ===========================
   FINAL: Header & Mobile Nav
   Paste THIS BLOCK at the VERY END of style.css
   (replace any other mobile header/nav overrides)
   =========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255,255,255,0.92); /* near-white header for readability */
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* keep container inside header same width as site */
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

/* Logo sizing (desktop -> mobile safe) */
.logo img {
  height: 95px;      /* desktop large */
  width: auto;
  object-fit: contain;
  transition: height .25s ease;
}

/* shrink logo gently on smaller viewports */
@media (max-width:1024px) {
  .logo img { height: 80px; }
}
@media (max-width:768px) {
  .logo img { height: 78px; } /* keep logo large on phones per your request */
}

/* NAV — default desktop inline */
.header-inner > nav,
.header-inner nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* Desktop nav links */
.header-inner nav a {
  color: var(--purple-1);
  font-weight: 600;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
}

/* MOBILE: force horizontal scrollable row of buttons right below logo */
@media (max-width: 768px) {

  /* stack header: logo first row, nav second row */
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px;
  }

  /* center logo line */
  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0;
  }

  /* nav row: horizontal, single-line, scrollable */
  .header-inner > nav,
  header nav,
  .nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1px !important;
    /*width: 50% !important; */
    padding: 8px 10px !important;
    margin-top: 6px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    background: transparent !important;
  }

  /* hide browser scrollbar */
  .header-inner > nav::-webkit-scrollbar,
  header nav::-webkit-scrollbar {
    display: none !important;
  }

  /* nav buttons look like desktop violet buttons (compact) */
  .header-inner > nav a,
  header nav a,
  .nav a,
  .dropdown > a {
    display: inline-block !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    background: linear-gradient(90deg, var(--purple-2), var(--purple-3)) !important;
    color: #fff !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(141,59,255,0.12) !important;
  }

  .header-inner > nav a:hover,
  .header-inner > nav a:focus,
  .header-inner > nav a.active {
    background: linear-gradient(90deg, var(--purple-3), var(--purple-2)) !important;
  }

  /* make dropdown open below the button without breaking layout */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: none;
    min-width: 160px;
    z-index: 10001;
  }
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: block;
  }
}


/* --- Standout Section --- */
.section.standout {
  position: relative;
  z-index: 2; /* stay above bubbles */
  text-align: center;
  padding: 80px 20px;
  background: transparent; /* keeps your existing gradient */
}

.standout-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4b1d7a; /* your existing purple shade */
  margin-bottom: 15px;
}

.standout-tagline {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.standout-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.standout-image img:hover {
  transform: scale(1.03);
}

.brochure-download {
  text-align: center;
  margin-top: 20px;
}

.btn-brochure {
  display: inline-block;
  background-color: #7d3cff; /* violet–purple shade */
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-brochure:hover {
  background-color: #682de0;
  transform: translateY(-2px);
}

.btn-brochure:active {
  transform: scale(0.97);
}

.pdf-links {
  text-align: center;
  margin-top: 20px;
}

.pdf-btn {
  display: inline-block;
  background-color: #6a0dad; /* purple theme */
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.pdf-btn:hover {
  background-color: #8548d0;
  transform: scale(1.05);
}


