* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 15px 40px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* LOGO */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  height: 45px;
}

.logo-text h1 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.logo-text span {
  font-size: 13px;
  color: #666;
  letter-spacing: 1px;
}

/* NAVIGATION */
.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: #c62828;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to right, #c62828, #e53935);
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: white;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: white;
  color: #c62828;
  padding: 12px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #f2f2f2;
}


/* GLOBAL FONT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 15px 40px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 45px;
}

.brand-text h1 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.brand-text span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
}

/* NAVIGATION */
.nav a {
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #c62828;
}


/* HERO */
.hero {
  background: linear-gradient(to right, #b71c1c, #e53935);
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 44px;
}

.hero p {
  margin: 15px 0;
  font-size: 20px;
}

.btn {
  background: white;
  color: #b71c1c;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* SECTIONS */
.about-preview, .products, .contact, .page-section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact form {
  max-width: 500px;
  margin: auto;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.contact button {
  background: #b71c1c;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
  }
  nav {
    margin-top: 10px;
  }
}


.page-hero {
  background: linear-gradient(to right, #b71c1c, #e53935);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.page-hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
}

.page-content {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  line-height: 1.8;
  font-size: 17px;
}

.page-content h3 {
  margin-top: 40px;
  color: #b71c1c;
}


/* CONTACT PAGE */
.contact-hero {
  background: linear-gradient(to right, #b71c1c, #e53935);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.contact-hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #b71c1c;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form button {
  background: #b71c1c;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #a01818;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-flex {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #c62828;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #c62828, #e53935);
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: white;
  color: #c62828;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* SERVICES */
.services {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.services h2 {
  color: #c62828;
  margin-bottom: 40px;
}

.service-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-box h3 {
  color: #c62828;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #c62828;
  padding: 100px 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 15px;
}

.cta p {
  color: #f2f2f2;
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-light {
  background: white;
  color: #c62828;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-light:hover {
  background: #f5f5f5;
}

.cta {
  animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 34px;
  }
}




