* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--main-font);
  scroll-behavior: smooth;
}

:root {
  --main-font: "Roboto", serif;
  --btn-color: #007bff;
  --btn-hover: #0056b3;
  --heading-font: "Bruno Ace", serif;
  --background-color: black;
  --heading-color: #b3b077ff;
  --main-heading-font: "Brygada 1918", serif;
}
html,
body {
  overflow-x: hidden;
}

/* Header navrbar */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  padding: 2px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Navbar when scrolled */
.navbar-scrolled {
  background: black;
  box-shadow: 0px -9px 1px 10px rgb(114, 113, 113);
}
.navbar-custom-page {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: black;
  padding: 2px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px -9px 1px 10px rgb(114, 113, 113);
}
/* Logo */
.logo {
  margin-left: 30px;
  height: 65px;
  width: 80px;
  filter: brightness(0) invert(1);
}
.logo-film {
  margin-left: 30px;
  height: 65px;
  width: 80px;
}

/* Navigation links */
.nav-container {
  display: flex;
  gap: 30px;
}

.nav-container a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.nav-container a:hover {
  color: var(--btn-hover);
}
.mobile-social {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 20px;
  padding-bottom: 2.5rem;
}
/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.hero-section {
  background-image: url(../images/banners/hero_background.webp);
  position: relative;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  height: 101vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container-fluid {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}

.hero-section h1 {
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.hero-section p {
  font-size: 1.8rem;
  color: #ddd;
}

.hero-section .btn-primary {
  background-color: var(--btn-color);
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
}

.hero-section .btn-primary:hover {
  background-color: var(--btn-hover);
  transform: scale(1.05);
}
/* Keyframe for animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hide elements */
.animated h1,
.animated p,
.animated a {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
}

/* Staggered fade-in effect */
.animated h1 {
  animation: fadeInUp 1s ease-out forwards 0.5s;
}

.animated p {
  animation: fadeInUp 1s ease-out forwards 1s;
}

.animated a {
  animation: fadeInUp 1s ease-out forwards 1.5s;
}

.animated {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
}

.animated {
  padding-top: 5rem;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  animation: fadeInUp 3s ease-out forwards;
}

/* about section */
.about-heading-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px auto;
}

.about_heading {
  color: var(--heading-color);
  font-size: 4rem;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--main-heading-font);
}

#about {
  background: var(--background-color);
  padding: 80px 0;
}

.about-us-section {
  padding: 40px 20px;
  background-color: var(--background-color);
  border-radius: 10px;
}

.about-us-section p {
  line-height: 1.6;
}

.founder_link {
  color: white;
  text-decoration: underline;
}

/* From Uiverse.io by boryanakrasteva */
.btn_know {
  height: 40px;
  display: inline-block;
  align-items: center;
  justify-content: space-evenly;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  color: white;
  background-color: transparent;
  transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.9;
}

.btn_know::after {
  content: "";
  border-bottom: 3px double var(--btn-color);
  width: 0;
  height: 100%;
  position: absolute;
  margin-top: -5px;
  top: 0;
  left: 5px;
  visibility: hidden;
  opacity: 1;
  transition: 0.2s linear;
}

.btn_know .icon_know {
  transform: translateX(0%);
  transition: 0.2s linear;
  animation: attention 1.2s linear infinite;
}

.btn_know:hover::after {
  visibility: visible;
  opacity: 0.9;
  width: 90%;
}

.btn_know:hover {
  letter-spacing: 2px;
  opacity: 1;
}

.btn_know:hover > .icon_know {
  transform: translateX(30%);
  animation: none;
}

@keyframes attention {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(30%);
  }
}

.about_text {
  line-height: 1.8;
  font-size: 1rem;
  color: #e0e0e0;
}
/* Number Counter */
.photography-stats-section {
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  margin: 2rem 0;
}

.photography-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.photography-stat-card {
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 15px;
  background: rgba(179, 176, 119, 0.05);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(179, 176, 119, 0.15);
}

.photography-stat-card:hover {
  transform: translateY(-10px);
  background: rgba(179, 176, 119, 0.1);
  box-shadow: 0 15px 30px rgba(179, 176, 119, 0.2);
}

.photography-counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--heading-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
  letter-spacing: -2px;
}

