@media (max-width: 768px) {
  .hero-Section {
    background-attachment: scroll;
    height: 75vh;
    background-position: center;

    /* ফিক্স করলাম  */
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  #imageModal .modal-body::after {
    font-size: 24px;
    letter-spacing: 5px;
  }
}

/* tablet */
@media (max-width: 768px) {
  .gallery-container {
    column-count: 2;
  }
}

/* mobile */
@media (max-width: 576px) {
  .gallery-container {
    column-count: 1;
    /* ফিক্স করলাম  */
  }
}

/* ===============================
SMART NAVBAR
================================ */

.glass-nav {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;

  /* ফিক্স করলাম  */
}

/* SAFETY FALLBACK COLOR */

.glass-nav .nav-link,
.glass-nav .navbar-logo {
  color: #fff;
  /* ফিক্স করলাম  */
}

/* Dark Theme */

.glass-nav.dark-theme {
  background: rgba(15, 15, 15, 0.28) !important;

  backdrop-filter: blur(18px);
}

.glass-nav.dark-theme .nav-link {
  color: #fff !important;
}

.glass-nav.dark-theme .navbar-logo {
  color: #fff !important;
}

.glass-nav.dark-theme .navbar-toggler {
  border-color: #fff;
}

/* Light Theme */

.glass-nav.light-theme {
  background: rgba(255, 255, 255, 0.88) !important;

  backdrop-filter: blur(18px);
}

.glass-nav.light-theme .nav-link {
  color: #222 !important;
}

.glass-nav.light-theme .navbar-logo {
  color: #d4af37 !important;
}

.glass-nav.light-theme .navbar-toggler {
  border-color: #333;
}

/* Hover */

.glass-nav .nav-link:hover {
  color: #e9c46a !important;
}

/* .navbar-brand span {
    color: #E9C46A; 
} */

.nav-link:hover {
  color: #e9c46a !important;
}

/* NAVBAR BRAND/LOGO */

.navbar-logo {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 22px; /* Size for navbar*/
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;

  /* আপনার পছন্দের মূল সোনালী বা যেকোনো রং */
  color: #d4af37;

  /* ছোট সাইজের জন্য মানানসই হালকা ৩ডি শ্যাডো */
  text-shadow:
    0 1px 0 #b5942b,
    0 2px 0 #9c7f23,
    0 3px 1px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 3px 5px rgba(0, 0, 0, 0.2);

  transition: all 0.3s ease;
}

/* মাউস নিলে হালকা গ্লো করার জন্য (Optional) */
.navbar-logo:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* " Golden light sweep" বা "shine animation" for logo শুধুমাত্র Index.html file এর জন্য*/

.navbar-logo {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

/* Golden Light Sweep */
.navbar-logo::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -140%;
  width: 70px;
  height: 220%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 120, 0.95),
    rgba(255, 255, 255, 0.8),
    rgba(255, 215, 120, 0.95),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
}

/* Trigger animation */
.navbar-logo.animate-shine::after {
  animation: goldenSweep 2.2s ease forwards;
}

/* Cinematic glow */
.navbar-logo.animate-shine {
  animation: goldenGlow 2.2s ease;
}

/* Sweep motion */
@keyframes goldenSweep {
  0% {
    left: -140%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    left: 160%;
    opacity: 0;
  }
}

/* Warm cinematic glow */
@keyframes goldenGlow {
  0% {
    text-shadow: none;
  }

  40% {
    text-shadow:
      0 0 8px rgba(255, 215, 120, 0.6),
      0 0 18px rgba(255, 200, 100, 0.5),
      0 0 28px rgba(255, 180, 80, 0.4);
  }

  100% {
    text-shadow: none;
  }
}

/* CSS (Parallax + Smooth Effects) */

.hero-Section {
  height: 100vh;
  /* Parallax */
  background: url(img/animals/IMG_3594_result_result.webp) center/cover
    no-repeat fixed;
  position: relative;
  overflow: hidden;
}
.hero-Section .overlay {
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0, 0.55);
  z-index: 1;
}
.hero-Section .container {
  z-index: 2;
}
.hero-Section h1 {
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn {
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-3px);
}
.img-fluid {
  transition: transform 0.3s;
  border-radius: 8px;
}
.img-fluid:hover {
  transform: scale(1.03);
  overflow: hidden;
}

.row img {
  margin-bottom: 10px;
}

/* Pinterest type Gallery */

.gallery-container {
  column-count: 3;
  column-gap: 12px;
  padding: 10px;
}

