/* Reset + base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #000;
}

html{
  scroll-behavior: smooth;
}

/* Top bar */
.top-bar {
  background: #f7a600;
  color: #000;
  display: flex;
  justify-content: space-around;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

.top-bar .item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Main nav */
.main-nav {
  background-color: #0f1a24;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 18px;
  font-weight: 600;
}

.nav-links a {
  margin-left: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  text-decoration: underline;
}

.contact-btn {
  background-color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #fff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
}


/* About Section */
.about {
  padding: 80px 10%;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  max-width: 520px;
  font-size: 18px;
  color: #6a5500;
  line-height: 1.7;
  position: relative;
  padding-right: 20px;
}

.experience-badge {
  position: absolute;
  bottom: -90px;
  left: 0;
  background-color: #7e22ce;
  color: white;
  padding: 12px 16px;
  border-radius: 10px 10px 0 10px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  width: 70px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.experience-badge span {
  display: block;
  font-size: 18px;
}

.experience-badge small {
  display: block;
  font-size: 10px;
  font-weight: normal;
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  max-width: 350px;
  border-radius: 6px;
}

/* Storage Types Section */
.storage-types {
  background: linear-gradient(to right, #1f1f1f, #2b2b2b);
  padding: 80px 10%;
  color: #000;
}

.storage-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.storage-card {
  background-color: #e7e7e7;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.storage-card:hover {
  transform: translateY(-8px);
}

.storage-card .icon {
  width: 40px;
  margin-bottom: 16px;
}

.storage-card h3 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: bold;
}

.storage-card p {
  font-size: 13px;
  color: #333;
}

/* ---------- Responsive Layouts ---------- */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-image {
    text-align: left;
    margin-top: 30px;
  }

  .about-text {
    padding-right: 0;
  }

  .storage-container {
    justify-content: center;
  }

  .storage-card {
    max-width: 100%;
  }

  .main-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-nav {
    padding: 14px 20px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .hero-btn {
    padding: 8px 14px;
  }

  .about {
    padding: 60px 6%;
  }

  .storage-types {
    padding: 60px 6%;
  }

  .storage-container {
    flex-direction: column;
    align-items: center;
  }

  .storage-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text {
    left: 6%;
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .about-text {
    font-size: 16px;
  }

  .experience-badge {
    font-size: 14px;
    padding: 10px 14px;
    width: 60px;
  }

  .experience-badge span {
    font-size: 16px;
  }

  .experience-badge small {
    font-size: 9px;
  }

  .storage-card h3 {
    font-size: 13px;
  }

  .storage-card p {
    font-size: 12px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.categories-section {
  padding: 2rem 4rem;
  margin-top: 1rem;
}

.category-heading {
  font-size: 2.2rem;
  color: orange;
  font-weight: bold;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: flex-start; /* Align to left corner */
}

.categories-container {
  margin-top: 10rem;
  display: flex;
  gap: 5rem; /* spacing between images */
  flex-wrap: wrap;
  justify-content: center; /* Center the images */
  
}

.category-card {
  text-align: center;
}

.category-card img {
  width: 550px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  
}

.category-card img:hover {
  transform: scale(1.03);
}

.category-card p {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}
.business-section {
  background-color: white;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

.business-border {
  height: 100px;
  background-color: #080351; /* Blue top border */
}

.business-tag {
  background-color: #f4c542; /* Yellow background */
  color: white;
  font-weight: bold;
  display: inline-block;
  padding: 0.4rem 2rem;
  margin: -1rem auto 2rem auto;
  border-radius: 50px;
  font-size: 1.1rem;
  position: relative;
  top: -15px;
}

.business-content {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.business-subtitle {
  color: #d4b330;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  text-transform: uppercase;
}

.business-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

.business-list {
  list-style: disc inside;
  text-align: left;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding-left: 0;
}
/* Section styling */
.key-feature-section {
  background-color: #fff;
  padding: 0;
  margin: 0;
}

/* Top Blue Border */
.blue-border {
  height: 100px;
  background-color: #080351;
}

/* Content Wrapper */
.key-feature-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  gap: 2rem;
}

/* Left image with curved right border */
.feature-image {
  width: 250px;
  height: 180px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right side content */
.feature-content {
  flex: 1;
  text-align: left;
}

.feature-title {
  text-align: right;
  font-size: 1.8rem;
  font-weight: bold;
  color: #c3a731;
  margin-bottom: 2rem;
  text-transform: lowercase;
}

/* List styling */
.feature-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* Commitment block */
.commitment h3 {
  color: #9c7400;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.commitment p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.reviews-section {
  padding: 2rem 2rem;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111;
}

.reviews-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.review-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
}

.stars {
  font-size: 1.2rem;
  color: #ccc; /* change to gold later */
  margin-bottom: 0.5rem;
}

.review-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.review-body {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}
.site-footer {
  background-color: #fff;
  color: #000;
  padding: 3rem 2rem;
  font-size: 0.95rem;
  font-family: sans-serif;
}

.footer-divider {
  height: 4px;
  background-color: #222;
  margin-bottom: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 250px;
  display: block;
  margin-bottom: 0.5rem;
  margin-left: 3rem;
}

.footer-caption {
  font-weight: bold;
  line-height: 1.3;
}

.footer-heading {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-style: italic;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #000;
  text-decoration: none;
  font-style: italic;
}
.contact-section {
  background-image: url('images/warehouse.jpg');
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  position: relative;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.3); /* Optional dark overlay */
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-form button {
  width: 100%;
  background-color: #111;
  color: white;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #333;
}
.product-listing {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-item {
  display: flex;
  align-items: center; /* Ensure vertical centering */
  gap: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.product-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0; /* Prevent shrinking */
}

.product-info {
  flex: 1;
}

.product-info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 0.4rem;
}

.label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}


@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  /* Top bar */
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Main navigation */
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Hero section */
  .hero {
    height: 300px;
  }

  .hero-text {
    left: 6%;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .hero-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* About section */
  .about {
    padding: 60px 6%;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .about-text {
    padding: 0;
    max-width: 90%;
  }

  .experience-badge {
    position: static;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transform: none;
    width: auto;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px 16px;
    background-color: #7e22ce;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .experience-badge span {
    font-size: 16px;
  }

  .experience-badge small {
    font-size: 10px;
  }

  .about-image {
    text-align: center;
    margin-top: 1rem;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  /* Storage section */
  .storage-types {
    padding: 60px 6%;
  }

  .storage-container {
    flex-direction: column;
    align-items: center;
  }

  .storage-card {
    width: 100%;
    max-width: 90%;
  }

  /* Categories */
  .categories-container {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  .category-card img {
    width: 100%;
    max-width: 90%;
  }

  .category-heading {
    font-size: 1.5rem;
  }

  /* Key Feature Section */
  .key-feature-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .feature-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem auto;
    border-radius: 20px;
  }

  .feature-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .feature-list {
    text-align: left;
    padding-left: 1.2rem;
  }

  /* Reviews */
  .reviews-container {
    justify-content: center;
  }

  .review-card {
    width: 100%;
    max-width: 90%;
  }

  /* Product listing */
  .product-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
  }

  .product-img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  .product-info p,
  .label {
    font-size: 0.9rem;
  }

  .product-listing {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-left: 0;
    width: 200px;
  }

  .footer-links {
    margin-bottom: 1rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  /* Contact section */
  .contact-form {
    width: 100%;
    max-width: 90%;
  }

  .contact-title {
    font-size: 1.5rem;
  }
}