.photography-stat-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.photography-stat-icon {
  font-size: 2rem;
  color: var(--heading-color);
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.photography-stat-card:hover .photography-stat-icon {
  transform: scale(1.2);
  color: #fff;
}

/* Section Header Styles */
.photography-section-header {
  margin-bottom: 4rem;
}

.photography-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, var(--heading-color), #c5c28a);
  color: var(--background-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(179, 176, 119, 0.3);
  animation: photography-glow 2s ease-in-out infinite alternate;
}

@keyframes photography-glow {
  from {
    box-shadow: 0 4px 15px rgba(179, 176, 119, 0.3);
  }
  to {
    box-shadow: 0 6px 25px rgba(179, 176, 119, 0.5);
  }
}

.photography-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--main-heading-font);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.photography-title-highlight {
  background: linear-gradient(45deg, var(--heading-color), #c5c28a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.photography-section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--main-font);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Skills section */
#expertise {
  background: var(--background-color);
  padding: 80px 0;
}

.masonry {
  column-count: 3;
  column-gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.masonry-item {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.masonry-item:nth-child(4n + 1) {
  transform: translateX(-100px);
}
.masonry-item:nth-child(4n + 2) {
  transform: translateX(100px);
}
.masonry-item:nth-child(4n + 3) {
  transform: translateY(-100px);
}
.masonry-item:nth-child(4n + 4) {
  transform: translateY(100px);
}

.masonry-item.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Circular Skills Meters CSS */

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  padding: 20px 15px;
  border-radius: 15px;
  border: 1px solid #333;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.skill:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 255, 255, 0.1);
}

.skill.visible {
  opacity: 1;
  transform: translateY(0);
}

.skill-title {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  line-height: 1.3;
}

.skill-title i {
  margin-left: 8px;
  color: #fff;
  font-size: 16px;
  opacity: 0.9;
}

.circular-progress {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.circular-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 8;
}

.progress-ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 0 440;
  transition: stroke-dasharray 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  font-family: var(--heading-font);
}

.progress-label {
  font-size: 12px;
  color: #ccc;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* SVG Gradient Definitions */
#gradient1 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient1 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient1 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient2 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient2 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient2 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient3 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient3 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient3 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient4 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient4 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient4 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient5 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient5 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient5 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient6 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient6 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient6 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient7 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient7 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient7 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}

#gradient8 stop:nth-child(1) {
  stop-color: #ffffff;
  stop-opacity: 1;
}
#gradient8 stop:nth-child(2) {
  stop-color: #f0f0f0;
  stop-opacity: 1;
}
#gradient8 stop:nth-child(3) {
  stop-color: #e0e0e0;
  stop-opacity: 1;
}
/* Gradient assignments for each skill */
.skill:nth-child(1) .progress-ring-fill {
  stroke: url(#gradient1);
}
.skill:nth-child(2) .progress-ring-fill {
  stroke: url(#gradient2);
}
.skill:nth-child(3) .progress-ring-fill {
  stroke: url(#gradient3);
}
.skill:nth-child(4) .progress-ring-fill {
  stroke: url(#gradient4);
}
.skill:nth-child(5) .progress-ring-fill {
  stroke: url(#gradient5);
}
.skill:nth-child(6) .progress-ring-fill {
  stroke: url(#gradient6);
}
.skill:nth-child(7) .progress-ring-fill {
  stroke: url(#gradient7);
}
.skill:nth-child(8) .progress-ring-fill {
  stroke: url(#gradient8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .skills-container {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px;
    padding: 10px;
  }

  .skill {
    padding: 15px 10px;
  }

  .circular-progress {
    width: 80px;
    height: 80px;
  }

  .progress-text {
    font-size: 16px;
  }

  .skill-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .skill-title i {
    font-size: 14px;
    margin-left: 6px;
  }
}

@media (max-width: 480px) {
  .skills-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    padding: 8px;
  }

  .skill {
    padding: 15px 8px;
  }

  .circular-progress {
    width: 75px;
    height: 75px;
  }

  .progress-text {
    font-size: 15px;
  }

  .skill-title {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .progress-label {
    font-size: 9px;
    margin-top: 8px;
  }
}
/* portfolio section */
.head {
  font-size: 4rem;
  letter-spacing: 1px;
  color: var(--heading-color);
  font-family: var(--main-heading-font) !important;
}
.heading {
  font-size: 4rem;
  letter-spacing: 1px;
  color: black;
  font-family: var(--main-heading-font) !important;
}
#portfolio {
  background-color: var(--background-color);
  padding: 2rem 0rem 5rem;
}
.portfolio-section {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  height: 70vh;
}

.sidebar {
  position: sticky;
  top: 16%;
  width: 180px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  color: #fff;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.sidebar li.active {
  color: #fff;
  font-weight: 600;
  background-color: rgba(74, 144, 226, 0.15);
  border-left: 4px solid #4a90e2;
  padding-left: 12px;
  border-radius: 4px;
  box-shadow: inset 0 0 8px rgba(74, 144, 226, 0.3);
}

.image-container {
  flex: 1;
  overflow-y: auto;
  height: 100%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
}

.image-container::-webkit-scrollbar {
  display: none;
}
.portfolio-item {
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
}

.portfolio-image {
  width: 100%;
  max-width: 800px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 5px auto 20px auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.portfolio-image.loaded {
  opacity: 1;
  transform: translateY(0);
}
.view-more-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #0a0f1a, #1b2a45);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.1),
    2px 2px 5px rgba(0, 0, 0, 0.3);
}

.view-more-btn:hover {
  background: linear-gradient(145deg, #172033, #24395a);
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.btn_know {
  height: 40px;
  display: inline-block;
  align-items: center;
  justify-content: space-evenly;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  color: white;
  background-color: transparent;
  transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.9;
}

.btn_know::after {
  content: "";
  border-bottom: 3px double var(--btn-color);
  width: 0;
  height: 100%;
  position: absolute;
  margin-top: -5px;
  top: 0;
  left: 5px;
  visibility: hidden;
  opacity: 1;
  transition: 0.2s linear;
}

.btn_know .icon_know {
  transform: translateX(0%);
  transition: 0.2s linear;
  animation: attention 1.2s linear infinite;
}

.btn_know:hover::after {
  visibility: visible;
  opacity: 0.9;
  width: 90%;
}

.btn_know:hover {
  letter-spacing: 2px;
  opacity: 1;
}

.btn_know:hover > .icon_know {
  transform: translateX(30%);
  animation: none;
}

@keyframes attention {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(30%);
  }
}

.lazy {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.lazy.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* contact-section */
#contact {
  background-color: var(--background-color);
  padding: 5rem 0rem 5rem 0rem;
}

#contact_box {
  background-color: var(--background-color);
  color: white;
  padding: 50px;
  border-radius: 10px;
  border: 1px solid white;
}

#contact_box h3 {
  font-size: 5rem;
  color: var(--heading-color);
  font-family: var(--main-heading-font);
}

#contact_box p {
  font-size: 1.7rem;
}

/* contact button */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 25px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 0 2px white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: white;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: black;
  border-radius: 12px;
}
.animated-button:hover .fa-envelope {
  display: none;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px white;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* process section */

.process-section {
  padding: 5rem 0rem 5rem 0rem;
  text-align: center;
}

.animation-container2 {
  max-width: 500px;
  margin: auto;
}

.scroll-effect {
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-effect.visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  min-width: 250px;
  max-width: 300px;
}

.step:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.process-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.fade-in-process {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* services */
#services {
  background-color: var(--background-color);
  padding: 5rem 0rem 10rem 0rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.services_text h3 {
  font-size: 5rem;
  color: #bcba8d;
}
.services_text p {
  font-size: 2rem;
}
.photoshoot_animaton {
  width: 700px;
  height: auto;
  margin: -70px;
}
.service-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.service-box:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0px 6px 25px rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon {
  width: 40px;
  height: 40px;
  filter: brightness(1.8);
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fade-in {
  opacity: 0;
  transform: translateX(-50px);
  visibility: hidden;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

/* review section*/
#review h3 {
  font-size: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.word {
  position: relative;
  display: inline-block;
  margin: 5px;
  color: var(--btn-hover);
}
.word svg {
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 140%;
  height: 20px;
  stroke: var(--btn-hover);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  overflow: visible;
}
@keyframes highlightAnimation {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.modal-backdrop {
  z-index: 1055 !important;
}

.modal {
  z-index: 1060 !important;
}

.modal-content {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.modal.fade .modal-dialog {
  transform: translateY(-10%);
  transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}
.modal-header .btn-close {
  margin: 0;
}
.modal-header-wrapper {
  display: flex;
  justify-content: center;
}
.service-modal-list {
  text-align: start;
}
.modal-icon {
  width: 30px;
  height: auto;
  color: var(--btn-color);
  font-size: 1.9rem;
  margin-right: 5px;
}
.question-animation {
  width: 60px;
  height: auto;
}
.service-description {
  color: #222;
  line-height: 1.8;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
}
.svg-img {
  width: 60%;
  height: auto;
}

.service-description p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 15px;
}

.service-included,
.service-why-choose {
  font-size: 1.6rem !important;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--btn-color);
  align-items: center;
  gap: 10px;
}

/* list style */
.service-modal-list {
  text-align: start;
  padding-left: 20px;
  margin-top: 10px;
}

.service-modal-list li {
  margin: 10px 0;
  font-size: 1rem;
  color: #555;
  position: relative;
  padding-left: 25px;
  list-style: none;
}
/* tolltip */
.price-tolltip {
  align-items: flex-end;
  display: flow-root;
  color: var(--btn-hover);
}

/* Custom Bullet Points */
.service-modal-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: var(--btn-color);
  font-weight: bold;
}
/* trust section  */
.trust-section {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
/* Shiny reflection animation */
.trust-section::before {
  content: "";
  position: absolute;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewY(-30deg);
  transition: top 1.2s ease-in-out;
  opacity: 3;
}

.trust-section.show::before {
  top: 150%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.icon {
  font-size: 18px;
  color: var(--btn-hover);
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #003f80);
  transform: scale(1.05);
}

/* Close Button */
.btn-secondary {
  background: #f8f9fa;
  color: #222;
  border: none;
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
  background: #e2e6ea;
  color: #000;
}

/* cards */
.cards_container {
  max-width: 1400px;
  margin: auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.card-carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease-in-out;
  cursor: grab;
}

.review-card {
  flex: 0 0 calc(33.33% - 16px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.profile-icon {
  width: 60px;
  height: 60px;
  background-color: #2d662e;
  color: white;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.google-badge {
  width: 30px;
  position: absolute;
  bottom: -15px;
  background: white;
  border-radius: 15px;
  padding: 2px;
}

.reviewer-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
}

.review-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.star-rating {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.carousel-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: none;
}

.carousel-controls button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* FAQ-section */
#FAQ {
  padding: 5rem 0rem 5rem 0rem;
}
.accordion-button::after {
  display: none; /* Hide default Bootstrap icon */
}
.camera-icon {
  width: 30px;
  height: 30px;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.accordion-button[aria-expanded="true"] .camera-icon {
  transform: rotate(180deg);
}
.additional_text {
  font-size: 2rem;
}
/* Gallery Section */
#gallery-section {
  background-color: var(--background-color);
  padding: 6rem 2rem;
  color: white;
}

.category-section-title {
  font-size: 2.3rem;
  text-transform: uppercase !important;
  display: flex;
  justify-content: center;
}
#category-name {
  font-weight: bold;
  font-size: 6rem;
  font-family: var(--main-heading-font);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
}

/* toast */
.toast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hide {
  opacity: 0;
  transform: translateY(20px);
}

.toast-container {
  max-width: 400px;
  width: 100%;
}

.button-container {
  margin-top: 10px;
  text-align: center;
}

#dontShowAgain {
  background-color: #dc3545;
  border: none;
  color: white;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#dontShowAgain:hover {
  background-color: #b02a37;
}

/* Toast Header Styles */
.toast-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
}

.toast-header .me-auto {
  flex-grow: 1;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
}

.toast-header small {
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-left: 10px;
  white-space: nowrap;
}

/* Masonry Gallery  */

.gallery-container {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.gallery-image {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  display: block;
  background: #f8f9fa;
}

.gallery-image.loaded {
  opacity: 1;
}

.gallery-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive columns */
@media (max-width: 1200px) {
  .gallery-container {
    column-count: 3;
    column-gap: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    column-count: 2;
    column-gap: 15px;
    padding: 0 10px;
  }

  .gallery-image {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    column-count: 2;
    column-gap: 12px;
    padding: 0 8px;
  }

  .gallery-image {
    margin-bottom: 12px;
  }
}

/* Loading state */
.gallery-image.loading {
  opacity: 0.3;
  background: #e9ecef;
}

/* Button Styling */
.button-container {
  margin-top: 20px;
}

.btn-next-category {
  background-color: var(--btn-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-next-category:hover {
  background-color: var(--btn-hover);
  transform: scale(1.05);
}
/* Footer Styles */
.footer {
  background: #111;
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

/* Brand Section */
.footer-brand {
  text-align: center;
}

.footer-logo {
  max-height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-brand p {
  margin: 8px 0;
  opacity: 0.9;
}

.footer-brand p:first-of-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--btn-color);
}

.footer-brand p:last-of-type {
  font-style: italic;
  color: #bcba8d;
}

/* Links Section */
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-family: var(--heading-font);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--btn-color);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 12px 0;
}

.footer-links ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--btn-color);
  transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--btn-color);
  padding-left: 20px;
}

.footer-links ul li a:hover::before {
  transform: translateX(3px);
}

/* Contact Section */
.footer-contact p {
  margin: 12px 0;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--btn-color);
  width: 18px;
}

.footer-contact p:nth-child(2)::before {
  content: "\f3c5"; /* map-marker-alt */
}

.footer-contact p:nth-child(3)::before {
  content: "\f57d"; /* map */
}

.footer-contact p:nth-child(4)::before {
  content: "\f095"; /* phone */
}

.footer-contact p:nth-child(5)::before {
  content: "\f0e0"; /* envelope */
}

.footer-contact a {
  color: var(--btn-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--btn-hover);
  text-decoration: underline;
}

/* Social Media Section */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.desktop-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-footer-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.desktop-footer-icon:nth-child(1):hover {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
}

.desktop-footer-icon:nth-child(2):hover {
  background: #1877f2;
  color: white;
}

.desktop-footer-icon:nth-child(3):hover {
  background: #000000;
  color: white;
}

.desktop-footer-icon:nth-child(4):hover {
  background: #ff0000;
  color: white;
}

.d-none {
  display: none;
}

.fs-3 {
  font-size: 1.5rem;
}

.fw-bold {
  font-weight: bold;
}

/* Legal Links */
.footer-legal {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 40px 0 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-link {
  color: #cccccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--btn-color);
}

.footer-legal span {
  color: #666;
  margin: 0 10px;
}

/* Bottom Section */
.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 8px 0;
  color: #cccccc;
  font-size: 0.9rem;
}

.text-light-emphasis {
  opacity: 0.8;
}

.footer-link {
  color: var(--btn-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--btn-hover);
  text-decoration: underline;
}

/* Headings */
.heading-page {
  font-size: 3.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.subheading {
  font-size: 1.3rem;
  color: #555;
}
.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}
.rounded {
  border-radius: 5px;
}
.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* contact-us */
.contact-banner {
  background-image: url(../images/banners/contact-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 65vh;
}

.contact-heading {
  font-family: var(--main-heading-font);
}
/* Form Container */

.cf-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.cf-contact-form {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cf-form-floating {
  position: relative;
  margin-bottom: 25px;
}

.cf-form-control,
.cf-form-select {
  width: 100%;
  padding: 16px 50px 16px 20px;
  font-size: 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.cf-form-control:focus,
.cf-form-select:focus {
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.cf-form-control:not(:placeholder-shown),
.cf-form-select:not(:invalid) {
  background: #fff;
}

.cf-form-floating label {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 16px;
  color: #6c757d;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.cf-form-control:focus + label,
.cf-form-control:not(:placeholder-shown) + label,
.cf-form-select:focus + label,
.cf-form-select:not(:invalid) + label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  color: #667eea;
  background: #fff;
  border-radius: 12px;
  padding: 0 5px;
  font-weight: 600;
}

.cf-input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 18px;
  transition: color 0.3s ease;
}

.cf-form-floating:focus-within .cf-input-icon {
  color: #667eea;
}

.cf-form-control[type="tel"] {
  padding-left: 20px;
}

textarea.cf-form-control {
  resize: vertical;
  min-height: 120px;
}

.cf-error-message {
  display: block;
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  margin-left: 5px;
  font-weight: 500;
}

.cf-btn-submit {
  width: 100%;
  padding: 16px;
  background: black;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.cf-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92, 92, 92, 0.3);
}

.cf-btn-submit:active {
  transform: translateY(0);
}

.cf-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: cf-spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes cf-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cf-btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cf-container {
    padding: 15px;
    min-height: 100vh;
  }

  .cf-contact-form {
    padding: 30px 25px;
    border-radius: 15px;
    margin: 10px 0;
  }

  .cf-form-control,
  .cf-form-select {
    padding: 14px 45px 14px 18px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .cf-form-floating label {
    top: 14px;
    left: 18px;
    font-size: 15px;
  }

  .cf-form-control:focus + label,
  .cf-form-control:not(:placeholder-shown) + label,
  .cf-form-select:focus + label,
  .cf-form-select:not(:invalid) + label {
    font-size: 12px;
    left: 13px;
  }

  .cf-input-icon {
    right: 12px;
    font-size: 16px;
  }

  .cf-btn-submit {
    padding: 14px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .cf-container {
    padding: 10px;
  }

  .cf-contact-form {
    padding: 25px 20px;
  }

  .cf-form-floating {
    margin-bottom: 20px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .cf-contact-form {
    color: #e9ecef;
  }

  .cf-form-control,
  .cf-form-select {
    border-color: #495057;
  }

  .cf-form-control:focus,
  .cf-form-select:focus {
    border-color: #667eea;
  }

  .cf-form-floating label {
    color: #adb5bd;
  }

  .cf-security-note {
    background: rgba(102, 126, 234, 0.15);
    color: #ced4da;
  }
}

/* Animation for form appearance */
.cf-contact-form {
  animation: cf-slideIn 0.6s ease-out;
}

@keyframes cf-slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects for form fields */
.cf-form-floating:hover .cf-form-control,
.cf-form-floating:hover .cf-form-select {
  border-color: #667eea;
}

/* Focus ring for accessibility */
.cf-form-control:focus-visible,
.cf-form-select:focus-visible,
.cf-btn-submit:focus-visible {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Loading state for button */
.cf-btn-submit.loading .cf-spinner {
  display: inline-block;
}

.cf-btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}
/* Map Section */
.map-container {
  margin-top: 50px;
  text-align: center;
}

.map-container h3 {
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  font-family: var(--main-heading-font);
}

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* WhatsApp Floating Chat */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: slideUp 1s ease-in-out;
}

.whatsapp-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.whatsapp-chat a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-container img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  animation: bounce 2s infinite ease-in-out;
}

.whatsapp-container p {
  margin: 0;
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.whatsapp-container:hover {
  background-color: #1e9f5f;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animation Keyframes */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* FILMS page */

/* Hero Section */
.hero-section-films {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.film-card {
  position: relative;
  width: 100%;
}

.film-card img {
  width: 100%;
  aspect-ratio: 4 / 5; /* Forces 4:5 ratio */
  object-fit: cover; /* Crops the image without stretching */
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.overlay .container {
  text-align: center;
  color: white;
  z-index: 2;
}

.overlay h1 {
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-family: var(--heading-font);
}

.overlay p {
  font-size: 1.5rem;
  margin-top: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Styling for the video titles on hover */
.card-title {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: var(--btn-color);
}

.bg-light {
  background-color: #974c4c;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Video Gallery */
.ratio {
  border-radius: 8px;
  overflow: hidden;
}

.video-container {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.video-container.visible {
  opacity: 1;
  transform: translateY(0);
}
.navbar-films {
  background-color: transparent !important;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.navbar-brand img {
  height: 60px;
  width: 80px;
}

/* For films navbar when scrolled */
.navbar-films.navbar-scrolled {
  background-color: white !important;
}

.navbar-films.navbar-scrolled .nav-container a {
  color: rgb(0, 0, 0) !important;
}

.navbar.scrolled .nav-link:hover {
  color: #007bff !important;
}

.film-banner {
  background-image: url(../images/banners/film-section.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 79vh;
  background-position: center;
}

.styled-button {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

/* Hover effect */
.styled-button:hover {
  background: #f0f0f0;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.animate-film-text {
  opacity: 0;
  transform: translatey(50px);
  transition: all 1s ease-in-out;
}

.animate-film-text.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Go top Button */
.go-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.go-top-btn:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--background-color);
  align-items: center;
}

.go-top-btn:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.go-top-btn::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
}

.go-top-btn:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}
/* privacy policy page*/
.legal-container {
  background-color: #ffffff;
  color: #333;
  font-family: "Roboto", sans-serif;
  padding: 20px;
  margin-top: 6rem;
}
.privacy-policy-section {
  margin-bottom: 20px;
}
.privacy-policy-section h2 {
  margin-top: 20px;
}

.privacy-policy-container a {
  color: #007bff;
  text-decoration: none;
}
.privacy-policy-container a:hover {
  text-decoration: underline;
}

/* film-section-mainPage */
#films {
  background-color: var(--background-color);
  padding-top: 40px;
  padding-bottom: 5px;
}
.film-showcase {
  text-align: center;
  color: #ffffff;
}

.film-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.film-description {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

.film-video-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.film-bg-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.film-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* Reels Section */
.film-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.film-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
  height: auto;
}

.film-card .card-body {
  padding: 1rem;
  text-align: center;
}

.film-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.film-card .card-text {
  font-size: 0.875rem;
  color: #555;
}

.film-card .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  transition: background-color 0.2s ease;
}

.film-card .btn:hover {
  background-color: #0056b3;
}
.btn_reels {
  height: 40px;
  display: inline-block;
  align-items: center;
  justify-content: space-evenly;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  color: black;
  background-color: transparent;
  transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.9;
}

.btn_reels::after {
  content: "";
  border-bottom: 3px double var(--btn-color);
  width: 0;
  height: 100%;
  position: absolute;
  margin-top: -5px;
  top: 0;
  left: 5px;
  visibility: hidden;
  opacity: 1;
  transition: 0.2s linear;
}

.btn_reels .icon_know {
  transform: translateX(0%);
  transition: 0.2s linear;
  animation: attention 1.2s linear infinite;
}

.btn_reels:hover::after {
  visibility: visible;
  opacity: 0.9;
  width: 90%;
}

.btn_reels:hover {
  letter-spacing: 2px;
  opacity: 1;
}

.btn_reels:hover > .icon_know {
  transform: translateX(30%);
  animation: none;
}

/* about us page */
#aboutus-page {
  background: var(--background-color);
}

.about-hero-section {
  padding: 80px 0;

  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(179, 176, 119, 0.1) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.about-hero-title {
  font-family: var(--main-heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: 2px;
  padding-top: 10rem;
}

.about-hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-title {
  font-family: var(--main-heading-font);
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #aaaaaa;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.story-section {
  padding: 80px 0;
}

.story-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dddddd;
}

.team-section {
  padding: 80px 0;
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.founder-img {
  width: auto;
  height: 275px;
  border-radius: 5%;
  margin-bottom: 30px;
}

.founder-name {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.founder-title {
  font-size: 1.1rem;
  color: #aaaaaa;
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: #dddddd;
}

.values-section {
  padding: 80px 0;
  background: rgba(179, 176, 119, 0.05);
}

.value-item {
  text-align: center;
  margin-bottom: 40px;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.value-description {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-button {
  color: white;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--btn-hover);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
  color: white;
}

/* PWA */
.pwa-popup {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #ffffff;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
  border-bottom: 2px solid #333;
}

.pwa-popup.show {
  top: 0;
}

.pwa-popup-content {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.pwa-popup-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}

.pwa-popup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pwa-popup-text strong {
  font-size: 16px;
  font-weight: 600;
}

.pwa-popup-text span {
  font-size: 14px;
  opacity: 0.8;
}

.pwa-popup-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pwa-popup button {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

#installPwaBtn {
  background: #007aff;
  color: #fff;
}

#installPwaBtn:hover {
  background: #0056cc;
  transform: translateY(-1px);
}

#closePwaPopup {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#closePwaPopup:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .pwa-popup-content {
    flex-wrap: wrap;
  }

  .pwa-popup-buttons {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }

  #installPwaBtn {
    flex: 1;
  }
}