/* each item */

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

/* image */

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: 0.3s ease;
}
/* hover */

.gallery-item img:hover {
  transform: 1.05;
}

.footer-brand span {
  color: #e9c46a;
}
.text-white span {
  color: #e9c46a;
}

/* Modal image container */

#imageModal .modal-body {
  position: relative;
}

/* Watermark */

#imageModal .modal-body::after {
  /* content: url("img/Signature logo_Rockybilly_colur.webp");  */
  /* Brand name / logo here */
  content: 'AL MARUF PHOTOGRAPHY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);

  font-size: 38px;
  font-weight: bold;
  /* color: #B3D9D9; */
  /* color: #666666; */
  color: rgba(255, 255, 255, 0.12);

  white-space: nowrap;
  pointer-events: none;
  z-index: 10;

  text-transform: uppercase;
  letter-spacing: 10px;
  width: 100%;
  text-align: center;
}
/* MOBILE RESPONSIVE WATERMARK */

/* Tablet */ /* ফিক্স করলাম  */
@media (max-width: 768px) {
  #imageModal .modal-body::after {
    font-size: 24px;
    letter-spacing: 5px;
  }
}

/* Small Mobile */ /* ফিক্স করলাম  */
@media (max-width: 576px) {
  #imageModal .modal-body::after {
    font-size: 18px;
    letter-spacing: 4px;
    opacity: 0.25;
  }
}

/* Featured Shots Section apply watermark */

#Featured-Shots .gallery-item {
  position: relative;
  overflow: hidden;
}

#Featured-Shots .gallery-item .watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  font-size: clamp(14px, 3vw, 28px);
  font-weight: bold;

  color: rgba(255, 255, 255, 0.18);

  pointer-events: none;
  user-select: none;

  white-space: nowrap;
}

/* Gallery item watermark */

.gallery-item {
  position: relative;
  overflow: hidden;
}

.watermark {
  position: absolute;
  /* bottom: 10px;
    right: 10px; */
  top: 50%;
  left: 50%;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  font-weight: 600;

  pointer-events: none;
  user-select: none;

  z-index: 5;
}
/* for Biography section image */
.no-zoom:hover {
  transform: none !important;
  transition: none !important;
}

/* for Blog section image */

.card-image {
  position: relative;
  overflow: hidden;
}

/* .card-image .watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  font-size: clamp(12px, 2vw, 22px);

  font-weight: bold;

  color: rgba(255, 255, 255, 0.18);

  z-index: 10;

  pointer-events: none;

  white-space: nowrap;
} */

.card-text span {
  color: #e9c46a;
}

/* Article page image watermark */

.article-image {
  position: relative;
  overflow: hidden;
}

/* .article-image .watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  font-size: clamp(12px, 2vw, 22px);

  font-weight: bold;

  color: rgba(255, 255, 255, 0.18);

  z-index: 10;

  pointer-events: none;

  white-space: nowrap;
} */

.thumb-watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  font-size: clamp(16px, 2.5vw, 34px);

  font-weight: bold;

  color: rgba(255, 255, 255, 0.18);

  letter-spacing: 4px;

  z-index: 10;

  pointer-events: none;

  white-space: nowrap;

  user-select: none;
}
.hero-watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-25deg);

  font-size: clamp(28px, 5vw, 90px);

  font-weight: 700;

  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 8px;

  z-index: 10;
  white-space: nowrap;

  pointer-events: none;
  user-select: none;
}

/*  for Category Filter Button */
.hidden {
  display: none !important;
}

/* hover করলে image modal previous button & Clouse button disappear হচ্ছে।
এটা classic z-index overlap issue, fix now */

#prevBtn {
  z-index: 99999;
}
.btn-close {
  z-index: 99999;
}

/* WATERMARK */

.watermark-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.watermark-wrapper img {
  width: 100%;
  display: block;
}

/* .watermark {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-20deg);

  color: rgba(255, 255, 255, 0.25);

  font-size: 22px;
  font-weight: 700;


  text-transform: uppercase;

  pointer-events: none;

  white-space: nowrap;

  letter-spacing: 3px;
} */

/* ==========================
   Global Image Watermark
========================== */

.card-image,
.article-image,
.watermark-wrapper {
  position: relative;
  overflow: hidden;
}

.watermark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  color: rgba(255, 255, 255, 0.2);

  font-size: clamp(16px, 2.5vw, 34px);

  font-weight: 700;

  text-transform: uppercase;

  pointer-events: none;

  white-space: nowrap;

  letter-spacing: 4px;

  z-index: 10;

  user-select: none;
}

