/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e0e;
  color: white;
  overflow-x: hidden;
}

h1, h2 {
  color: #B8860B;
}

p {
  line-height: 1.6;
}

/* Logo */
.logo {
  width: 160px;
  max-width: 20vw;
  margin-bottom: 30px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 3.2rem;
  margin: 10px 0;
  letter-spacing: 1.2px;
  color: #B8860e;
}

.typed-text {
  font-size: 1.4rem;
  color: #ccc;
  height: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .typed-text {
    font-size: 1.1rem;
    height: 30px;
  }
}

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

  .typed-text {
    font-size: 1rem;
    height: 28px;
  }
}


/* Sections */
.section {
  padding: 100px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.2rem;
}

.gray-bg {
  background-color: #1f1f1f;
}

/* Quote */
blockquote {
  font-style: italic;
  color: #ccc;
  border-left: 4px solid #B8860B;
  padding-left: 20px;
  margin: 30px 0;
}

/* Contact */
.contact i {
  margin-right: 10px;
  color: #B8860B;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  margin: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Particles Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* Feature Block with Image */
.feature-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.feature-img {
  width: 300px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-text {
  flex: 1;
}

/* Grid for Projects & Products */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-top: 10px;
  color: #B8860B;
}

.card p {
  font-size: 0.95rem;
  color: #ddd;
}

/* Icons for Product Cards */
.gold-icon {
  color: #B8860B;
  margin-bottom: 10px;
}

/* Responsive for Feature Block */
@media (max-width: 768px) {
  .feature-block {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    width: 100%;
  }
}

