@import url("https://fonts.googleapis.com/css2?family=Acme&family=Climate+Crisis:YEAR@1979&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* =========================
   FADE IN
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================
   FADE IN UP
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SLIDE IN RIGHT
========================= */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   ANIMATION CLASSES
========================= */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.9s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.9s ease-out forwards;
}

/* =========================
   OPTIONAL DELAYS
========================= */
.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-500 {
  animation-delay: 0.5s;
}
/* =========================
   ZOOM IN
========================= */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nav-link {
  color: white;
  position: relative;
  padding-bottom: 4px;
}

/* underline */
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #b72012;
  transition: width 0.3s ease;
}

/* hover effect */
.nav-link:hover {
  color: #b72012;
}

.nav-link:hover::before {
  width: 50%;
}

.sidebar-link:hover {
  color: #b72012;
}
.sidebar-link {
  color: black;
  font-size: 16px;
}
.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: white;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 300px;
}

.item-card:hover {
  padding: 12px;
  border-radius: 15px;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Poppins" !important;
  background-color: #ffffff;
  color: #333333;
}

.top-bar {
  height: 28px;
  background-color: #b01418;
}

.top-bar .top-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar .top-icon {
  height: 16px;
  margin-right: 10px;
}

.top-bar .try-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.main-navbar {
  background-color: #b4990c;
  padding: 10px 0; /* adjust padding to fit larger logo */
}

/* .nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 65px; 
    max-height: 65px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 22px;
    font-weight: 600;
} */
.banner img {
  width: 100%;
  height: 560px; /* increased height from 420px */
  object-fit: cover;
}
.welcome {
  text-align: center;
  padding: 60px 20px;
}

.welcome-logo {
  height: 120px;
}

.welcome h1 {
  color: #b01418;
  margin: 20px 0;
}

.welcome button {
  background-color: #b01418;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
}
.items {
  background: #f6f6f6;
  /* padding: 60px 20px; */
  text-align: center;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.item-card img {
  width: 100%;
  height: 220px; /* fixed height to match nuts-2 sizing */
  object-fit: cover; /* crop/cover to fill the area uniformly */
  border-radius: 12px;
}
.info {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  font-size: 18px;
}
.footer {
  background: #525b5b; /* changed to match screenshot darker grey/green */
  color: #e9f0f0;
  padding: 60px 20px 30px;
  /* font-family: 'Georgia', serif; */
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

.footer-about {
  flex: 1;
  text-align: left;
}

.footer-about .footer-logo {
  width: 140px;
  display: block;
  margin-bottom: 20px;
}

.footer-about p {
  max-width: 420px;
  line-height: 1.7;
  color: #dfe7e7;
}

.footer-links-col {
  width: 420px;
}

.footer-links-col h4 {
  color: #f3f6f6;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 0;
}

.footer-links-list a {
  color: #e6efef;
  text-decoration: none;
  /* font-style: italic; */
}

.footer-sep {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 30px auto 20px;
  max-width: 1200px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto 10px;
  color: #e6efef;
  padding-bottom: 20px;
}
.testimonials {
  background-image: url("../img/bg.JPG");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.test-design {
  width: 40px;
  opacity: 0.95;
}

.testimonials-title h2 {
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 28px;
  border-radius: 16px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  color: #333;
  font-size: 14px;
  line-height: 1.7;
  /* font-style: italic; */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eee;
}

.author-name {
  font-weight: 700;
  color: #222;
}
.about-hero {
  background-image: url("../img/about.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: #fff;
}

.about-content {
  padding: 50px 20px;
  background: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro {
  padding: 40px 20px 80px;
  background: #f7f7f7;
}

.about-intro .about-inner h1 {
  color: #b01418;
  margin-bottom: 12px;
}
.about-feature {
  padding: 60px 20px;
  background: #fff;
}

.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.feature-left {
  flex: 1;
}

.feature-sub {
  color: #bbb;
  letter-spacing: 3px;
  margin: 0 0 10px;
}

.feature-title {
  color: #333;
  margin: 0 0 18px;
}

.feature-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}

.feature-right {
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image-wrap {
  background: #f8f8f8;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.feature-image-wrap img {
  width: 380px;
  height: 260px;
  object-fit: cover;
  display: block;
}

.feature-caption {
  margin-top: 12px;
  font-weight: 700;
  color: #333;
}

/* Mission & Vision section */
.mv-section {
  background: #f7f7f7;
  padding: 60px 20px;
}

.mv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.mv-col {
  flex: 1;
  position: relative;
  padding: 20px 40px;
}

.mv-bg {
  position: absolute;
  left: 20px;
  top: 8px;
  font-size: 80px;
  color: #efefef;
  font-weight: 700;
  letter-spacing: 6px;
}

.mv-col h4 {
  color: #999;
  margin: 18px 0 6px;
}

.mv-col h3 {
  color: #333;
  margin: 0 0 12px;
  font-size: 28px;
}

.mv-col p {
  color: #666;
  line-height: 1.7;
}

/* Brand graphic text */
.brand-graphic {
  background: #fff;
  padding: 40px 20px 60px;
  text-align: center;
}

.brand-text {
  font-size: 96px;
  color: #f08a24; /* orange dot effect color */
  font-weight: 900;
  letter-spacing: 6px;
  /* dotted text effect */
  background-image: radial-gradient(#f08a24 10%, transparent 11%);
  background-size: 6px 6px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.footer-center-image {
  text-align: center;
  background: #fff;
  padding: 30px 0 10px;
}

.footer-center-image img {
  max-width: 480px;
  width: 60%;
  height: auto;
  display: inline-block;
}

/* Contact section styles */
.contact-section {
  background: #fff;
  padding: 60px 20px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-title h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
}

.contact-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-card {
  flex: 1;
  max-width: 320px;
  background: #fff;
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  text-align: center;
}

.contact-card .icon {
  font-size: 28px;
  color: #f08a24;
  margin-bottom: 8px;
}

.contact-card h4 {
  margin: 6px 0 6px;
  color: #333;
}

.contact-card p {
  color: #666;
}

.contact-card.highlight {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-map-form {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.map-box {
  flex: 1;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
  flex: 1;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #eee;
  border-radius: 24px;
}

.contact-form textarea {
  border-radius: 10px;
}

.contact-form button {
  background: #b01418;
  color: #fff;
  border: 0;
  padding: 12px 28px;
  border-radius: 24px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .feature-inner {
    flex-direction: column-reverse;
  }
  .feature-right {
    width: 100%;
  }
  .feature-image-wrap img {
    width: 100%;
    height: auto;
  }
  .mv-inner {
    flex-direction: column;
  }
  .mv-bg {
    font-size: 48px;
    left: 10px;
  }
  .brand-text {
    font-size: 48px;
  }
  .contact-cards {
    flex-direction: column;
  }
  .contact-map-form {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .logo {
    height: 48px;
    max-height: 48px;
  }
}
.tab-btn {
  padding: 8px 18px;
  border-radius: 9999px;
  background-color: #f3f4f6;
  color: #111;
  font-size: 14px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

.tab-btn:hover {
  background-color: #b72012;
  color: #fff;
  transform: translateY(-1px);
}

.tab-btn.active {
  background-color: #b72012;
  color: #fff;
  box-shadow: 0 4px 10px rgba(183, 32, 18, 0.3);
}