.blog-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.blog-img {
  height: 400px;
  object-fit: cover;
}

.card-body h2 {
  font-weight: 700;
}

.author {
  font-size: 0.9rem;
  color: gray;
}

.no-zoom:hover {
  transform: none !important;
  transition: none !important;
}
img {
  user-select: none;

  -webkit-user-drag: none;
}

/* =========================
   Blog Dashboard Mobile Fix
========================= */

.table-responsive {
  overflow-x: auto;
}

.blog-thumb {
  width: 80px;

  height: 60px;

  object-fit: cover;

  border-radius: 8px;

  display: block;
}

.table td,
.table th {
  vertical-align: middle;
}

.blog-title {
  font-weight: 600;

  line-height: 1.3;
}

@media (max-width: 576px) {
  .table {
    min-width: 850px;
  }

  .blog-thumb {
    width: 70px;

    height: 55px;
  }

  .table td,
  .table th {
    white-space: nowrap;
  }

  .table td:nth-child(2) {
    white-space: normal;

    max-width: 180px;
  }

  .table td:nth-child(4) {
    white-space: normal;

    max-width: 160px;
  }

  .table td:last-child {
    min-width: 110px;
  }
}

/* ==========================
   CMS ADMIN HOME STYLE
========================== */

.cms-box {
  background: #181818;

  border-radius: 22px;

  padding: 25px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.cms-box .card {
  border: none;

  border-radius: 8px;
}

.cms-box h2 {
  color: white;
}

.cms-box .btn {
  font-weight: 600;
}

.table {
  margin-bottom: 0;
}

.table thead th {
  color: #e9c46a;

  font-size: 13px;
}

.table td {
  vertical-align: middle;
}

@media (max-width: 576px) {
  .cms-box {
    padding: 15px;
  }

  .cms-box h2 {
    font-size: 22px;
  }
}

/* ===================================================
   404 PAGE
=================================================== */

.error-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)),
    url('img/404-bg.webp') center center/cover no-repeat fixed;

  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: 80px 15px;
}

.error-card {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 25px;

  padding: 60px 45px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

  animation: fadeUp 1s ease;
}

.error-icon {
  font-size: 65px;

  margin-bottom: 15px;

  animation: floatBird 4s ease-in-out infinite;
}

.error-code {
  font-size: 120px;

  font-weight: 800;

  color: #ffc107;

  line-height: 1;

  margin-bottom: 10px;

  text-shadow: 0 0 20px rgba(255, 193, 7, 0.35);
}

.error-title {
  color: #ffffff;

  font-weight: 700;

  margin-bottom: 20px;
}

.error-text {
  color: #d7d7d7;

  font-size: 20px;

  margin-bottom: 15px;
}

.error-quote {
  color: #bfbfbf;

  font-style: italic;

  line-height: 1.8;
}

.error-card .btn {
  padding: 14px 45px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;
}

.error-card .btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(25, 135, 84, 0.45);
}

@keyframes floatBird {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {
  .error-card {
    padding: 40px 25px;
  }

  .error-code {
    font-size: 85px;
  }

  .error-title {
    font-size: 28px;
  }

  .error-text {
    font-size: 18px;
  }

  .error-icon {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .error-card {
    padding: 35px 20px;
  }

  .error-code {
    font-size: 72px;
  }

  .error-title {
    font-size: 24px;
  }

  .error-text {
    font-size: 16px;
  }

  .error-card .btn {
    width: 100%;
  }
}

/* =====================================
   PREMIUM SCROLL REVEAL
===================================== */

.reveal {
  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;

  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

/* Different animation styles */

.reveal-left {
  opacity: 0;

  transform: translateX(-60px);

  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;

  transform: translateX(0);
}

.reveal-right {
  opacity: 0;

  transform: translateX(60px);

  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;

  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;

  transform: scale(0.92);

  transition: all 0.8s ease;
}

.reveal-zoom.active {
  opacity: 1;

  transform: scale(1);
}

/* Accessibility - Skip Link */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus {
  left: 20px;
}

/* For 404 page */

.error-page {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('img/animals/IMG_3594_result_result.webp') center center/cover no-repeat
      fixed;

  min-height: 100vh;
}

/* ======================================
   HOME BIOGRAPHY (Premium Version)
====================================== */

#Biography .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

#Biography img {
  transition: transform 0.6s ease;
}

#Biography img:hover {
  transform: scale(1.02);
}

#Biography h2 {
  letter-spacing: 1px;
}

