/* GENERAL */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  padding-bottom: 4rem; /* safety space */
}

p {
  color: rgb(0, 0, 0);
}

/* HOME PAGE */

/* MAIN HERO BACKGROUND — FIXED */
.index-page {
  position: relative;
  width: 100%;
  min-height: 100vh; /* FULL viewport height */
  padding: 4rem 1rem; /* space at top and bottom */
  background: url("../Images/background image.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* PAGE LOADER */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: loader-bounce 1.2s infinite ease-in-out;
}

@keyframes loader-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #000;
  border-top: 5px solid red;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* CONTENT ABOVE OVERLAY */
.index-page > * {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* UNIVERSAL SECTION SETUP — FIXED */
section {
  margin: 0 auto;
  padding: 0 3rem;
  max-width: 900px;
  box-sizing: border-box;
  min-height: auto; /* FIX */
}

.section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  min-height: auto !important; /* FIX */
}

.section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

/* LOGO */
.logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* TYPOGRAPHY */
.section__text p {
  font-weight: 500;
}

.specializing {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 1.4rem 0;
}

/* BUTTONS */
.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  gap: 1rem; /* space between buttons */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* ensures buttons wrap on smaller screens */
}

/* BUTTONS */
.primary-btn,
.secondary-btn {
  font-weight: 500;
  padding: 1rem 1.5rem;
  font-size: 15px;
  min-width: 120px;
  border-radius: 4rem;
  border: 1px solid #000;
  background: none;
  transition: all 300ms ease;
}

/* INDIVIDUAL BUTTON COLORS */
.primary-btn:hover {
  color: red;
  border-color: rgb(0, 0, 0);
  cursor: pointer;
}

.secondary-btn:hover {
  color: red; /* choose a different hover color if you want */
  border-color: rgb(0, 0, 0);
  cursor: pointer;
}

/* SOCIAL ICONS */
#socials-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.social-icons img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.3);
}

.back-link {
  display: inline-block;
  margin: 2rem auto 0; /* space from content, center horizontally */
  padding: 0.75rem 1.5rem;
  background-color: none; /* dark background */
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 16px;
}

.back-link:hover {
  color: #ff0000;
  transform: translateY(-3px);
}

/* TRANSITION */

a,
.btn {
  transition: all 300ms ease;
}

/* DESKTOP NAV */
nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align top */
  align-items: center;
  gap: 1px; /* Less vertical space between logo and links */
  padding: 0.5rem 0; /* Reduce vertical padding */
  height: auto;
  margin-bottom: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 1rem;
  padding: 0;
  justify-content: center;
}

/* Main nav list items */
.nav-links li {
  position: relative;
}

/* Main dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%; /* directly below the parent */
  left: 0;
  background: #fff;
  padding: 0;
  list-style: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 160px;
}

.dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
}

.dropdown li a:hover {
  background-color: #f8f8f8;
  color: rgb(255, 0, 0);
  text-decoration-color: #000;
  text-underline-offset: 0.1rem;
}

/* Show main dropdown on hover */
.nav-links li:hover > .dropdown {
  display: block;
}

/* Nested dropdown container */
.nested-dropdown {
  position: relative;
}

/* Nested dropdown */
.dropdown.nested {
  display: none; /* hidden by default */
  position: absolute;
  top: 0;
  left: 100%; /* position to the right of parent */
  background: #fff;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown.nested li a {
  padding: 10px 15px;
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
}

.dropdown.nested li a:hover {
  background-color: #f2f2f2;
  color: rgb(255, 0, 0);
}

/* Show nested dropdown only when active via JS */
.dropdown.nested.active {
  display: block;
}

/* Cursor pointer for links that toggle nested menus */
.dropdown-toggle {
  cursor: pointer;
}

a {
  color: #000000;
  text-decoration: none;
  text-decoration-color: rgb(255, 255, 255);
}

a:hover {
  color: rgb(255, 0, 0);
  text-underline-offset: 1rem;
  text-decoration-color: #000000;
}
/* ================================ HAMBURGER NAV (GLOBAL BASE) =================================*/

#hamburger-nav {
  display: none;
  flex-direction: column;
  background-color: black;
  padding: 0.5rem;
  z-index: 1000;
}
#hamburger-nav .mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#hamburger-nav .logo img {
  width: 120px;
  height: auto;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}
.hamburger-icon span {
  height: 2px;
  background-color: red;
  transition: all 0.3s ease-in-out;
}
.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-links {
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  position: relative;
  top: 0;
  right: 0;
  height: auto;
  min-height: auto;
  width: 80%;
  background-color: black;
  padding: 4rem 2rem 3rem 2rem;
  overflow-y: auto;
  z-index: 1000;
}
.menu-links.open {
  transform: translateX(0);
}
.menu-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-links li {
  width: 100%;
}
.menu-links a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.menu-links a:hover {
  color: red;
}

/* Dropdown Sub-menus */
.menu-links ul ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 1rem;
  padding-left: 0.7rem;
  border-left: 2px solid red;
}
.menu-links ul ul.open {
  max-height: 500px;
}
.menu-links li > a .arrow {
  float: right;
  transition: transform 0.3s ease;
}
.menu-links li > a.open .arrow {
  transform: rotate(180deg);
}

/* Mobile contact section */
.mobile-topbar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid red;
  padding-top: 1rem;
  margin-top: 1rem;
}
.mobile-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.red-icon {
  color: red;
  font-size: 18px;
}
.mobile-icon a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
.mobile-icon a:hover {
  color: red;
}

