/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: rgb(95, 94, 94);
  color: #0a0909;
}

/* Navbar */
header {
  background: #111;
  padding: 1rem 2rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar img {
  height: 70px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links .active {
  color: #f39c12;
}

/* Hero Section */
.hero {
  background: url('../assets/img/solar-bg.jpg') no-repeat center center/cover;
  text-align: center;
  color: #fff;
  padding: 6rem 2rem;
}
.glow {
  font-size: 3rem;
  text-shadow: 0 0 20px #f39c12, 0 0 40px #f39c12;
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 0 10px #f39c12; }
  to { text-shadow: 0 0 30px #f1c40f; }
}
.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-btn:hover {
  background: #d35400;
  transform: scale(1.1);
}

/* Hero Small */
.small-hero {
  padding: 4rem 2rem;
  background: url('../assets/img/products-bg.jpg') no-repeat center/cover;
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.product-card h3 {
  color: #e69614;
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.product-card .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #f39c12;
  color: #ece6e6;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}
.product-card .btn:hover {
  background: #d35400;
}

/* Sticky CTA */
.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.sticky-cta a {
  color: #f7f2f3;
  text-decoration: none;
}


/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: #f39c12;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #f39c12, #d35400);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-banner p {
  margin-bottom: 1.5rem;
}


/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 2rem;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 40%;
  text-align: center;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card h2 {
  color: #f39c12;
  margin-bottom: 1rem;
}

/* Contact Section Grid */
.contact-section {
  padding: 60px 20px;
  background: rgb(95, 94, 94);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffb400;
  box-shadow: 0 0 8px rgba(255, 180, 0, 0.7);
  outline: none;
}

.contact-form .btn {
  padding: 12px;
  border: none;
  background: linear-gradient(45deg, #ffb400, #ff6600);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff6600, #ffb400);
}

/* Company Details under form */
.company-details {
  margin-top: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0d0d0d;
}

/* Map Styling */
.map {
  width: 100%;
  height: 320px; /* Square map */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .map {
    height: 250px;
    margin-top: 20px;
  }
}


/* Quote */
.quote {
  text-align: center;
  padding: 3rem 2rem;
  font-style: italic;
  background: #222;
  color: #f39c12;
  font-size: 1.5rem;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}
