/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Header */
.top-header {
  background-color: #000;
  border-bottom: 1px solid #333;
  padding: 2px 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.motto h2 {
  color: #ff6635;
  font-size: 1.2rem;
  font-weight: bold;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6635;
}

/* Main Header */
.main-header {
  background-color: #000;
  border-bottom: 1px solid #333;
  padding: 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.logo img {
  height: 200px;
  max-width: 400px;
  padding: 0;
  margin: 0;
  display: block;
}

.header-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item i {
  color: #ff6635;
  font-size: 1.1rem;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.9rem;
  color: #fff;
}

.info-value {
  font-weight: bold;
  color: #ff6635;
}

/* Navigation */
.navbar {
  background-color: #000;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.nav-item:hover,
.nav-item.active {
  color: #ff6635;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #333;
  border-radius: 25px;
  padding: 8px 15px;
}

.search-bar input {
  background: none;
  border: none;
  color: #fff;
  outline: none;
  padding: 5px;
  width: 200px;
}

.search-bar input::placeholder {
  color: #999;
}

.search-bar i {
  color: #999;
  margin-left: 10px;
}

.quote-btn,
.nav-button {
  background-color: #ff6635;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-btn:hover,
.nav-button:hover {
  background-color: #ff6635;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Product Slider Section */
.product-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff; /* Keep original background for slider */
  margin: 0;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}

.slide-left {
  max-width: 600px;
  padding: 0 50px;
  color: #fff;
  margin-left: 120px;
}

.slide-left h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.slide-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.products-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 3;
}

.slider-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #ff6635;
}

/* Hero Contact Form */
.hero-contact-form {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%) translateX(-120px);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  width: 350px;
  z-index: 4;
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: bold;
}

.hero-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-contact-form input,
.hero-contact-form select,
.hero-contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.hero-contact-form button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-contact-form button:hover {
  background-color: #333;
}

/* All other sections with black background */
.products-section,
.news-section,
.testimonial-section,
.why-choose-us,
.newsletter-section,
.about-us,
.contact-section {
  background-color: #000;
  color: #fff;
  padding: 80px 0;
}

/* Products Section */
.products-section h2,
.news-section h2,
.testimonial-section h2,
.why-choose-us h2,
.newsletter-section h2,
.about-us h2,
.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ff6635;
}

.product-info p {
  color: #ccc;
  line-height: 1.6;
}

.shop-button-container {
  text-align: center;
}

.shop-btn {
  background-color: #ff6635;
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background-color: #ff6635;
  transform: translateY(-2px);
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  color: #ff6635;
  font-size: 0.9rem;
  font-weight: bold;
}

.news-content h3 {
  font-size: 1.2rem;
  margin: 10px 0 15px;
  color: #fff;
}

.news-content p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: #ff6635;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ff6635;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid #ff6635;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: #ccc;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}

.author-info span {
  color: #999;
  font-size: 0.9rem;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature {
  text-align: center;
  padding: 20px;
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ff6635;
}

.feature p {
  color: #ccc;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-left {
  flex: 1;
  min-width: 300px;
}

.newsletter-left h2 {
  text-align: left;
  margin-bottom: 15px;
}

.newsletter-left p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.newsletter-right {
  flex: 1;
  min-width: 300px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background-color: #ff6635;
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #ff6635;
}

/* About Us Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-left h2 {
  text-align: left;
  margin-bottom: 15px;
}

.about-left p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ff6635;
}

.about-text p {
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-btn {
  background-color: #ff6635;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #ff6635;
  transform: translateY(-2px);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-left h2 {
  text-align: left;
  margin-bottom: 20px;
}

.contact-left p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form button {
  background-color: #ff6635;
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff6635;
}

/* Footer */
.footer {
  background-color: #000;
  border-top: 1px solid #333;
  padding: 50px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column img {
  height: 200px;
  margin-bottom: 15px;
}

.footer-motto {
  color: #ff6635;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff6635;
}

.footer-column h4 {
  color: #ff6635;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6635;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #ff6635;
  width: 16px;
}

.footer-bottom {
  border-top: 2px solid #ff6635;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom-text p {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom-text a {
  color: #ff6635;
  text-decoration: none;
}

.footer-bottom-text a:hover {
  color: #ff6635;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet adjustments for slider form */
  .hero-contact-form {
    right: 20px;
    transform: translateY(-50%) translateX(-50px);
    width: 320px;
  }
}

@media (max-width: 768px) {
  /* Top Header Mobile */
  .top-header {
    padding: 1px 0;
  }

  .top-header .container {
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .motto h2 {
    font-size: 1rem;
  }

  /* Main Header Mobile */
  .main-header {
    padding: 0;
  }

  .main-header .container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 2px 20px;
  }

  .header-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  /* Navigation Mobile */
  .navbar .container {
    padding: 5px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #333;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    flex-direction: column;
    gap: 15px;
  }

  .search-bar {
    width: 100%;
    max-width: 300px;
  }

  .search-bar input {
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Slider Mobile */
  .slide-left {
    padding: 0 20px;
    text-align: center;
    margin-left: 0;
  }

  .slide-left h2 {
    font-size: 2rem;
  }

  .slide-left p {
    font-size: 1rem;
  }

  .slide-buttons {
    justify-content: center;
  }

  /* Hero Contact Form Mobile */
  .hero-contact-form {
    position: static;
    transform: none;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
  }

  .hero-contact-form h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .hero-contact-form input,
  .hero-contact-form select,
  .hero-contact-form textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .hero-contact-form button {
    padding: 10px;
    font-size: 0.9rem;
  }

  .slider-controls {
    padding: 0 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  /* Products Grid Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* News Grid Mobile */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  /* Newsletter Mobile */
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .newsletter-form input {
    min-width: 200px;
  }

  /* About Us Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-left h2,
  .contact-left h2 {
    text-align: center;
  }

  /* Contact Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .slide-left h2 {
    font-size: 1.5rem;
  }

  .slide-left p {
    font-size: 0.9rem;
  }

  /* Hero Contact Form Small Mobile */
  .hero-contact-form {
    width: 95%;
    padding: 20px;
    margin: 15px auto;
  }

  .hero-contact-form h3 {
    font-size: 1.1rem;
  }

  .hero-contact-form input,
  .hero-contact-form select,
  .hero-contact-form textarea {
    padding: 8px;
    font-size: 0.85rem;
  }

  .hero-contact-form button {
    padding: 8px;
    font-size: 0.85rem;
  }

  .products-section h2,
  .news-section h2,
  .testimonial-section h2,
  .why-choose-us h2,
  .newsletter-section h2,
  .about-us h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  /* Extra small mobile adjustments */
  .hero-contact-form {
    width: 98%;
    padding: 15px;
  }

  .hero-contact-form h3 {
    font-size: 1rem;
  }

  .hero-contact-form input,
  .hero-contact-form select,
  .hero-contact-form textarea {
    padding: 6px;
    font-size: 0.8rem;
  }

  .hero-contact-form button {
    padding: 6px;
    font-size: 0.8rem;
  }
}
