/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --background: #0a0a0a;
  --background-light: #141414;
  --background-card: #1a1a1a;
  --foreground: #fafafa;
  --foreground-muted: #a1a1aa;
  --border: #27272a;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{ max-width:200px}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-text {
  color: var(--foreground);
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground-muted);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  background: var(--primary);
  color: var(--background) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--foreground-muted);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--background-card);
  border-color: var(--foreground-muted);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-description {
  color: var(--foreground-muted);
  font-size: 1.1rem;
}

/* About Section */
.about {
  background: var(--background-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--foreground-muted);
  font-size: 0.95rem;
}

/* Specs Section */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.spec-card:hover {
  border-color: var(--primary);
}

.spec-icon {
  color: var(--primary);
  margin-bottom: 16px;
}

.spec-label {
  font-size: 0.85rem;
  color: var(--foreground-muted);
  margin-bottom: 8px;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Equipment Section */
.equipment {
  background: var(--background-light);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equipment-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.equipment-card:hover {
  border-color: var(--primary);
}

.equipment-card.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--background-card) 100%);
}

.equipment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--primary);
}

.equipment-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.equipment-card p {
  color: var(--foreground-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.equipment-list {
  margin: 16px 0;
}

.equipment-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--foreground-muted);
}

.equipment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.equipment-note {
  color: var(--primary) !important;
  font-weight: 600;
  margin-top: 16px;
}


/* Gallery Section */
.gallery {
  background: var(--background-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  border-color: var(--primary);
}

.gallery-card.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--background-card) 100%);
}

.gallery-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--primary);
}

.gallery-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.gallery-card p {
  color: var(--foreground-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.gallery-list {
  margin: 16px 0;
}

.gallery-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--foreground-muted);
}

.gallery-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.gallery-note {
  color: var(--primary) !important;
  font-weight: 600;
  margin-top: 16px;
}



.gallery-grid {display:grid;grid-template-columns: 1fr 1fr 1fr 1fr;justify-content: flex-start;align-items: flex-start;gap:10px}

.galleryBox  {height:200px;background-size: cover;background-repeat: no-repeat;background-position: center}










/* Service Section */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-text .section-badge {
  margin-bottom: 16px;
}

.service-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.service-text > p {
  color: var(--foreground-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-list li span {
  color: var(--foreground-muted);
}

.service-image img {
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}


/* Contact Section */
.contact {
  background: var(--background-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--foreground-muted);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}

.company-info {
  text-align: center;
  padding: 40px;
  background: var(--background-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.company-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.company-info p {
  color: var(--foreground-muted);
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-content p {
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-text .section-title {
    text-align: center;
  }

  .service-list {
    align-items: center;
  }

  .service-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
    .gallery-grid {display:grid;grid-template-columns: 1fr 1fr 1fr;justify-content: flex-start;align-items: flex-start;gap:10px}

.galleryBox  {height:150px;background-size: cover;background-repeat: no-repeat;background-position: center}

  
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .specs-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .gallery-grid {display:grid;grid-template-columns: 1fr 1fr;justify-content: flex-start;align-items: flex-start;gap:10px}

.galleryBox  {height:100px;background-size: cover;background-repeat: no-repeat;background-position: center}

  
}