#Biography h3 {
  font-weight: 700;
}

#Biography p {
  line-height: 1.9;
  font-size: 1rem;
}

#Biography blockquote {
  font-size: 1.3rem;
  font-weight: 500;
  color: #444;
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

#Biography .btn {
  border-radius: 30px;
  transition: all 0.3s ease;
}

#Biography .btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  #Biography img {
    height: auto;
  }

  #Biography h2 {
    font-size: 2rem;
  }

  #Biography blockquote {
    font-size: 1.1rem;
  }
}

/* ===========================================
ABOUT HERO
=========================================== */

.about-hero {
  padding-top: 120px;

  padding-bottom: 80px;
}

.about-portrait {
  max-width: 420px;

  width: 100%;

  transition: 0.4s;
}

.about-portrait:hover {
  transform: scale(1.02);
}

.about-counter {
  background: #fff;

  padding: 18px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  text-align: center;

  height: 100%;
}

.about-counter h3 {
  font-weight: 700;

  color: #198754;

  margin-bottom: 5px;
}

.about-counter small {
  color: #666;
}
/*==================================
Journey Timeline
===================================*/

.journey-section {
  background: #f8f9fa;
}

.timeline {
  position: relative;

  max-width: 1100px;

  margin: auto;
}

.timeline::after {
  content: '';

  position: absolute;

  width: 4px;

  background: #198754;

  top: 0;

  bottom: 0;

  left: 50%;

  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;

  position: relative;

  width: 50%;
}

