/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.menu li a:hover {
  color: #0073e6;
}

.cta .btn {
  padding: 10px 20px;
  border-radius: 5px;
  background: #c20631;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* ===== Banner Section ===== */
.banner {
  background:  #c20631;
  padding: 60px 8%;
}

.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-left {
  flex: 1;
  min-width: 300px;
}

.banner-left h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.banner-left ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.banner-left ul li {
  margin-bottom: 10px;
  list-style: disc;
  color: #444;
}

.banner-left .btn {
  background: #c20631;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* ===== Banner Right Contact Box ===== */
.banner-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 400px;
}

.phone-label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #c20631;
  text-align: center;
}

.phone-number {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #c20631;
  text-decoration: none;
}

.phone-number:hover {
  color: #0073e6;
}

/* ===== Contact Form Inside Banner ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
}

.contact-form button {
  background: #c20631;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #005bb5;
}

/* ===== Services Section ===== */
.services {
  padding: 60px 8%;
  background: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-grid .card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-grid img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* ===== Products (Reference Section) ===== */
.products {
  padding: 60px 8%;
  background: #f7f9fc;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.product-grid .card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-grid img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #666;
}

/* ===== Contact Section ===== */
.contact {
  padding: 60px 8%;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact p {
  margin-bottom: 10px;
}

.contact .btn {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  background: #c20631;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* ===== Footer ===== */
.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 25px 8%;
}

.footer-links a {
  color: #aaa;
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* Phone on left side of banner */
.banner-phone {
  display: inline-block;
  margin: 10px 0 16px;
  font-weight: bold;
  color: #0073e6;
  text-decoration: none;
}
.banner-phone:hover { text-decoration: underline; }

/* About Section */
.about {
  padding: 60px 8%;
  background: #fff;
}
.about-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 420px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.about-text p {
  margin-bottom: 12px;
  color: #444;
}
.about-note {
  font-size: 0.95rem;
  color: #666;
  background: #f7f9fc;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #eef2f7;
}
.about-list {
  margin: 14px 0 18px 18px;
}
.about-list li {
  list-style: disc;
  margin-bottom: 8px;
}
.about-meta p {
  margin-bottom: 6px;
}
.about-media {
  flex: 1 1 360px;
  text-align: center;
}
.about-media img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
