body,html {
  background-color: #f0f8ff;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

a {
  color: inherit;
  text-decoration: none;
}
/* Layout Components */
.container {
  max-width: 980px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

/* Header Styles */
header {
  background-color: #4a6fa5;
  border-bottom: 3px solid #ff9e3d;
  padding: 15px 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-text {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px;
}

.nav-text:hover {
  background-color: #ff9e3d;
  border-radius: 8px;
}

/* Banner Section */
.banner-main {
  background-image: url("backimage.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.banner-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(74, 111, 165, 0.7);
  border-radius: 8px;
}

.banner-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ff9e3d;
}

/* Section Headings */
.section-heading {
  text-align: center;
  margin: 40px 0 30px;
}

.section-heading h2 {
  font-family: 'Oswald', sans-serif;
  color: #4a6fa5;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Product Cards */
.product-card-main {
  margin: 30px 0;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card-img {
  height: 180px;
  background-color: #f0f0f0;
  border-radius: 6px;
  margin-bottom: 15px;
  background-image: url("d1.jpg");
  background-size: cover;
}

.product-card-heading {
  font-family: 'Oswald', sans-serif;
  color: #4a6fa5;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.btn {
  font-family: 'Roboto', sans-serif;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #ff9e3d;
  color: white;
}

.btn:hover {
  background-color: #4a6fa5;
  color: white;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(to bottom right, #ffffff, #f0f4f8);
  padding: 60px 20px;
}

.container {
  max-width: 750px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 34px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 16px;
  color: #7f8c8d;
}

.form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #34495e;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: 0.3s ease;
}

.form-control:focus {
  border-color: #4a6fa5;
  box-shadow: 0 0 6px rgba(74, 111, 165, 0.2);
  outline: none;
}

textarea.form-control {
  resize: vertical;
}

select.form-control {
  background-color: #fff;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-group label {
  font-weight: normal;
  color: #555;
}

.checkbox-group {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.checkbox-group a {
  color: #4a6fa5;
  text-decoration: underline;
}

.submit-btn {
  background-color: #4a6fa5;
  color: white;
  padding: 14px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.submit-btn:hover {
  background-color: #ff9e3d;
}

.text-center {
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .radio-group {
    flex-direction: column;
  }
}


/* Footer */
footer {
  font-family: 'Roboto', sans-serif;
  background-color: #333;
  color: white;
  padding: 40px 0 0;
}

.footer-hover:hover{
  color: #ff9e3d;
}

.footer-col {
  flex: 1;
  padding: 0 15px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #ff9e3d;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #ccc;
  width: 80px;
}

.footer-copy {
  background-color: #222;
  padding: 15px 0;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: stretch;
  }
  .product-card {
    margin: 10px 0;
  }
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    width: 100%;
    padding: 10px 0;
  }
}