/* Social icons bottom */ /* FIX SOCIAL ICONS NOT SHOWING ON MOBILE */
.mobile-socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 1px solid red;
  padding: 1rem 0;
  margin-top: 2rem !important; /* changed from auto */
  width: 100%;
}
.mobile-socials a {
  color: white;
  font-size: 20px;
  transition: transform 0.2s ease;
}
.mobile-socials a:hover {
  transform: scale(1.1);
  color: red;
}

/* Prevent body scroll when menu open */
.no-scroll {
  overflow: hidden;
}

/* Graphic Design Projects */
/* Accessible hidden H1 utility */

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.portfolio-section {
  max-width: 1500px;
  margin: 1.8rem auto;
  padding: 0 1rem;
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-header {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 2rem auto;
}

.portfolio-title {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.portfolio-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-align: center;
  transition: transform 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  height: auto; /* let browser scale properly */
  aspect-ratio: 4 / 3; /* maintain consistent ratio */
  object-fit: cover;
  transition: transform 0.4s ease;
  background: #f5f5f5; /* lightweight placeholder */
}

.portfolio-item:hover img {
  transform: scale(1.07);
}

.portfolio-item h3 {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  text-align: center;
}

.portfolio-item::before {
  content: none;
}
/* Branding Overview Section */
.branding-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1500px;
  padding: 3rem 2rem;
  text-align: center;
  color: #000;
  margin-top: 1rem;
}

.branding-content__text {
  flex: 1 1 350px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 2rem auto;
  box-sizing: border-box;
}

.branding-content__heading {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #000000;
  font-weight: 700;
}

.branding-content__heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.branding-content__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1.2rem;
}

.branding-content__paragraph.highlight {
  border-left: 4px solid #000;
  padding-left: 1rem;
  font-weight: 500;
  color: #000;
}

.branding-content__image {
  flex: 1 1 350px;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}

.branding-content__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.branding-content__img:hover {
  transform: scale(1.02);
}

/* Branding Gallery Section */
.branding-gallery {
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.branding-gallery__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}
.branding-gallery__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.branding-gallery__subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 2.5rem;
}

.branding-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.branding-gallery__item {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.branding-gallery__item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* Social Media Post Design*/

/* Hero Section */
.social-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 1500px;
  padding: 2rem 1rem; /* unified padding */
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-hero__content {
  position: relative;
  z-index: 2;
}

.social-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: #000000;
}

.social-hero__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.social-hero__subtitle {
  font-size: 1.2rem;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

/* Mockup Row */
.social-hero__mockups {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-hero__mockup img {
  width: 100%;
  max-width: 300px;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

/* Features Section */
.social-features {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 0 4rem;
  max-width: 1500px;
  margin: 0 auto;
}

.social-features__row {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap; /* ensures wrapping on smaller screens */
}

.social-features__text,
.social-features__image {
  flex: 1 1 300px; /* allows proper shrinking on mobile */
  min-width: 250px;
}

.social-features__image img {
  width: 100%;
  height: auto;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.social-features__heading {
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
}

.social-features__text p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
}

/* Interactive Social Media Gallery */
.social-gallery {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
}

.social-gallery__title {
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 2rem;
}

.social-gallery__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.social-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.social-gallery__item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.social-gallery__item:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.social-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.social-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.social-gallery__item:hover .social-gallery__overlay {
  opacity: 1;
}

/* ================================
   Company Profile - Magazine Preview
   ================================ */

.company-profile-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  text-align: center;
  color: #000;
}

.company-profile__intro {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.company-profile__title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.company-profile__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #d62828;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.company-profile__subtitle {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Magazine Grid */
.company-profile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Card Styling */
.company-profile__card {
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.047);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image */
.company-profile__img {
  width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
  border-radius: 4px; /* subtle polish */
  object-fit: cover;
}

/* Headings & Text */
.company-profile__heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.company-profile__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

/* ================================
   PACKAGING DESIGN – RESPONSIVE FIX
   ================================ */

/* Base container */
.packaging-showcase {
  max-width: 1000px;
  padding: 0 1rem;
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Highlight Section */
.packaging-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.packaging-highlight__image img {
  width: 100%;
  height: auto;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
}

.packaging-highlight__image img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* TEXT STYLING */
.packaging-highlight__details {
  padding: 1rem;
}

.packaging-highlight__title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.packaging-highlight__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.packaging-highlight__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1.5rem;
}

/* GALLERY SECTION */
.packaging-gallery {
  text-align: center;
}

.packaging-gallery__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
}

.packaging-gallery__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.packaging-gallery__subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 2rem;
}

/* GRID */
.packaging-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.packaging-gallery__grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.packaging-gallery__grid img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* ===========================
   BUSINESS CARD SECTION
   =========================== */

.business-card {
  max-width: 1500px;
  padding: 0 1rem;
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem auto;
}

.business-card__intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.business-card__intro h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
}

.business-card__intro p {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* ===== GRID LAYOUT ===== */
.business-card__grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* bigger items */
  gap: 3rem;
  width: 100%;
}

/* ===== GRID ITEM ===== */
.business-card__item {
  padding: 2rem 1rem;
  transition: 0.3s ease;
  text-align: center;
}

.business-card__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.business-card__item h3 {
  margin: 1rem 0 0.8rem;
}

.business-card__item h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d62828;
  margin: 0.5rem auto 0;
}

.business-card__item p {
  font-size: 1rem;
}

