/* =====================================================
   SUNTINT INTERIORS – ABOUT PAGE
===================================================== */

/* -------------------- RESET & GLOBAL -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin-inline: auto;
}

/* -------------------- HEADER / HERO -------------------- */
.header {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.75)),
    url(images/windo\ \(3\).jpeg) center/cover no-repeat;
  position: relative;
}

.textbox {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.textbox h1 {
  font-size: clamp(36px, 6vw, 64px);
  color: #fff;
}

.textbox h2 {
  font-size: clamp(18px, 3vw, 28px);
  color: #abe5ec;
  margin-bottom: 10px;
}

.textbox p {
  color: #eee;
  font-size: 16px;
  max-width: 650px;
  margin: 20px auto 40px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #f44336;
  border-color: #f44336;
}

/* -------------------- ABOUT / WHY US -------------------- */
.about-section .row,
.why-us .row,
.clients .client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-col img {
  border-radius: 8px;
}

.why-col {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-col i {
  font-size: 32px;
  color: #f44336;
  margin-bottom: 15px;
}

.why-col h3 {
  margin-bottom: 10px;
}

.why-col p {
  color: #666;
}

.why-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* -------------------- CLIENTS SECTION -------------------- */
.clients .client-logos {
  justify-items: center;
  margin-top: 40px;
}

.client-logo img {
  max-width: 150px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* -------------------- CTA -------------------- */
.cta {
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url(images/alum2.png.jpeg) center/cover no-repeat;
  padding: 100px 20px;
  border-radius: 10px;
  text-align: center;
}

.cta h1 {
  color: #fff;
  margin-bottom: 30px;
}

/* -------------------- FOOTER -------------------- */
.footer {
  background: #111;
  color: #aaa;
  padding: 40px 20px;
  text-align: center;
}

.footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer .icons i {
  margin: 0 10px;
  color: #f44336;
  cursor: pointer;
}

/* -------------------- NAVIGATION -------------------- */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  height: 100px;
}

.nav-links {
  display: flex;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: #f44336;
}

/* -------------------- MOBILE NAV -------------------- */
#menu-btn,
#close-btn {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  #menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #f44336;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
  }

  #close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
