/* ================= GLOBAL ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #0f172a;
  color: #e2e8f0;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 20px;
}

section {
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease forwards;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(15, 23, 42, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1e293b;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #38bdf8;
}

.dropbtn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.dropbtn:hover {
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  background-color: #1e293b;
  border-radius: 8px;
  overflow: hidden;
  min-width: 180px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: #e2e8f0;
}

.dropdown-content a:hover {
  background-color: #334155;
}

.dropdown-content.show {
  display: block;
}

/* ================= PRICING TABLE ================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 18px;
  text-align: left;
}

th {
  background: #111827;
  font-weight: 600;
}

tr {
  transition: 0.3s ease;
}

tr:hover {
  background-color: #334155;
}

/* ================= GALLERY ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}