* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0; /* important! No default margin */
  background-color: #f5f5f5;
  color: #333333;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
#header {
  position: sticky;
  top: 15px;
  z-index: 100;
  background-color: #ffffff;
  padding: 10px 15px;
  border-radius: 50px;
  width: fit-content;
  margin: 30px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
ul.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.nav li a {
  text-decoration: none;
  color: #333333;
  line-height: 1;
  font-weight: 600;
  padding: 6px 14px;
  transition: 0.3s;
}
ul.nav li a:hover {
  background-color: #333333;
  color: white;
  border-radius: 10px;
}
ul.nav li a.active {
  background-color: #b71c1c;
  padding: 6px 5px;
  color: white;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  background-color: #b71c1c;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  margin-right: 12px;
}

.btn:hover {
  background-color: #880e0e;
  transform: translateY(-2px);
}

/* The outline button — white with red border */
.btn-outline {
  background-color: white;
  color: #b71c1c;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

#hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a237e 0%, #b71c1c 100%);
  border-radius: 16px;
  margin-top: 30px;
  color: white;
}

#hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: white;
}

#hero h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

#hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.8);
}

#footer {
  background: linear-gradient(to right, #1a237e, #333333);
  color: white;
  font-size: 20px;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-radius: 12px;
  margin-bottom: 30px;
}

#footer a {
  color: #ffcc80;
  text-decoration: none;
}

#footer a:hover {
  color: white;
}

#footer p {
  margin: 6px 0;
  font-size: 14px;
}

/* Why Choose Us Section */
#why-us {
  padding: 60px 20px;
  text-align: center;
}

#why-us h2 {
  font-size: 32px;
  color: #1a237e;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666666;
  font-size: 15px;
  margin-bottom: 40px;
}

/* The flex container holding all 4 cards */
.cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Each individual card */
.card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

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

.card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* Products Preview Section */
#products-preview {
  padding: 60px 20px;
  text-align: center;
  background-color: white;
  border-radius: 16px;
  margin-top: 40px;
}

#products-preview h2 {
  font-size: 32px;
  color: #1a237e;
  margin-bottom: 10px;
}

.product-card {
  border-top: 4px solid #b71c1c;
}
.product-card h3 a {
  text-decoration: none;
}
.product-card h3 a:hover {
  color: #b71c1c;
}

p.product-sizes {
  display: inline-block;
  background-color: #f5f5f5;
  color: #b71c1c;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
  white-space: nowrap;
}

/* Contact Strip */
#contact-strip {
  background: linear-gradient(135deg, #1a237e 0%, #b71c1c 100%);
  border-radius: 16px;
  padding: 40px 30px;
  margin-top: 40px;
}

.contact-strip-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.strip-item .icon {
  font-size: 35px;
  margin-bottom: 0;
}

.strip-item h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px 0;
}

.strip-item p {
  color: white;
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.strip-item a {
  color: #ffcc80;
  text-decoration: none;
}

.strip-item a:hover {
  color: white;
}

/* Products.html */
/* Page Hero — used on all inner pages */
#page-hero {
  background: linear-gradient(135deg, #1a237e 0%, #b71c1c 100%);
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

#page-hero h1 {
  color: white;
  font-size: 36px;
  margin-bottom: 10px;
}

#page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

/* Product Section headings */
.product-section {
  margin-bottom: 50px;
}

.product-section h2 {
  font-size: 26px;
  color: #1a237e;
  border-left: 5px solid #b71c1c;
  padding-left: 12px;
  margin-bottom: 8px;
  background: none;
}

/* About Page */
#about-content {
  display: flex;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 2;
  min-width: 280px;
}

.about-text h2 {
  font-size: 22px;
  color: #1a237e;
  border-left: 5px solid #b71c1c;
  padding-left: 12px;
  margin-bottom: 10px;
  margin-top: 30px;
  background: none;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-info {
  flex: 1;
  min-width: 250px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #b71c1c;
  height: fit-content;
}
.about-info:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}
.about-info h2 {
  font-size: 20px;
  color: #1a237e;
  margin-bottom: 20px;
  background: none;
  border: none;
  padding: 0;
}

