 /* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: #bbcfe6;
  color: #333;
  line-height: 1.6;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styling */
header {
  background-color: #4e50e0;
  color:#c5d5e7 ;
  padding:10px 30px;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.logo-title img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-title h1 {
  font-size: 28px;
  font-weight: bold;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.about {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.about p {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: #444;
}

 /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
 

/* Slider wrapper */
.slider-wrapper {
  width: 900%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #fff;
  margin: auto;
}

/* Slider container */
.slider-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

/* Individual slides */
.slide {
  min-width: 100%;
  height: 750px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Navigation buttons */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  transition: background 0.3s ease;
  z-index: 10;
}

.btn:hover {
  background: rgba(0,0,0,0.6);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots navigation */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 15px;
  height: 15px;
  background: rgba(136, 104, 104, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #0c59b8;
}


.products h2,
.contact h2 {
  text-align: center;
  margin-bottom: 25px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact p {
  text-align: center;
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #323435;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: auto;
}

/* Responsive Styling */
@media (max-width: 600px) {
  .logo-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-title h1 {
    font-size: 22px;
  }
}
