/* ===== Root Variables ===== */
:root {
  --primary-color: #2872af;
  --primary-dark: #1e5a8e;
  --primary-light: #3a8bc9;
  --neutral-dark: #1a1a1a;
  --neutral-gray: #666666;
  --neutral-light: #f5f5f5;
  --white: #ffffff;
  --accent: #27ae60;
  --accent-light: #3498db;
  --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
}

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

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--neutral-gray);
  font-size: 1rem;
}

strong {
  color: var(--neutral-dark);
  font-weight: 600;
}

/* ===== Navigation ===== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(40, 114, 175, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.3rem;
}

.logo-image {
  height: 100px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 114, 175, 0.3);
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #229954;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    animation: slideInLeft 0.8s ease 0.1s both;
}

.hero-image {
    animation: slideInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(40, 114, 175, 0.15);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Header Sections ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
}

/* ===== Main Sections ===== */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-button.primary {
  margin-top: 25px;
    background:#2872af;
    color:#ffffff;
}
a {
    text-decoration: none;
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 114, 175, 0.3);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Intro Section ===== */
.intro-section {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.intro-section h2 {
  margin-bottom: 20px;
}

.intro-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

/* ===== Metal Grid ===== */
.metal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.metal-card {
  background-color: var(--white);
  border: 2px solid var(--primary-light);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.metal-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(40, 114, 175, 0.2);
  transform: translateY(-5px);
}

.metal-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  margin: 10px 0;
}

.metal-card h3 {
  margin: 10px 0 5px;
  color: var(--primary-color);
}

/* ===== Not Accepted Section ===== */
.not-accepted {
  background-color: #fee8e8;
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
}

.not-accepted h2 {
  color: #c0392b;
  margin-bottom: 20px;
}

