body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F6F1;
    padding-top: 90px; /* prevent content hidden behind fixed header */
}

img.logo {
    max-width: 140px !important;
}
.navbar {
    transition: all 0.3s ease;
}

.nav-link {
    color: #1E1E1E !important;
    position: relative;
}

.nav-link:hover {
    color: #F4B223 !important;
}

.btn-warning {
    background-color: #F4B223;
    border: none;
}

.btn-warning:hover {
    background-color: #e2a21f;
}
.hero-section {
    background-color: #FEF9EE;
}

.hero-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #F4B223;
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
}

.hero-product {
    z-index: 2; 
}

.badge {
    border-radius: 50px;
}
.hero-product {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
.about-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #e0a800;
  font-weight: 600;
}

.about-text h2 {
  font-size: 42px;
  margin: 15px 0 25px;
  font-weight: 700;
  color: #222;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
}

.highlight-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #222;
}

/* Subtle Egg Background Shapes */

.egg-bg {
  position: absolute;
  width: 300px;
  height: 420px;
  background: radial-gradient(circle at 40% 30%, #fff8dc, #fff 70%);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  opacity: 0.15;
  z-index: 0;
}

.egg-1 {
  top: -80px;
  left: -100px;
}

.egg-2 {
  bottom: -100px;
  right: -80px;
}

/* Responsive */

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .egg-bg {
    width: 200px;
    height: 280px;
  }
}

.why-content {
    position: relative;
}

.why-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(244, 178, 35, 0.15);
    position: absolute;
    top: -20px;
    left: -10px;
	
	font-size: 64px;
    font-weight: 700;
    color: rgb(0 0 0 / 15%);
    position: absolute;
    top: -75px;
    left: -10px;
}

.why-content h4 {
    position: relative;
    z-index: 2;
}

.why-blob {
    width: 300px;
    height: 300px;
    background: #F4B223;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    margin: auto;
}
.product-card {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.product-card img {
    max-height: 220px;
    object-fit: contain;
}

.product-card.featured {
    border: 2px solid #F4B223;
    transform: scale(1.03);
}
.report-card {
    background: #ffffff;
    border-radius: 20px;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #F4B223;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.report-icon {
    font-size: 36px;
}

.view-report {
    font-size: 14px;
    font-weight: 500;
    color: #F4B223;
}
.company-card {
    border-radius: 20px;
}

.contact-form {
    border: 1px solid #eee;
}

.contact-blob {
    width: 350px;
    height: 350px;
    background: #F4B223;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.form-control {
    border-radius: 12px;
    padding: 14px;
}
.footer {
  background: #fffdf6;
  border-top: 1px solid #f0e6c8;
  padding: 40px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand h3 {
  font-size: 22px;
  color: #222;
}

.footer-brand p {
  font-size: 14px;
  color: #777;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #e0a800;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
  background: #f7f3e4;
  font-size: 13px;
  color: #777;
}
