body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.paper-cutting-section {
    padding: 80px 5%;
    background: #121212;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-title span {
    color: #fff;
}

.cutting-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.cutting-card {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.cutting-card img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cutting-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
}


/* ===== Custom Navbar Styling ===== */
.navbar {
  background-color: #121212; /* Dark background */
  padding: 0.8rem 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Logo size */
.navbar-brand img {
  height: 55px;
  width: auto;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-right: 1.2rem;
  transition: color 0.3s ease;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
  color: #00bcd4 !important;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: #1e1e1e;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Dropdown Items */
.dropdown-item {
  color: #fff !important;
  padding: 10px 15px;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background-color: #00bcd4;
  color: #000 !important;
}

/* Mobile Navbar Toggle Icon */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  color: #fff;
  font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    background-color: #121212;
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
