
html, body {
  height: 100%;
  margin: 0;
  padding: 0;

  /* one static gradient for the whole page */
  background: linear-gradient(90deg, #997346 0%, #f2c987 100%);
  background-attachment: fixed; /* keeps it fixed while scrolling */
  background-size: cover;
  /* font-family: 'Inter', sans-serif;  */

  overflow-x: hidden;
}


/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: calc(90vh - 80px);
  background: transparent; /* remove extra gradient */
}

/* Container for text and image */
.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

/* Left side text */
.hero-text {
  flex: 1;
  color: #072638;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* horizontally center */
  text-align: center;  /* center the text */
  margin-left: 80px;
}

/* Headline */
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  animation: fadeInDown 1s ease-in-out;
}

/* Subheadline */
.hero-text .subheadline {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #072638;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Tagline */
.hero-text .tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #072638;
  margin-bottom: 25px;
  max-width: 550px;
  animation: fadeInUp 1.5s ease-in-out;
}

/* CTA Button */
.hero-text .hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, #997346, #f2c987);
  color: #072638;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1.8s ease-in-out;
}

.hero-text .hero-cta:hover {
  background: linear-gradient(90deg, #805c32, #e0b35e);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
}

/* Right side container (half circle + image) */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Half-circle background */
/* Hero image container with bigger semi-oval gradient */
.hero-image::before {
  content: "";
  position: absolute;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;       /* wider */
  height: 900px;      /* taller */
  background: #072638;
  border-radius: 50% 0 0 50%;   /* left semi-circle/oval */
  z-index: 1;
  
}

/* Transparent image */
.hero-image img {
  position: relative;
  z-index: 2; /* put above gradient half circle */
  width: 100%;
  max-width: 500px;
  margin-left: 90px; 
}























/* Bowl Image (only one at a time) */
.bowl {
  position: absolute;
  width: 300px;
  height: auto;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}

/* ---------------- Left half circle using offset-path ---------------- */
@supports (offset-path: path('M0 0')) {
  .bowl { left: 0; top: 0; transform: none; }

  .bowl.run-animation {
  /* Path: start (right, top) → oval arc to (right, bottom) swinging LEFT */
  -webkit-offset-path: path("M700 -200 A 400 250 0 1 0 700 550");
  offset-path: path("M500 -100 A 400 250 0 1 0 700 550");

  -webkit-offset-rotate: 0deg;
  offset-rotate: 0deg;

  animation: arcMoveLeft 6s ease-in-out forwards;
}


  @keyframes arcMoveLeft {
    0%   { -webkit-offset-distance: 0%; offset-distance: 0%; opacity: 0; }
    8%   { -webkit-offset-distance: 3%; offset-distance: 3%; opacity: 1; }
    50%  { -webkit-offset-distance: 50%; offset-distance: 50%; opacity: 1; }
    92%  { -webkit-offset-distance: 97%; offset-distance: 97%; opacity: 1; }
    100% { -webkit-offset-distance:100%; offset-distance:100%; opacity: 0; }
  }
}

/* ---------------- Fallback for browsers without offset-path ---------------- */
@supports not (offset-path: path('M0 0')) {
  .bowl {
    top: 50%;
    right: 0;
    transform-origin: -150% 50%; /* rotate around a point to the LEFT */
    transform: translateY(-50%);
  }

  .bowl.run-animation {
    animation: fallbackArcLeft 6s ease-in-out forwards;
  }

  /* Negative radius makes arc swing left */
  @keyframes fallbackArcLeft {
    0%   { transform: translateY(-50%) rotate(90deg) translateX(250px) rotate(-90deg); opacity: 0; }
    8%   { transform: translateY(-50%) rotate(75deg) translateX(250px) rotate(-75deg); opacity: 1; }
    50%  { transform: translateY(-50%) rotate(0deg)  translateX(250px) rotate(0deg);   opacity: 1; }
    92%  { transform: translateY(-50%) rotate(-75deg) translateX(250px) rotate(75deg); opacity: 1; }
    100% { transform: translateY(-50%) rotate(-90deg) translateX(250px) rotate(90deg); opacity: 0; }
  }
}

/* Prevent horizontal overflow */
html, body { overflow-x: hidden; }



/* Disable hero image & animation on small screens */
/* Disable hero image & animation on small screens */
@media (max-width: 820px) {
    .circle {
    display: none;
  }
  
  /* Hide the whole right side container (dark semi-circle + bowl animation) */
  .hero-image {
    display: none !important; /* hide completely */
    background: none;
  }
  .hero-image::before {
    background: none;
  }

  /* Make hero flex vertically, full width text */
  .hero {
    display: flex;
    flex-direction: column; /* stack text vertically */
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* adjust height if needed */
  }

  .hero-text {
    margin-left: 0;   /* remove left margin */
    text-align: center;
    width: 100%;
    padding: 0 20px;
  }

  /* Ensure bowl animation doesn't show */
  .bowl {
    display: none !important;
  }
}



















/* -------------------------------------------------------------------------------------------------------------------- */
/* About Section */

/* About Section Wrapper */
.about {
  margin-top: 270px;
  width: 100%;
  padding: 60px 20px;
  background: #072638;
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 60px;
}

/* Glass effect only around text */
.about-container {
  position: relative;   /* so child abs. positioned image uses this */
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: flex-start; /* text on left */
  padding: 40px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px) contrast(120%);
  -webkit-backdrop-filter: blur(10px) contrast(120%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
              0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Text inside glass */
.about-text {
  flex: 1;
  color: #f2c987;
  z-index: 2;
}

/* Bullet points */
.about-text ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.about-text li {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* CTA */
.about-cta {
  display: inline-block;
  background: linear-gradient(90deg, #997346, #f2c987);
  color: #072638;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-cta:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Image breaking out of glass */
.about-image {
  position: absolute;
  right: -60px;   /* adjust how far it overflows */
  bottom: -40px;  /* push it slightly out */
  z-index: 0;     /* behind text glass */
}

.about-image img {
  max-width: 500px;
  height: auto;
}




/* Base state */
.about-container,
.about-image {
  opacity: 0;
}

/* Triggered when visible */
.about-container.visible {
  animation: fadeSlideUp 0.8s ease-out forwards;
}

.about-image.visible {
  animation: fadeScaleUp 0.9s ease-out forwards;
  animation-delay: 0.2s; /* small delay so text appears first */
}

/* Keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}




@media screen and (max-width: 768px) {  /* Targets tablets and phones */
    .about-container {
        background: none !important;   /* Remove glass effect background */
        backdrop-filter: none !important;  /* Remove blur effect */
        box-shadow: none !important;    /* Remove shadow if any */
    }
}






















/* ------------------------------------------------------------P R O D U C T ------------------------------------------------- */
/* Products Section with background image */
.products {
  position: relative;
  padding: 50px 20px;
  background: url('./img/home/product-bg.png') center/cover no-repeat; /* your bg image */
  text-align: center;
  margin-bottom: 50px;
}

/* Glass overlay to hold all content */
.products-overlay {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Title */
.products-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #072638;
  font-family: 'Inter', sans-serif;
}

/* Grid layout: 3 columns on desktop */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

/* Responsive */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;

  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); 
  border-radius: 30px;
}

.product-card img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  /* transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; */

}


/* Add the hover effect */
/* .product-card:hover img {
  transform: scale(1.05); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
} */

/* Glass effect for description box under image */
.product-info {
  margin-top: -20px;
  padding: 20px;
  width: 90%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #072638;
  text-align: center;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-info p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Container for the button */
.view-all-container {
  text-align: center;
  margin-top: 30px;
}

/* The button itself */
.view-all-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #072638; /* Darkazure text */
  text-decoration: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #997346, #f2c987);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #fff; /* optional: text goes white on hover */
}



















/* ----------------------- C E R T I F I C A T I O N ---------------------------------- */
/* Certifications Section */
.certifications {
  padding: 80px 20px;
  text-align: center;
}

.certifications-container {
  max-width: 1200px;
  margin: 0 auto;
}

.certifications h2 {
  font-size: 2.5rem;
  margin-bottom: 05px;
  color: #072638;
}

.certifications-subtitle {
  font-size: 1.1rem;
  color: #072638;
  margin-bottom: 40px;
}

.certification-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch; /* makes equal heights */
}


.cert-card {
  background: #072638;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.273);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cert-card img {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.cert-card p {
  font-size: 1rem;
  color: #fff;
}































/* -------------------------------- I N Q U I R E ---------------------------------------- */

/* Inquiry Section */
.inquiry {
  padding: 10px 20px;
  margin-bottom: 40px;
}

.inquiry-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.inquiry-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #072638;
}

.inquiry-container p {
  font-size: 1.1rem;
  color: #072638;
  margin-bottom: 40px;
}

/* Form Styles */
.inquiry-form {
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #000000;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #997346; /* spice color */
  box-shadow: 0 0 4px rgba(153, 115, 70, 0.3);
}

/* Button */
.inquiry-form .cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #072638;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.inquiry-form .cta-btn:hover {
  background: #07263885;
}




























