body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 20px;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/* Logo with image */
/* Logo button (blends with header) */
.logo-button {
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 0; /* Remove padding so it blends */
  background: transparent; /* same as header */
  display: inline-block;
}

.logo-button span {
  font-weight: bold;
}

.logo-white {
  color: white;
}

.logo-orange {
  color: #f39c12;
}

.logo-button:hover {
  opacity: 0.8; /* subtle hover effect */
}


/* Header */
header {
  background: #1f2a44;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 5px 0;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid #f39c12;
}

/* Hamburger button (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero section */
/* Hero slider full section */
.hero-swiper {
  position: relative;
  width: 100%;
  height: 75vh;  /* same height as before */
  overflow: hidden;
}

/* Each slide fills area */
.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #000; /* optional: fills empty space */
}

/* Dark overlay on images for text readability */
.hero-swiper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Centered text */
.hero-overlay {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* CTA button */
.hero-overlay .cta {
  background: #f39c12;
  padding: 12px 24px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s;
}
.hero-overlay .cta:hover {
  background: #d35400;
  transform: scale(1.05);
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  z-index: 3;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #f39c12;
  opacity: 0.8;
}

/* Buttons */
.cta {
  display: inline-block;
  background: #f39c12;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.2s;
}
.cta:hover {
  background: #d35400;
  transform: scale(1.05);
}

/* Features section */
.features ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.features li {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 2rem;
  background: #2c3260;
  color: white;
}
.cta-block h2 {
  margin-bottom: 1rem;
}

/* Contact form */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  background: #1f2a44;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background: #f39c12;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #1f2a44;
  color: white;
  margin-top: 2rem;
}

/* Only affect h2 in the products section */
.products h2 {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.products h2 img {
  margin-left: 350px;
  width: 350px;   /* adjust as needed */
  height: 250px;
  object-fit: contain;
}

/* -----------------------
   About page scoped styles
   ----------------------- */
.about-page {
  padding: 3rem 0;
  color: #222;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.about-hero .about-text h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.about-hero .lead {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1rem;
  max-width: 60ch;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: block;
  object-fit: cover;
}

/* Story + mission */
.story-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.story-mission h2 {
  margin-bottom: 0.5rem;
}

/* Values */
.core-values {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.values-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.values-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.6rem;
  border-radius: 8px;
  background: #f7f8fa;
}

.value-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #f39c12; /* brand orange */
}

/* Credibility / stats */
.credibility {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: space-between;
  text-align: center;
}

.cred-item h3 {
  font-size: 1.8rem;
  margin: 0;
  color: #1f2a44;
}

.cred-item p {
  margin: 0;
  color: #666;
}

/* Team block */
.team {
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.team-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.team-copy p {
  margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(90deg, rgba(31,42,68,0.95), rgba(44,50,96,0.95));
  color: white;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.final-cta h2 {
  margin: 0 0 0.5rem 0;
}

.final-cta p {
  margin: 0 0 1rem 0;
}

/* Buttons (ensure they match main site) */
.about-page .cta {
  display: inline-block;
  background: #f39c12;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.about-page .cta:hover {
  transform: translateY(-2px);
  background: #d35400;
}

/* Responsive: stack columns on small screens */
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; }
  .story-mission { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .credibility { flex-direction: column; gap: 0.8rem; align-items: center; }
}

/* -----------------------
   Home page additions
   ----------------------- */

/* How It Works Section */
.how-it-works {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
  padding: 0 20px;
}
.how-it-works h2 {
  margin-bottom: 30px;
  color: #1f2a44;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.step {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.step h3 {
  margin-bottom: 10px;
  color: #1f2a44;
}

/* Testimonials */
.testimonials {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  padding: 0 20px;
}
.testimonials h2 {
  margin-bottom: 30px;
  color: #1f2a44;
}
.testimonial {
  background: #fff7e6;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #f39c12;
  font-style: italic;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* Quick CTA */
.quick-cta {
  background: #1f2a44;
  color: white;
  text-align: center;
  padding: 3rem 20px;
  border-radius: 10px;
  margin: 50px 0;
}
.quick-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.quick-cta p {
  font-size: 1.2rem;
}
.quick-cta a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s;
}
.quick-cta a:hover {
  background: #d35400;
  transform: scale(1.05);
}

/* Hero overlay adjustment for new layout */
.hero-overlay {
  top: 60%;
  max-width: 90%;
  padding: 0 20px;
}


/* Responsive nav */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #1f2a44;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  nav.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