.about-info ul {
  list-style: none;
  padding: 0;
}

.about-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #444444;
  line-height: 1.6;
}

.about-info ul li:last-child {
  border-bottom: none;
}

.about-badge {
  background: linear-gradient(135deg, #1a237e 0%, #b71c1c 100%);
  color: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 30px 0;
}
.about-badge:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.about-badge span {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.about-badge h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.about-badge p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

/* Gallery Page */
#gallery-grid {
  padding: 40px 20px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.gallery-item:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1a237e;
}

/* Contact Page */
#contact-content {
  display: flex;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.contact-details {
  flex: 1;
  min-width: 280px;
}

.contact-details h2 {
  font-size: 24px;
  color: #1a237e;
  border-left: 5px solid #b71c1c;
  padding-left: 12px;
  margin-bottom: 25px;
  background: none;
}

.contact-item {
  background: white;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #b71c1c;
}

.contact-item h3 {
  font-size: 15px;
  color: #1a237e;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 14px;
  color: #555555;
  margin: 0;
  line-height: 1.8;
}

.contact-item a {
  color: #b71c1c;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: #1a237e;
}

.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map h2 {
  font-size: 24px;
  color: #1a237e;
  border-left: 5px solid #b71c1c;
  padding-left: 12px;
  margin-bottom: 25px;
  background: none;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enquiry Form */
#enquiry-form {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  color: #333333;
  background-color: #f9f9f9;
  box-sizing: border-box;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border: 2px solid #b71c1c;
  background-color: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #888888;
}

.form-group textarea {
  resize: vertical;
}

#enquiry-form .btn {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

#enquiry-form .btn:hover {
  background-color: #880e0e;
  transition: 0.3s;
  transform: translateY(-2px);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 25px;
  background-color: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}
@media (min-width: 700px) {
  .container {
    width: 90%;
  }
}

/* ================================
   RESPONSIVE DESIGN — MOBILE
   Applies when screen is 768px 
   or smaller (tablets and phones)
================================ */

@media (max-width: 768px) {
  /* Container — add side padding */
  .container {
    padding: 0 12px;
  }

  /* Header — make it full width on mobile */
  #header {
    width: 100%;
    padding: 8px 12px;
    border-radius: 30px;
    margin: 12px auto;
    top: 8px;
    box-sizing: border-box;
  }

  /* Nav — smaller gap between links */
  ul.nav {
    gap: 0px;
    justify-content: space-between;
  }

  ul.nav li a {
    font-size: 11px;
    padding: 5px 6px;
  }

  /* Hero — smaller padding and font */
  #hero {
    padding: 50px 20px;
    margin-top: 16px;
  }

  #hero h1 {
    font-size: 26px;
  }

  #hero h2 {
    font-size: 16px;
  }

  #hero p {
    font-size: 14px;
  }

  /* Buttons stack on mobile */
  #hero .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* Cards stack vertically on mobile */
  .cards {
    flex-direction: column;
  }

  .card {
    min-width: unset;
    width: 100%;
  }

  /* Page hero smaller on mobile */
  #page-hero {
    padding: 40px 16px;
  }

  #page-hero h1 {
    font-size: 26px;
  }

  /* About content stacks on mobile */
  #about-content {
    flex-direction: column;
    padding: 20px 0;
  }

  /* Contact content stacks on mobile */
  #contact-content {
    flex-direction: column;
    padding: 20px 0;
  }

  /* Contact strip stacks on mobile */
  .contact-strip-items {
    flex-direction: column;
    gap: 24px;
  }

  /* Gallery stacks on mobile */
  .gallery-item {
    max-width: 100%;
  }

  /* Products preview stacks */
  #products-preview {
    padding: 40px 16px;
  }

  /* Footer smaller text */
  #footer {
    font-size: 13px;
    padding: 20px 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 390px) {
  ul.nav li a {
    font-size: 10px;
    padding: 4px 6px;
  }
}
.gallery-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-images {
    grid-template-columns: 1fr;
  }
}