.timeline-item::after {
  content: '';

  position: absolute;

  width: 22px;

  height: 22px;

  background: #198754;

  border: 4px solid #fff;

  top: 20px;

  border-radius: 50%;

  z-index: 2;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.left::after {
  right: -11px;
}

.timeline-item.right::after {
  left: -11px;
}

.timeline-content {
  background: #fff;

  padding: 25px;

  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.timeline-year {
  display: inline-block;

  margin-bottom: 10px;

  font-size: 0.85rem;

  font-weight: 700;

  color: #198754;

  text-transform: uppercase;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

    padding-left: 60px;

    padding-right: 20px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 9px;
  }
}
/*====================================
ABOUT INTRO
=====================================*/

.about-intro {
  background: #fff;
}

.about-facts {
  background: #f8f9fa;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  height: 100%;
}

.about-facts h3 {
  font-weight: 700;

  margin-bottom: 30px;
}

.about-facts li {
  font-size: 0.96rem;

  line-height: 1.6;

  color: #444;
}

.section-subtitle {
  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #198754;

  display: block;

  margin-bottom: 15px;
}

.about-intro p {
  font-size: 1.05rem;

  line-height: 1.9;

  color: #555;

  margin-bottom: 25px;
}

/*==================================
Beyond The Lens
===================================*/

.beyond-lens {
  background: #ffffff;
}

.beyond-lens img {
  transition: 0.45s ease;
}

.beyond-lens img:hover {
  transform: scale(1.02);
}

.beyond-lens p {
  font-size: 1.06rem;

  line-height: 1.95;

  color: #555;

  margin-bottom: 22px;
}

.beyond-lens h2 {
  color: #222;

  font-weight: 700;
}
/*==================================
MY CAMERA JOURNEY
===================================*/

.camera-journey {
  background: #f8f9fa;
}

.camera-card {
  background: #fff;

  border-radius: 18px;

  padding: 30px 20px;

  text-align: center;

  height: 100%;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.35s ease;

  border-top: 4px solid transparent;
}

.camera-card:hover {
  transform: translateY(-8px);

  border-top: 4px solid #198754;
}

.camera-year {
  display: inline-block;

  padding: 6px 14px;

  background: #198754;

  color: #fff;

  font-size: 0.8rem;

  font-weight: 600;

  border-radius: 50px;

  margin-bottom: 18px;
}

.camera-card h5 {
  font-weight: 700;

  margin-bottom: 10px;

  color: #222;
}

.camera-card p {
  margin: 0;

  font-size: 0.95rem;

  color: #666;
}
/*==================================
ARTIST STATEMENT
===================================*/

.artist-statement {
  background: #111;

  color: #fff;
}

.statement-box {
  max-width: 900px;

  margin: auto;
}

.statement-box h2 {
  color: #fff;

  margin-bottom: 30px;
}

.statement-box p {
  font-size: 1.08rem;

  line-height: 2;

  color: #d8d8d8;

  margin-bottom: 24px;

  text-align: justify;
}

.statement-box blockquote {
  margin-top: 50px;

  padding: 35px;

  border-left: 5px solid #198754;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 10px;

  font-size: 1.35rem;

  font-style: italic;

  font-family: 'Cinzel', serif;

  color: #fff;

  line-height: 1.8;
}
/*==================================
MY ETHICS
===================================*/

.ethics-section {
  background: #f8f9fa;
}

.ethics-card {
  background: #fff;

  padding: 35px;

  border-radius: 18px;

  height: 100%;

  text-align: center;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

  transition: 0.35s ease;
}

.ethics-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.ethics-icon {
  font-size: 2.6rem;

  margin-bottom: 20px;
}

.ethics-card h4 {
  font-size: 1.3rem;

  font-weight: 700;

  margin-bottom: 18px;

  color: #222;
}

.ethics-card p {
  font-size: 1rem;

  line-height: 1.8;

  color: #666;

  margin-bottom: 0;
}
/*==================================
RECOGNITION & MILESTONES
===================================*/

.milestones-section {
  background: #111;
}

.milestone-card {
  background: #1b1b1b;

  padding: 40px 30px;

  border-radius: 18px;

  text-align: center;

  height: 100%;

  transition: 0.35s ease;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.milestone-card:hover {
  transform: translateY(-8px);

  border-color: #198754;
}

.milestone-card h2 {
  font-size: 3rem;

  font-weight: 700;

  color: #198754;

  margin-bottom: 15px;
}

.milestone-card h5 {
  color: #fff;

  font-weight: 600;

  margin-bottom: 15px;
}

.milestone-card p {
  color: #bfbfbf;

  line-height: 1.8;

  margin-bottom: 0;
}
.milestone-subtitle {
  color: #cfcfcf;

  font-size: 1.08rem;

  line-height: 1.8;

  max-width: 700px;

  margin: auto;
}
/*==================================
FINAL CLOSING
===================================*/

.about-closing {
  background: #000;
  color: #fff;

  padding: 80px 0 25px;
}

.about-closing .closing-text {
  font-size: 1.08rem;
  line-height: 2;
  color: #d5d5d5;

  max-width: 850px;
  margin: 0 auto 22px;
}

.about-closing .closing-quote {
  margin: 50px auto;

  padding: 30px;

  max-width: 850px;

  background: rgba(255, 255, 255, 0.05);

  border-left: 4px solid #198754;

  border-radius: 10px;

  font-family: 'Cinzel', serif;

  font-size: 1.45rem;

  font-style: italic;

  color: #fff;
}

.signature {
  margin-top: 35px;
}

.signature h4 {
  font-family: 'Cinzel', serif;

  margin-bottom: 8px;
}

.signature p {
  color: #bfbfbf;

  margin-bottom: 0;
}

.closing-buttons {
  margin-top: 45px;

  margin-bottom: 35px;
}

.about-closing .btn {
  padding: 14px 34px;

  border-radius: 50px;
}

.footer-divider {
  margin: 0;

  border-color: rgba(255, 255, 255, 0.18);
}
/*==================================
PREMIUM FOOTER DIVIDER
===================================*/

.premium-divider {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  width: 100%;

  padding: 20px 0;

  background: #000;
}

.premium-divider span {
  flex: 1;

  max-width: 260px;

  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.45),
    rgba(255, 215, 0, 0.9),
    rgba(212, 175, 55, 0.45),
    transparent
  );
}

.premium-divider img {
  width: 90px;

  opacity: 1;

  filter: brightness(1.15);

  transition: 0.4s ease;
}

.premium-divider img:hover {
  transform: scale(1.1);

  opacity: 1;
}
/* =========================
   Footer Logo
========================= */

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  width: 220px;
  max-width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.03);
}

/* Tablet */

@media (max-width: 992px) {
  .footer-logo img {
    width: 220px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .footer-logo img {
    width: 190px;
  }
}

/* Gallery Search box */

.gallery-search {
  position: relative;

  margin-bottom: 20px;
}

.gallery-search input {
  background: #111;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 40px;

  height: 52px;

  padding-left: 20px;

  padding-right: 50px;

  color: #fff;
}

.gallery-search input::placeholder {
  color: #999;
}

.gallery-search input:focus {
  border-color: #d4af37;

  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);

  background: #111;

  color: #fff;
}

.gallery-search i {
  position: absolute;

  right: 18px;

  top: 50%;

  transform: translateY(-50%);

  color: #d4af37;
}
