/* Base Styles */
:root {
  --primary-color: #0056b3; --secondary-color: #003366; --accent-color: #ff9900; --light-color: #f8f9fa; --dark-color: #343a40; 
  --text-color: #333; --text-light: #6c757d;
}
/*blog post*/ /* Single Blog Post Styles */ /* ==================== */ /* SINGLE BLOG POST STYLES */ /* ==================== */ /* Featured 
Image Styles */ .featured-image-container {
  margin: 0 auto 30px; max-width: 100%; text-align: center;
}
.featured-image { max-width: 100%; height: auto; max-height: 500px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); object-fit: 
  cover;
}
/* Content Image Styles */ .post-content img { max-width: 100%; height: auto; border-radius: 5px; margin: 25px 0; display: block;
}
/* Responsive Images */ @media (max-width: 768px) { .featured-image { max-height: 300px;
  }
  
  .post-content img { margin: 15px 0;
  }
}
/*end*/ * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body { color: var(--text-color); line-height: 1.6; overflow-x: hidden;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px;
}
/* Header Styles */ header { background-color: var(--primary-color); color: white; padding: 15px 0; position: sticky; top: 0; z-index: 1000; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); transition: all 0.3s;
}
.header-container { display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 1.8rem; font-weight: 700;
}
.logo span { color: var(--accent-color);
}
.tagline { font-style: italic; font-size: 0.9rem; margin-top: 5px;
}
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer;
}
nav ul { display: flex; list-style: none;
}
nav ul li { margin-left: 20px;
}
nav ul li a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s;
}
nav ul li a:hover { color: var(--accent-color);
}
.admin-link { background-color: var(--accent-color); padding: 5px 15px; border-radius: 5px;
}
/* Hero Slider */ .hero { position: relative; height: 500px; overflow: hidden;
}
.slider { display: flex; width: 100%; height: 100%; transition: transform 0.5s ease-in-out;
}
.slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; 
  justify-content: center; color: white; text-align: center; position: relative;
}
.slide::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5);
}
.slide-content { position: relative; z-index: 1; padding: 0 20px; max-width: 800px;
}
.slide h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slide p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.btn { display: inline-block; background-color: var(--accent-color); color: white; padding: 12px 30px; border-radius: 5px; text-decoration: 
  none; font-weight: 600; transition: background-color 0.3s;
}
.btn:hover { background-color: #e68a00;
}
.slider-controls { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; z-index: 2;
}
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); margin: 0 5px; cursor: pointer; 
  transition: background-color 0.3s;
}
.slider-dot.active { background-color: white;
}
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; 
  padding: 0 20px; z-index: 2;
}
.slider-nav button { background: rgba(255, 255, 255, 0.3); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; 
  font-size: 1.2rem; cursor: pointer; transition: background 0.3s;
}
.slider-nav button:hover { background: rgba(255, 255, 255, 0.7);
}
/* About Section */ .about { padding: 80px 0; background-color: var(--light-color);
}
.section-title { text-align: center; margin-bottom: 50px;
}
.section-title h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px;
}
.section-title p { color: var(--text-light); max-width: 700px; margin: 0 auto;
}
.about-content { display: flex; flex-wrap: wrap; align-items: center; gap: 40px;
}
.about-text { flex: 1; min-width: 300px;
}
.about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--secondary-color);
}
.about-text p { margin-bottom: 20px;
}
.about-image { flex: 1; min-width: 300px; text-align: center;
}
.about-image img { max-width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.signature { margin-top: 30px; font-style: italic; font-weight: 500;
}
/* Services Section */ .services { padding: 80px 0; background-color: white;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px;
}
.service-card { background-color: var(--light-color); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); 
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon { background-color: var(--primary-color); color: white; font-size: 2.5rem; padding: 30px; text-align: center;
}
.service-content { padding: 25px;
}
.service-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--secondary-color);
}
/* Products Section */ .products { padding: 80px 0; background-color: var(--light-color);
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px;
}
.product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.product-image { height: 200px; background-size: cover; background-position: center;
}
.product-content { padding: 20px;
}
.product-content h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--secondary-color);
}
.product-content p { color: var(--text-light); margin-bottom: 15px;
}
.learn-more { color: var(--primary-color); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center;
}
.learn-more i { margin-left: 5px; transition: transform 0.3s;
}
.learn-more:hover i { transform: translateX(5px);
}
/* Blog Section */ .blog-preview { padding: 80px 0; background-color: white;
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.blog-post { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.blog-post img { width: 100%; height: 200px; object-fit: cover;
}
.blog-content { padding: 20px;
}
.blog-content h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--secondary-color);
}
.blog-content p { color: var(--text-light); margin-bottom: 15px;
}
/* Contact Form */ .contact-form { padding: 80px 0; background-color: var(--light-color);
}
.form-container { max-width: 800px; margin: 0 auto; background-color: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px 
  rgba(0, 0, 0, 0.05);
}
.form-title { text-align: center; margin-bottom: 30px;
}
.form-title h2 { font-size: 2rem; color: var(--primary-color); margin-bottom: 10px;
}
.form-group { margin-bottom: 20px;
}
.form-row { display: flex; flex-wrap: wrap; gap: 20px;
}
.form-col { flex: 1; min-width: 250px;
}
label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color);
}
input, select, textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: 
  border-color 0.3s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary-color);
}
textarea { min-height: 120px; resize: vertical;
}
.submit-btn { background-color: var(--primary-color); color: white; border: none; padding: 12px 30px; font-size: 1rem; font-weight: 600; 
  border-radius: 5px; cursor: pointer; transition: background-color 0.3s; display: block; margin: 30px auto 0;
}
.submit-btn:hover { background-color: var(--secondary-color);
}
.form-message { text-align: center; margin-top: 20px; padding: 10px; border-radius: 5px; display: none;
}
.success { background-color: #d4edda; color: #155724;
}
.error { background-color: #f8d7da; color: #721c24;
}
/* Footer */ footer { background-color: var(--dark-color); color: white; padding: 60px 0 20px;
}
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px;
}
.footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--accent-color);
}
.footer-links { list-style: none;
}
.footer-links li { margin-bottom: 10px;
}
.footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent-color);
}
.contact-info { list-style: none;
}
.contact-info li { margin-bottom: 15px; display: flex; align-items: flex-start;
}
.contact-info i { margin-right: 10px; color: var(--accent-color);
}
.social-links { display: flex; gap: 15px; margin-top: 20px;
}
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255, 
  255, 255, 0.1); border-radius: 50%; color: white; transition: background-color 0.3s;
}
.social-links a:hover { background-color: var(--accent-color);
}
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #aaa; font-size: 0.9rem;
}
/* Responsive Styles */ @media (max-width: 992px) { .slide h1 { font-size: 2.5rem;
  }
}
@media (max-width: 768px) { .nav-toggle { display: block;
  }
  nav { position: fixed; top: 70px; left: -100%; width: 80%; height: calc(100vh - 70px); background-color: var(--secondary-color); 
    transition: left 0.3s; z-index: 999;
  }
  nav.active { left: 0;
  }
  nav ul { flex-direction: column; padding: 20px;
  }
  nav ul li { margin: 15px 0;
  }
  .hero { height: 400px;
  }
  .slide h1 { font-size: 2rem;
  }
  .slide p { font-size: 1rem;
  }
  .section-title h2 { font-size: 2rem;
  }
}
@media (max-width: 576px) { .hero { height: 350px;
  }
  .slide h1 { font-size: 1.8rem;
  }
  .btn { padding: 10px 20px;
  }
  .about-content, .trade-container { flex-direction: column;
  }
  .form-container { padding: 30px 20px;
  }
}
