:root {
  --primary: #0ea5e9;
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --text-muted: #64748b;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 5%;
  background: var(--dark);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
}
.logo {
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  text-decoration: none;
}
.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 8px;
}
.nav-links a:hover {
  color: #666;
  border-bottom: 3px solid #666;
  padding-bottom: 8px;
}
.nav-links.active {
  border-bottom: 3px solid brown;
  font-weight: 800;
  font-weight: bolder;
  color: white;
  padding-bottom: 8px;
  font-size: 1.2rem;
}
.nav-links.active:hover {
  color: #0ea5e9;
  border-bottom: 3px solid brown;
  padding-bottom: 8px;
}
/* Index page */
.header {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
    url("IMG/Web\ Design.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 0 10%;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.cta-btn {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  margin-top: 20px;
}
.cta-btn:hover {
  background: rgb(143, 37, 37);
  transform: translateY(-10px);
}

/* SERVICES SECTION */
.services-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: left;
  border: 1px solid #edf2f7;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
}

.learn-more {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* CONTAINER */
.container {
  padding: 4rem 5%;
  max-width: 1300px;
  margin: 0 auto;
}
.header-box {
  text-align: center;
  margin-bottom: 4rem;
}
.header-box h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* E-COMMERCE STYLE GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* SERVICE CARD */
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.image-frame {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.content-frame {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.content-frame h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.content-frame p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-order {
  background: #0ea5e9;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-order:hover {
  background: #0284c7;
}

/* About Page */
.about-header {
  max-width: 800px;
  margin: 5rem auto 2rem;
  padding: 0 20px;
  text-align: center;
}
.about-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.highlight {
  color: #0ea5e9;
  font-weight: bold;
}

/* MISSION & VISION SECTION */
.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 5%;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.mv-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: #e0f2fe;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* TEAM SECTION */
.team-section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.team-section h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.team-card {
  background: transparent;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover {
  transform: translateY(-10px);
}
.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.member-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.member-info {
  padding: 0;
}
.member-info h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--dark);
}
.member-info p {
  color: #0ea5e9;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 5% 20px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  color: #0ea5e9;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer-col p,
.footer-col a {
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  color: #64748b;
  font-size: 0.8rem;
}

/* HAMBURGER & RESPONSIVE NAV */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 4%;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
  }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 4%;
    background: var(--white);
    flex-direction: column;
    gap: 8px;
    padding: 20px 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform-origin: top right;
    transform: scaleY(0);
    transition:
      transform 180ms ease-in-out,
      opacity 180ms ease-in-out;
    opacity: 0;
    z-index: 150;
  }
  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
  }
  .nav-links a {
    margin: 8px 0;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.4rem;
  }
}