.restriction-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.restriction-item {
  background-color: var(--white);
  padding: 15px;
  border-left: 4px solid #c0392b;
  border-radius: 5px;
  color: var(--neutral-dark);
  font-weight: 500;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service-card {
  background-color: var(--neutral-light);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(40, 114, 175, 0.2);
}

.service-card h3 {
  margin: 15px 0 10px;
  color: var(--primary-color);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

/* ===== Satisfaction Section ===== */
.satisfaction {
  background-color: var(--white);
  padding: 40px;
}

.guarantee {
  background-color: var(--accent);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  text-align: center;
}

.guarantee p {
  color: var(--white);
  margin: 0;
  font-size: 1.1rem;
}

/* ===== Facility Section ===== */
.facility {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
}

.facility-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.facility-text {
  flex: 1;
}

.facility-image {
  flex: 1;
}

.facility-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid var(--primary-color);
}

.info-box p {
  margin: 10px 0;
  color: var(--neutral-dark);
}

/* ===== Why Choose Us ===== */
.why-choose {
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.reason-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
  transition: var(--transition);
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(40, 114, 175, 0.3);
}

.reason-card h3 {
  color: var(--white);
  margin: 0 0 10px 0;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===== Who We Serve ===== */
.who-serve {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
}

.serve-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.serve-item {
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  color: var(--neutral-dark);
  font-weight: 500;
  border: 2px solid var(--primary-light);
  transition: var(--transition);
}

.serve-item:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
  color: var(--white);
}

/* ===== Process Steps ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.step {
  background-color: var(--neutral-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.step:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(40, 114, 175, 0.2);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.step:hover .step-number {
  background-color: var(--white);
  color: var(--primary-color);
}

.step h3 {
  color: var(--primary-color);
  margin: 10px 0;
}

.step:hover h3 {
  color: var(--white);
}

.step p {
  margin: 0;
}

.step:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.process-note {
  text-align: center;
  margin: 30px 0;
  font-size: 1.1rem;
  color: var(--neutral-dark);
}

/* ===== Eco Section ===== */
.eco-section {
  background: linear-gradient(135deg, var(--accent) 0%, #229954 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.eco-section h2 {
  color: var(--white);
}

.eco-section p {
  color: rgba(255, 255, 255, 0.95);
}

.eco-highlight {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.eco-highlight p {
  margin: 0;
  font-size: 1.2rem;
}

/* ===== Business Partner ===== */
.business-partner {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
}

.partner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.feature {
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  color: var(--neutral-dark);
  font-weight: 500;
  border: 2px solid var(--primary-light);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
  color: var(--white);
}

.highlight {
  color: var(--neutral-dark);
  font-weight: 500;
}

/* ===== About Page Sections ===== */
.about-section {
  margin-bottom: 50px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.mission-section h2 {
  color: var(--white);
}

.mission-section p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Values Section ===== */
.values-section {
  margin-bottom: 50px;
}

.values-intro {
  text-align: center;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin: 20px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.value-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(40, 114, 175, 0.3);
}

.value-card h3 {
  color: var(--white);
  margin: 0 0 10px 0;
}

.value-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===== Timeline ===== */
.timeline-section {
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  margin: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--primary-light);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 30px);
  background-color: var(--neutral-light);
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.timeline-content:hover {
  background-color: var(--primary-light);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(40, 114, 175, 0.2);
}

.timeline-content:hover h3 {
  color: var(--white);
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--primary-color);
}

/* ===== Team Section ===== */
.team-section {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.team-section h2 {
  margin-bottom: 20px;
}

/* ===== Our Facility ===== */
.our-facility {
  margin-bottom: 50px;
}

.facility-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.facility-features .feature {
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  border: 2px solid var(--primary-light);
  transition: var(--transition);
  text-align: center;
}

.facility-features .feature:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
  color: var(--white);
}

/* ===== Impact Section ===== */
.impact-section {
  background: linear-gradient(135deg, var(--accent) 0%, #229954 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.impact-section h2 {
  color: var(--white);
}

.impact-section p {
  color: rgba(255, 255, 255, 0.95);
}

/* ===== CTA Section ===== */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 1.1rem;
}

/* ===== Contact Page ===== */
.contact-section {
  margin-bottom: 50px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-content h2 {
  margin-bottom: 15px;
}

.info-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

.info-block {
  background-color: var(--neutral-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.info-block h3 {
  color: var(--primary-color);
  margin: 0 0 10px 0;
}

.info-block p {
  margin: 0;
  color: var(--neutral-dark);
}

.info-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-block a:hover {
  color: var(--primary-dark);
}

/* ===== Contact Form ===== */
.contact-form {
  margin: 30px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary-light);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(40, 114, 175, 0.1);
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  border: 1px solid #c3e6cb;
}

.success-message p {
  margin: 0;
  color: #155724;
}

/* ===== Map Section ===== */
.map-section {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.map-section h2 {
  margin-bottom: 30px;
}

.map-section iframe {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
button a {
  color: #ffffff;
}
/* ===== Footer ===== */
.footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 40px 0;
}
.footer-logo-image {
  width: 250px;
}

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

.footer-section h4 {
  color: var(--white);
  margin: 0 0 15px 0;
}

.footer-section p,
.footer-section ul {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom p {
  color: #ffffff;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

.slide-up:nth-child(1) {
  animation-delay: 0.1s;
}

.slide-up:nth-child(2) {
  animation-delay: 0.2s;
}

.slide-up:nth-child(3) {
  animation-delay: 0.3s;
}

.slide-up:nth-child(4) {
  animation-delay: 0.4s;
}

.slide-up:nth-child(5) {
  animation-delay: 0.5s;
}

.slide-up:nth-child(6) {
  animation-delay: 0.6s;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-content {
    gap: 20px;
  }

  .facility-content {
    gap: 20px;
  }

  .about-content {
    gap: 20px;
  }

  .contact-wrapper {
    gap: 20px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column-reverse !important;
    margin-left: 60px;
  }

  .timeline-marker {
    left: 0;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    width: 100%;
  }

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

  .nav-menu a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid var(--neutral-light);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    padding: 20px;
    min-height: auto;
   grid-template-columns: 1fr; 
  }
.logo-image {
    width: 300px;
    height: 60px;
  }
  .hero-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  

  .facility-content,
  .about-content {
    flex-direction: column;
  }
.main-content {
  border-bottom: #1e5a8e 5px solid;
}
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .metal-grid,
  .services-grid,
  .reasons-grid,
  .values-grid,
  .process-steps,
  .serve-list,
  .partner-features,
  .facility-features {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  main {
    padding: 40px 0;
  }

  section {
    margin-bottom: 30px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .map-section iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 15px;
  }

  /* .hero {
    padding: 30px 0;
  } */

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .metal-grid,
  .services-grid,
  .reasons-grid,
  .values-grid,
  .process-steps,
  .serve-list,
  .partner-features,
  .facility-features {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .not-accepted,
  .satisfaction,
  .facility,
  .why-choose,
  .who-serve,
  .eco-section,
  .business-partner,
  .mission-section,
  .values-section,
  .team-section,
  .our-facility,
  .impact-section,
  .cta-section,
  .map-section {
    padding: 20px;
  }

  .guarantee {
    padding: 20px;
  }

  .info-box {
    padding: 15px;
  }

  .timeline {
    margin: 20px 0;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    margin-left: 50px;
    margin-bottom: 30px;
  }

  .timeline-marker {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-section iframe {
    height: 250px;
  }

  .btn {
    width: 100%;
    padding: 12px;
  }

  .contact-form {
    margin: 20px 0;
  }
}