/* ===== IMAGE (BIGGER) ===== */
.business-card__img {
  width: 100%;
  height: 320px; /* Bigger images */
  object-fit: cover; /* perfect cropping */
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.business-card__img:hover {
  transform: scale(1.05);
}

/* CTA */
.business-card__cta {
  color: #000;
  padding: 3rem 2rem;
  max-width: 900px;
  margin-bottom: 2rem;
}

.business-card__cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Button */
.btn-primary {
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 1rem;
  font-size: 15px;
  width: 9rem;
  border-radius: 3rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-primary:hover {
  background: transparent;
  color: #ff0000;
}

/* ================= PRINT DESIGN ================= */
.print-gallery {
  max-width: 1600px;
  margin: 5rem auto;
  text-align: center;
  padding: 0 1.5rem;
}

.print-gallery__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.print-gallery__subtitle {
  font-size: 1rem;
  margin-bottom: 3rem;
  opacity: 0.85;
}

.print-gallery__grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(380px, 1fr)
  ); /* BIGGER IMAGES */
  gap: 2.5rem;
}

.print-gallery__item {
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.print-gallery__item:hover {
  transform: scale(1.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.print-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.print-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s ease;
  border-radius: 0; /* REMOVE BORDER RADIUS */
}

.print-gallery__item:hover .print-gallery__overlay {
  opacity: 1;
}

/* ------------------------- */
/*      APPAREL CATEGORIES   */
/* ------------------------- */
.apparel-categories {
  max-width: 1300px;
  margin: 5rem auto;
  padding: 0 2rem;
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.category-card {
  padding: 2.8rem 2rem;
  text-align: center;
  transition: 0.35s ease;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.072);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.category-card p {
  opacity: 0.8;
  font-size: 1rem;
}

.apparel-gallery {
  max-width: 1400px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery-grid-item:hover {
  transform: scale(1.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}

.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}

.apparel-process {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.step {
  background: #f3f3f3;
  padding: 3rem 2.2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #d62828;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.step h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.step p {
  opacity: 0.85;
}

/* ============================
  DESIGN SERVICES
=============================== */

.graphic-showcase {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.graphic-showcase__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.graphic-showcase__title {
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
}

.graphic-showcase__description {
  font-size: 1rem;
  color: #000;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.7;
}

.portfolio-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.portfolio-row.reverse {
  flex-direction: row-reverse;
}

.portfolio-text {
  flex: 1;
}

.portfolio-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
}

.portfolio-text p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.portfolio-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #000;
  font-weight: 400;
  border-radius: 50px;
  border: 1px solid #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.portfolio-btn:hover {
  color: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
  transform: translateY(-2px);
}

.portfolio-image {
  flex: 1;
}

.portfolio-image img {
  width: 100%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.portfolio-image img:hover {
  transform: scale(1.03);
}

.client-experience {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.client-experience__title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.5rem;
}

.client-experience__description {
  font-size: 1rem;
  color: #000000;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* GRID WITH WOW EFFECT */
.client-experience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.5rem;
}

.client-experience__card {
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.client-experience__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.client-experience__testimonial {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.7rem;
  line-height: 1.7;
}

.client-experience__info {
  align-items: center;
  gap: 1rem;
}

.client-experience__info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

.client-experience__info span {
  font-size: 0.9rem;
  color: #000000;
}

/* CTA BUTTON */
.client-experience__btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.5rem 1rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  font-weight: 300;
  text-decoration: none;
  transition: 0.3s ease;
}

.client-experience__btn:hover {
  color: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
  transform: translateY(-3px);
}

/* ========== WEB DEV ========== */

.wdv-services {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.wdv-services__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000;
}

.wdv-services__intro {
  text-align: center;
  color: #000;
  font-size: 1rem;
  margin-bottom: 4rem;
}

.wdv-service {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.wdv-service--alt {
  flex-direction: row-reverse;
}

.wdv-service__text {
  flex: 1;
}

.wdv-service__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
}

.wdv-service__desc {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.wdv-service__btn {
  padding: 0.9rem 2.5rem;
  border: 2px solid #000;
  border-radius: 50px;
  color: #000;
  background: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wdv-service__btn:hover {
  color: #ff0000;
}

.wdv-service__image {
  flex: 1;
}

.wdv-service__image img {
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.wdv-service__image img:hover {
  transform: scale(1.03);
}

.wdv-process {
  background: #fafafa;
  padding: 6rem 2rem;
  text-align: center;
}

.wdv-process__heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000;
}

.wdv-process__intro {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 3rem;
}

.wdv-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.wdv-process__step {
  background: #fff;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.wdv-process__step:hover {
  transform: translateY(-5px);
}

.wdv-process__num {
  background: #ff0000;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: inline-block;
}

.wdv-process__step h3 {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wdv-process__step p {
  color: #000;
  font-size: 1rem;
}
/* Digital Marketing Page */

/* Sections */
.dm-sections {
  background: #fff;
  padding: 5rem 2rem;
}

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

.dm-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.dm-subtitle {
  text-align: center;
  color: #000000;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.dm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.dm-card {
  background: #fff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.dm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dm-icon {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.dm-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.8rem;
}

.dm-card p {
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dm-btn-service {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: none;
  color: #000000;
  border: 1px solid #000;
  font-weight: 500;
  transition: 0.3s ease;
}

.dm-btn-service:hover {
  color: #ff0000;
}
.dm-process {
  color: #fff;
  padding: 5rem 2rem;
}

.dm-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.dm-step {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.dm-step:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.dm-step-number {
  display: inline-block;
  background: #fff;
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 1rem;
}

/* FREELANCE SECTION */
.freelance-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.freelance-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.freelance-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.freelance-header p {
  color: #000;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* GRID */
.freelance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARDS */
.freelance-card {
  background: #f9f9f9;

  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.freelance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.freelance-card .icon {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.freelance-card h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.freelance-card .price {
  font-weight: 800;
  color: #ff0000;
  margin-bottom: 0.8rem;
}

.freelance-card p {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

.freelance-card ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.freelance-card ul li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: #000;
}

.freelance-card ul li::before {
  content: "✅ ";
  color: #0078ff;
}

.freelance-card .range {
  font-weight: 600;
  color: #111;
  margin-top: 1rem;
}

/* BUTTON */
.freelance-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: none;
  color: #000;
  border: 2px solid #000;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.freelance-btn:hover {
  color: #ff0000;
}

/* HIGHLIGHTED PACKAGE */
.highlight {
  background: #111;
  color: #fff;
}

.highlight .icon,
.highlight h3,
.highlight p,
.highlight ul li,
.highlight .range {
  color: #fff;
}

.highlight .freelance-btn {
  color: #fff;
  border: 2px solid #fff;
}

.highlight .freelance-btn:hover {
  color: #ff0000;
}

/* PREMIUM PACKAGE */
.premium {
  background: #fff;
}

.premium .freelance-btn:hover {
  color: #ff0000;
}

/* PROCESS SECTION */
.freelance-process {
  padding: 5rem 2rem;
  text-align: center;
}

.process-header h2 {
  font-size: 2.6rem;
  color: #111;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-header p {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: #fff;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.process-step i {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

/* MONTHLY SUBSCRIPTION STYLES */
.hamilton-subscriptions {
  background: #fff;
  padding: 5rem 2rem;
}

.subs-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.subs-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
}

.subs-header p {
  font-size: 1rem;
  color: #000;
  line-height: 1.7;
}

.subs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.subs-card {
  background: #f9f9f9;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.subs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.subs-card h3 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.subs-price {
  font-size: 1rem;
  font-weight: 700;
  color: red;
  margin-bottom: 0.5rem;
}

.subs-desc {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.subs-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.subs-card ul li {
  color: #000;
  font-size: 0.95rem;
  margin: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.btn-primary {
  display: inline-block;
  background: none;
  color: #000;
  border: 2px Solid #000000;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  color: red;
}

/* FEATURED STYLES */
.featured {
  background: #fff;
  color: #000;
}

.featured h3,
.featured .subs-price,
.featured ul li,
.featured p {
  color: #000;
}

.elite {
  background: #fff;
  color: #000;
}

.ultimate {
  background: #fff;
  color: #000;
}

.ultimate .btn-primary {
  background: none;
}

.ultimate .btn-primary:hover {
  color: rgb(255, 0, 0);
}

.subtext {
  font-size: 0.9rem;
  color: #000;
}

/* CONSULTATION SECTION */
.hamilton-consultations {
  background: #fff;
  padding: 5rem 2rem;
}

.consult-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.consult-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.consult-header p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.consult-card {
  background: #f9f9f9;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.consult-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.consult-card h3 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 0.6rem;
}

.consult-card p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.consult-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.consult-card ul li {
  font-size: 0.95rem;
  color: #000000;
  margin: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.consult-card ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #000000;
}

.consult-price {
  color: red;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.consult-note {
  display: block;
  font-size: 0.9rem;
  color: #000000;
}

/* PROCESS SECTION */
.consult-process {
  padding: 5rem 2rem;
  text-align: center;
}
.consult-card .btn-primary {
  margin-top: 1rem;
  display: inline-block;
  text-align: center;
}

.process-header h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
}

.process-header p {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: #000000;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.process-step h4 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

/* BRANDING PACKAGES */

.branding-packages {
  padding: 80px 20px;
  text-align: center;
}

.branding-packages h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.branding-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.branding-card {
  background: #fff;
  padding: 30px;
  width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.branding-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.branding-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000;
}
/* GREEN TICK LIST STYLE */
.branding-card ul,
.branding-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branding-card ul li,
.branding-step ul li {
  position: relative;
  padding-left: 28px; /* space for tick */
  margin-bottom: 10px;
  line-height: 1.4;
}

/* The green tick */
.branding-card ul li::before,
.branding-step ul li::before {
  content: "✅";

  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.branding-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.branding-card span {
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
}

.branding-btn-small {
  display: inline-block;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  border: 2px solid #000000;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.branding-btn-small:hover {
  color: red;
}

/* Branding Process */
.branding-process {
  padding: 80px 20px;
  text-align: center;
}

.branding-process h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.branding-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.branding-step {
  background: #ffffff;
  color: #000000;
  padding: 30px;

  width: 260px;
  transition: transform 0.3s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.branding-step:hover {
  transform: translateY(-10px);
}

/* Contact Section */
.branding-contact {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.branding-contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.branding-contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.branding-contact input,
.branding-contact select,
.branding-contact textarea {
  padding: 15px;
  border: 1px solid #000000;
  font-size: 1rem;
}

.branding-contact button {
  padding: 15px;
  background: none;
  border: 2px solid #000000;
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.branding-contact button:hover {
  color: rgb(255, 0, 0);
}

/* ==============================
   Print & Marketing Design Section
============================== */
.services-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Container Grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Individual Service Box */
.service-box {
  border: 1px solid #ffffff;
  padding: 2rem;
  text-align: left;
  border-radius: none;
  background: #fafafa;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.service-box .price {
  font-weight: 600;
  color: #ff0000;
  margin-bottom: 1rem;
}

.service-box p {
  color: #000000;
  line-height: 1.6;
}

.service-box ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: #333;
}

.service-box li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.service-box li::before {
  content: "✅ ";
  color: #ff0000;
  font-weight: bold;
}

.service-footer {
  margin-top: 1rem;
  color: #000000;
}

/* Custom Button */
.custom-btn {
  font-weight: 500;
  transition: all 300ms ease;
  padding: 1rem;
  font-size: 15px;
  width: 8rem;
  border-radius: 4rem;
  border: rgb(0, 0, 0) 0.1rem solid;
  background-color: none;
  color: #000000;
  display: block;
  margin: 1.5rem auto 0 auto; /* Centers the button */
  text-align: center;
}

.custom-btn:hover {
  color: rgb(255, 0, 0);
  transform: translateY(-3px);
  cursor: pointer;
}

/* Illustration Hero Section */

.illustration-hero__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.illustration-hero__content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.illustration-btn {
  padding: 0.9rem 2.5rem;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4rem;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  transition: all 0.3s ease;
}

.illustration-btn:hover {
  color: #ff4500;
}

/* Illustration Packages */
.illustration-packages {
  padding: 80px 20px;
  text-align: center;
}

.illustration-packages h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.illustration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.illustration-card {
  background: #fff;
  padding: 30px;
  width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.illustration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.illustration-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
}

.illustration-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.illustration-card span {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.illustration-card ul {
  text-align: left;
  margin-bottom: 15px;
  list-style: none;
}

.illustration-card li {
  margin-bottom: 5px;
}

.illustration-btn-small {
  display: inline-block;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  border: 2px solid #000000;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.illustration-btn-small:hover {
  color: rgb(255, 0, 0);
}

/* Illustration Contact Section */
.illustration-contact {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.illustration-contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.illustration-contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.illustration-contact input,
.illustration-contact select,
.illustration-contact textarea {
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.illustration-contact button {
  padding: 12px;
  background: none;
  color: black;
  border: 2px solid #000000;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.illustration-contact button:hover {
  color: #e63946;
}

/* ================================
   APPAREL DESIGN SECTION STYLING
   ================================ */
.apparel-design-section {
  padding: 80px 20px;
  text-align: center;
}

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

.apparel-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.apparel-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
}

.apparel-packages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.apparel-card {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.178);
  padding: 2rem;
  width: 320px;
  transition: all 0.3s ease;
}

.apparel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.apparel-card h3 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.apparel-price {
  font-size: 1.1rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.old-price {
  text-decoration: line-through;
  color: #000000;
  font-size: 0.9rem;
}

.apparel-card ul {
  text-align: left;
  color: #000000;
  margin: 1rem 0;
  padding-left: 1rem;
  list-style: none;
}

.apparel-card ul li {
  margin-bottom: 0.5rem;
}

.apparel-btn {
  background: none;
  color: #000000;
  border: 2px solid #000;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.apparel-btn:hover {
  color: #ff0000;
  transform: translateY(-3px);
}

.apparel-process {
  margin-top: 80px;
  text-align: center;
}

.apparel-process h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.apparel-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #000000;
}

/* ================================
   HAMILTON WEB PACKAGES
   ================================ */

/* Packages Grid */
.hamilton-web-section {
  padding: 80px 20px;
  text-align: left;
}

.hamilton-web-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.hamilton-web-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hamilton-web-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.hamilton-web-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hamilton-web-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #000;
}

.hamilton-web-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.hamilton-web-card ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 15px;
}

.hamilton-web-card span {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 15px;
}

.hamilton-web-card-btn {
  padding: 0.9rem 2.5rem;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4rem;
  transition: all 300ms ease;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
}

.hamilton-web-card-btn:hover {
  color: rgb(255, 0, 0);
}

/* Booking / How It Works */
.hamilton-web-process {
  padding: 80px 20px;
  text-align: center;
}

.hamilton-web-process h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.hamilton-web-step {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.hamilton-web-step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.hamilton-web-step p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

/* SEO PACKAGES*
.hamilton-seo-hero {
  background: linear-gradient(135deg, #000, #ff0000);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hamilton-seo-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hamilton-seo-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hamilton-seo-btn {
  display: inline-block;
  background: none;
  color: #000;
  padding: 0.9rem 2.5rem;
  border-radius: 4rem;
  font-weight: 600;
  border: 2px Solid #000000;
  text-decoration: none;
  transition: 0.3s ease;
}

.hamilton-seo-btn:hover {
  color: rgb (255, 0, 0);
}


/* Social Media Management packages */

/* 💼 Packages */
.smm-packages {
  text-align: center;
  padding: 80px 20px;
}
.smm-packages h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.smm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.smm-card {
  background: #fff;
  width: 320px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.smm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.smm-card h3 {
  color: #ff0000;
  margin-bottom: 10px;
}
.smm-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.smm-card span {
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.smm-card ul {
  text-align: left;
  margin-bottom: 15px;
  padding-left: 15px;
  list-style: none;
}
.smm-card ul li {
  margin-bottom: 6px;
}

.smm-btn {
  background: none;
  color: #000000;
  border: 2px Solid #000000;
  padding: 0.9rem 2.5rem;
  border-radius: 4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ⚙️ Process */
.smm-process {
  text-align: center;
  padding: 80px 20px;
}
.smm-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.smm-step {
  background: #fff;
  padding: 30px;

  width: 300px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* SEO Packages */
.hamilton-seo-packages {
  padding: 80px 20px;
  text-align: center;
}

.hamilton-seo-packages h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.hamilton-seo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hamilton-seo-card {
  background: #fff;
  padding: 30px;
  width: 320px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.hamilton-seo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hamilton-seo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
}

.hamilton-seo-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.hamilton-seo-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.hamilton-seo-card li {
  margin-bottom: 6px;
}

.hamilton-seo-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff0000;
  display: block;
  margin-bottom: 15px;
}

.hamilton-seo-book-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 15px;
  background: none;
  border-radius: 4rem;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.hamilton-seo-book-btn:hover {
  color: rgb (255, 0, 0);
}

/* SEO Process */
.hamilton-seo-process {
  padding: 80px 20px;
  text-align: center;
}

.hamilton-seo-process h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.hamilton-seo-step {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.hamilton-seo-step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hamilton-seo-step p {
  font-size: 1rem;
  line-height: 1.6;
}

/* GOOGLE MARKETING */
.hamilton-google-marketing {
  padding: 5rem 2rem;
  text-align: center;
}

.google-marketing-intro h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.google-marketing-intro p {
  font-size: 1.1rem;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.google-marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.google-service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.google-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.google-icon {
  font-size: 2.5rem;
  color: #e60000;
  margin-bottom: 1rem;
}

.google-service-card h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.google-service-card p {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.google-service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.google-service-card ul li {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #000000;
}

.google-service-card ul li::before {
  content: "✅ ";
  color: #e60000;
}

.google-price {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.google-btn {
  background: none;
  color: #000000;
  border: 2px solid #000000;
  text-decoration: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.google-btn:hover {
  color: rgb(255, 0, 0);
}

/* Highlighted Cards */
.featured-google {
  background: #111;
  color: #fff;
}

.featured-google h3,
.featured-google p,
.featured-google ul li,
.featured-google .google-price {
  color: #fff;
}

.featured-google .google-btn {
  color: white;
  background: none;
  border: 2px solid #ffffff;
  text-decoration: none;
  padding: 0.7rem 2rem;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.featured-google .google-btn:hover {
  color: rgb(255, 0, 0);
}

/* PROCESS SECTION */
.google-marketing-process {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.google-marketing-process h2 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 3rem;
}

.google-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.google-step {
  background: #f9f9f9;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.google-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.google-step i {
  font-size: 2rem;
  color: #e60000;
  margin-bottom: 1rem;
}

.google-step h4 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.google-step p {
  font-size: 1rem;
  color: #000000;
}

/* Google Booking */
.google-booking {
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto 100px auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.google-booking h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.google-booking form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.google-booking input,
.google-booking select,
.google-booking textarea {
  padding: 15px;
  border: 1px solid #000000;
  font-size: 1rem;
  border-radius: 8px;
}

.google-booking textarea {
  min-height: 120px;
}

.google-booking button {
  padding: 15px;
  background: none;
  color: #000000;
  border: 2px solid #000000;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.google-booking button:hover {
  color: red;
  border-color: red;
  transform: scale(1.03);
}


/* ECOMMERCE MARKETING SECTION */
.hamilton-ecom-marketing {
  background: #fff;
  padding: 5rem 2rem;
}

.ecom-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.ecom-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.ecom-header p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
}

.ecom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ecom-card {
  background: #f9f9f9;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.ecom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ecom-icon {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.ecom-card h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 0.7rem;
}

.ecom-card p {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.ecom-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.ecom-card ul li {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #000000;
}

.ecom-card ul li::before {
  content: "✅ ";
}

.ecom-price {
  display: block;
  font-weight: 700;
  color: red;
  margin-bottom: 1rem;
}

.ecom-btn {
  background: none;
  color: #000000;
  text-decoration: none;
  border: 2px Solid #000000;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.ecom-btn:hover {
  color: rgb(255, 0, 0);
}
/* 📩 ECOMMERCE CONTACT FORM */
.ecom-contact {
  text-align: center;
  padding: 5rem 2rem;
  background: #fff;
}

.ecom-contact h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.8rem;
}

.ecom-contact p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 2rem;
}

.ecom-contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecom-contact input,
.ecom-contact select,
.ecom-contact textarea {
  padding: 15px;
  border: 1px solid #000;
  font-size: 1rem;
}

.ecom-contact button {
  background: none;
  color: #000;
  border: 2px solid #000;
  padding: 0.9rem 2.5rem;
  border-radius: 4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ecom-contact button:hover {
  color: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
}

/* Highlighted Cards */
.highlight {
  background: #111;
  color: #fff;
}

.highlight .ecom-icon,
.highlight h3,
.highlight p,
.highlight ul li,
.highlight .ecom-price {
  color: #fff;
}

.highlight .ecom-btn {
  background: none;
  color: #fff;
  text-decoration: none;
  border: 2px Solid #fff;
  padding: 0.7rem 2rem;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}
.highlight .ecom-btn:hover {
  color: rgb(255, 0, 0);
}

/* Premium Card */
.premium {
  background: #fff;
  color: #fff;
}

.premium .ecom-btn {
  background: none;
  color: #111;
  border: 2px Solid #000000;
  font-weight: 700;
}

.premium .ecom-btn:hover {
  color: rgb(255, 0, 0);
}

/* PROCESS SECTION */
.ecom-process {
  padding: 5rem 2rem;
  text-align: center;
}

.process-header h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.process-header p {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: #fff;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.process-step h4 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

/* CONTENT MARKETING SECTION */
.hamilton-content-marketing {
  background: #fff;
  padding: 5rem 2rem;
}

.content-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.content-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.content-header p {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Content Card */
.content-card {
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.content-icon {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.content-card h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 0.7rem;
}

.content-card p {
  color: #000;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.content-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.content-card ul li {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #000;
}

.content-card ul li::before {
  content: "✅ ";
}

.content-price {
  display: block;
  font-weight: 700;
  color: red;
  margin-bottom: 1rem;
}

.content-btn {
  background: none;
  color: #000;
  text-decoration: none;
  border: 2px solid #000;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.content-btn:hover {
  color: rgb(255, 0, 0);
}

/* Highlighted (Black) Card */
.highlight {
  background: #111;
  color: #fff;
}

.highlight .content-icon,
.highlight h3,
.highlight p,
.highlight ul li,
.highlight .content-price {
  color: #fff;
}

.highlight .content-btn {
  border: 2px solid #fff;
  color: #fff;
}

.highlight .content-btn:hover {
  color: rgb(255, 0, 0);
}

/* Premium Card (Luxury White) */
.premium {
  background: #fff;
}

.premium .content-btn {
  color: #000000;
  border: 2px solid #000;
  font-weight: 700;
}

.premium .content-btn:hover {
  color: rgb(255, 0, 0);
}

/* PROCESS SECTION */
.content-process {
  padding: 5rem 2rem;
  text-align: center;
}

.content-process-header h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.content-process-header p {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.content-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.content-step {
  background: #fff;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.content-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.content-step h4 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.content-step p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}
/* Content Booking */
.content-booking {
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto 100px auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.content-booking h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.content-booking form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-booking input,
.content-booking select,
.content-booking textarea {
  padding: 15px;
  border: 1px solid #000000;
  font-size: 1rem;
}

.content-booking textarea {
  min-height: 120px;
}

.content-booking button {
  padding: 15px;
  background: none;
  color: #000000;
  border: 2px solid #000000;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-booking button:hover {
  color: red;
  border-color: rgb(0, 0, 0);
  transform: scale(1.03);
}


/* EMAIL MAREKTING */


/* Packages */
.copy-packages {
  padding: 80px 20px;
  text-align: left;
}

.copy-packages h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

.copy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.copy-card {
  background: #fff;
  width: 280px;
  padding: 30px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.copy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.copy-card h3 {
  color: #ff3300;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.copy-card span {
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
}

.copy-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.copy-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.copy-card li {
  margin: 5px 0;
}

.copy-btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: none;
  color: #000000;
  border: 2px Solid #000000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.copy-btn-small:hover {
  color: rgb(255, 0, 0);
}

/* Process Section */
.copy-process {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.copy-process h2 {
  font-size: 2.3rem;
  margin-bottom: 50px;
}

.copy-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.copy-step {
  background: rgba(203, 195, 195, 0.192);
  color: #000000;
  padding: 25px;
  width: 220px;
  transition: transform 0.3s ease;
}

.copy-step:hover {
  transform: translateY(-10px);
}

/* Booking */
.copy-booking {
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto 100px auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.copy-booking h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.copy-booking form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copy-booking input,
.copy-booking select,
.copy-booking textarea {
  padding: 15px;

  border: 1px solid #000000;
  font-size: 1rem;
}

.copy-booking button {
  padding: 15px;
  background: none;
  color: #000000;
  border: 2px Solid #000000;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.copy-booking button:hover {
  color: rgb(255, 0, 0);
}

/* ==============================
   Product Packaging Design Section
============================== */
.packaging-section {
  padding: 4rem 2rem;
  text-align: center;
}

.packaging-header h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 0.8rem;
}

.packaging-header p {
  color: #000000;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.packaging-card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.packaging-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.packaging-card h3 {
  color: #000;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.packaging-price {
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 1rem;
}

.packaging-card p {
  color: #000000;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.packaging-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.packaging-card ul li {
  margin: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.packaging-card ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #ff0000;
}

.packaging-footer {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.packaging-btn {
  display: inline-block;
  color: #000000;
  border: 1px solid #000;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background-color: none;
}

.packaging-btn:hover {
  color: #ff0000;
}

/* PREMIUM PACKAGE — BLACK FONT COLORS (DEFAULT STYLE) */
.packaging-card.premium {
  background: #ffffff;
  color: #000000;
}

.packaging-card.premium h3 {
  color: #000000;
}

.packaging-card.premium p {
  color: #000000;
}

.packaging-card.premium ul li {
  color: #000000;
}

.packaging-card.premium ul li::before {
  color: #ff0000; /* keep red checkmarks */
}

.packaging-card.premium .packaging-price {
  color: #ff0000;
}

.packaging-card.premium .old-price {
  color: #5a5a5a; /* subtle grey for old price */
}

.packaging-card.premium .packaging-btn {
  color: #000000;
  border: 1px solid #000;
}

.packaging-card.premium .packaging-btn:hover {
  color: #ff0000;
}

/* ================================
   HAMILTON SAGITA - ABOUT & SERVICES STYLING
   ================================ */

/* ABOUT SECTION */
/* ================================
   HAMILTON SAGITA - ABOUT & SERVICES STYLING
   ================================ */

/* ABOUT SECTION */
.about {
  padding: 80px 20px;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Layout Rows */
.row,
.second-about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/* Text Block */
.single-about-txt,
.single-about-txt2 {
  flex: 1;
  min-width: 320px;
}

.single-about-txt h3,
.single-about-txt2 h3 {
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
}

.single-about-txt p,
.single-about-txt2 p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 2rem;
}

/* Image Styling */
.single-about-img,
.single-about-img2 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 500px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.single-about-img img,
.single-about-img2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-about-img img:hover,
.single-about-img2 img:hover {
  transform: scale(1.05);
}

/* Custom Button */
.custom-btn {
  font-weight: 500;
  transition: all 300ms ease;
  padding: 1rem;
  font-size: 15px;
  width: 8rem;
  border-radius: 4rem;
  border: rgb(0, 0, 0) 0.1rem solid;
  background-color: #000000;
  box-shadow: #ff0000;
}

.custom-btn {
  background: none;
}

.custom-btn:hover {
  color: rgb(255, 0, 0);
  transform: translateY(-3px);
  cursor: pointer;
}

/* Underline Divider */
.about-underline {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 50px 0;
}

/* ================================
   SERVICES SECTION
   ================================ */
#services {
  padding: 80px 20px;
  background-color: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 1px;
}

.services-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.service-item {
  flex: 1 1 28%;
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.214);
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ff0000;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
}

/* Button Wrapper   */
.service-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}

.btn.btn-color-4 {
  font-weight: 500;
  transition: all 300ms ease;
  padding: 1rem;
  font-size: 15px;
  width: 8rem;
  border-radius: 4rem;
  border: rgb(0, 0, 0) 0.1rem solid;
  background-color: #000000;
  box-shadow: #ff0000;
}

.btn.btn-color-4 {
  background: none;
}

.btn.btn-color-4:hover {
  color: rgb(255, 0, 0);
  transform: translateY(-3px);
  cursor: pointer;
}

/* ================================
   TRUSTED COMPANIES
   ================================
#trusted-companies {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.trusted-heading {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #000;
  text-transform: uppercase;
}

.company-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.company-logo img {
  max-height: 100px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.company-logo img:hover {
  filter: grayscale(1%);
  opacity: 1;
}

/* ================================
   BANNER CTA
   ================================*/
.banner {
  position: relative;
  background: url("../Images/Lets\ Start.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.banner-overlay {
  background: rgba(145, 134, 134, 0.246);
  padding: 120px 20px;
}

.banner-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.btn.btn-banner {
  font-weight: 500;
  transition: all 300ms ease;
  padding: 1rem;
  font-size: 15px;
  width: 8rem;
  border-radius: 4rem;
  border: rgb(255, 255, 255) 0.1rem solid;
  background-color: none;
  box-shadow: #ff0000;
}

.btn.btn-banner {
  background: white;
}

.btn.btn-banner:hover {
  color: rgb(255, 0, 0);
  transform: translateY(-3px);
  cursor: pointer;
}

/*Contact*/
/* HAMILTON SAGITA - CONTACT SECTION STYLING */

.contact-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-header p {
  color: #000;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: none;

  background: rgba(205, 6, 6, 0.683);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ffffff;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Dropdown styling fix for dark mode */
.form-group select option {
  background: #000000; /* Dark dropdown background */
  color: #fff;
}

.form-group select optgroup {
  background: #000;
  color: #ff0015;
  font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #e63946;
}

textarea {
  resize: none;
  grid-column: 1 / 3;
}

.submit-btn {
  grid-column: 1 / 3;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 20rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  color: rgb(255, 0, 0);
  cursor: pointer;
  transform: translateY(-2px);
}

.submit-btn {
  background: none;
}

/* FOOTER */
.hs-footer {
  background-color: #fff;
  color: #000;
  padding: 2rem 6rem 2rem;
  border-top: 4px solid red;
}

/* Links */
.hs-footer a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hs-footer a:hover {
  color: red;
}

/* Footer Top: 4 Columns */
.hs-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* Columns */
.hs-footer-column {
  flex: 1 1 220px;
  min-width: 100px;
}

/* Headings */
.hs-footer-column h4 {
  margin-bottom: 1rem;
  color: red;
  text-decoration: solid underline;
}

/* Lists */
.hs-footer-column ul {
  list-style: none;
  padding: 0;
}
.hs-footer-column li {
  margin: 0.5rem 0;
}

/* Logo & Socials Column */
.hs-footer-logo {
  display: flex;
  flex-direction: column;
}

/* Logo Image */
.hs-footer-logo img {
  width: 150px;
  max-width: 100%;
  margin-bottom: 1rem;
}

/* Social Icons */
.hs-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.hs-footer-socials a {
  font-size: 20px;
  color: #000;
  display: flex;
  transition: all 0.3s ease;
}
.hs-footer-socials a:hover {
  color: red;
  transform: scale(1.2);
}

/* Footer Bottom (Copyright) */
.hs-footer-bottom {
  margin-top: 1rem;
  color: #000;
  font-size: 14px;
  border-top: 1px solid red;
  padding-top: 0.5rem;
  width: 100%; /* Ensure full width */
}



/* ======================
         SHOP HERO SECTION
      ====================== 

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.shop-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}*/

/* ======================
         SHOP FILTERS
      ====================== 
.shop-filters {
  text-align: center;
  margin: 50px 0 30px;
}

.shop-filters button {
  background: none;
  border: 2px solid #000000;

  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.shop-filters button:hover {
  color: #ff0000;
}*/

/* ======================
         SHOP GRID
      ====================== 
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 30px 80px;
}

.shop-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.shop-item:hover {
  transform: translateY(-5px);
}

.shop-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.shop-item h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #000;
}

.shop-item p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 15px;
}

.shop-item .price {
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 15px;
}

.shop-item .btn {
  background: none;
  border: 2px solid #000000;

  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.shop-item .btn:hover {
  color: #ff0000;
}



}

/* Product Photography *

/* Product Showcase Zig-Zag Layout *
.product-showcase-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family: "Poppins", sans-serif;
  color: #000;
  background-color: #fafafa;
  text-align: center;
}

.showcase-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.showcase-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.showcase-subtext {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Zig-Zag Grid *
.showcase-gallery-zigzag {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.showcase-item {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effects *
.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.showcase-item:hover img {
  transform: scale(1.05);
}

/* Zig-Zag offsets *
.showcase-item:nth-child(odd) {
  margin-top: 30px;
}
.showcase-item:nth-child(even) {
  margin-bottom: 30px;
}

/* Event Photography Section *
.event-photography-section {
  background-color: #fafafa;
  padding: 3rem 1rem;
  font-family: "Helvetica Neue", sans-serif;
  color: #111;
}

.event-header {
  text-align: center;
  margin-bottom: 2rem;
}

.event-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.event-header p {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* Gallery Layout *
.event-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.event-item.reverse {
  justify-content: flex-end;
}

.event-item img {
  width: 48%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.event-item img:hover {
  transform: scale(1.05);
}

*/
