
/* GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}


* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: sans-serif;
}



.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffcc00;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, background 0.3s;
  box-shadow: 0 0 10px #ffcc00;
  z-index: 9999;
}


@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}

.custom-cursor.ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.5);
  animation: ripple-effect 0.5s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

button:hover ~ .custom-cursor,
a:hover ~ .custom-cursor,
.btn:hover ~ .custom-cursor {
  transform: translate(-50%, -50%) scale(2);
  background: #fff;
  box-shadow: 0 0 15px #ffcc00;
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  background: #fff;
  box-shadow: 0 0 20px #ffcc00;
}


.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#preloader {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

#preloader img {
  width: 120px;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px; /* optional, for rounded corners */
}


body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

/* Custom Scrollbar for WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #ffcc00;
  border-radius: 4px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffd633;
}


.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 1.8rem;
  background: #ffcc00;
  color: #000;
  padding: 10px 14px;
  border-radius: 50%;
  text-decoration: none;
  display: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

.scroll-top.show {
  display: block;
  opacity: 0.9;
}

.scroll-top:hover {
  opacity: 1;
  transform: scale(1.1);
}





img {
    max-width: 100%;
    height: auto;
}

html {
  scroll-behavior: smooth;
}


/* NAVBAR */


.logo {
    width: 130px;
}

.navbar nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #ffcc00;
}

.spark {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, #ffcc00 40%, transparent 60%);
  opacity: 0.8;
  animation: spark-fade 0.5s ease-out forwards;
}

@keyframes spark-fade {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loader img {
  width: 150px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}



/* HERO SECTION */
.hero-static {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-static {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}


.hero-overlay {
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-style: italic;
}

.hero-overlay .btn {
  padding: 12px 24px;
  background-color: white;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-overlay .btn:hover {
  background-color: #ffcc00;
  color: black;
}

.shiny-text {
  position: relative;
  display: inline-block;
  color: white;
  overflow: hidden;
  background: linear-gradient(90deg, #fff, #ffcc00, #fff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.view-work-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.view-work-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #ffcc00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}

.view-work-btn:hover {
  background-color: #e6b800;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}


.news-box {
  background: #fff3cd;
  border-left: 6px solid #ffa500;
  padding: 20px;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.youtube-section {
  margin: 60px auto;
  text-align: center;
}

.youtube-section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.youtube-wrapper {
  display: flex;
  justify-content: center;
}

.youtube-wrapper iframe {
  width: 90%;
  max-width: 720px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.responsive-iframe {
  position: relative;
  max-width: 720px;
  padding-bottom: 30%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  margin: 0 auto;
  display: block;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.polaroid-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
}

.polaroid-row img {
  width: 300px;
  border: 1px solid #eee;
  padding: 10px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.quote-banner {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  line-height: 1.4;
  color: #333;  /* adjust color as you want */
  padding: 10px 20px;
}


.behind-the-scenes {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f5f5f5; /* Optional: subtle section background */
}

.behind-the-scenes video {
  width: 80%;
  max-width: 800px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.behind-the-scenes video:hover {
  transform: scale(1.02);
}


.location-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: #444;
}

.collab-note {
  text-align: center;
  margin: 60px auto;
  font-size: 1.1rem;
  color: #222;
  font-style: italic;
}

.collab-note a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dashed #999;
  transition: color 0.3s;
}

.collab-note a:hover {
  color: #ffcc00;
}


/* BASIC STYLING */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif, Arial, sans-serif;
  background-color: #ffffff;
  color: #111;
}

img, video {
  max-width: 100%;
  display: block;
}

/* NAVBAR */
.navbar {
  background-color: black;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 130px;
}

.navbar nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #ffcc00;
}

/* BUTTON */
.btn {
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #ffcc00;
  color: black;
}

.hero {
  position: relative;
  /* Your existing hero styling */
  overflow: hidden;
}

.scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #ffcc00;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color 0.3s;
}

.scroll-down-arrow:hover {
  color: #fff;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(8px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}

/* GALLERY GRID */
.gallery-preview {
  padding: 60px 30px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  object-fit: cover;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.95);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-modal.show {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #ffcc00;
}

/* FOOTER */
footer {
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  margin-top: 60px;
  font-size: 15px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-right img {
  width: 100px;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 40px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-photo {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: left; 
  gap: 15px; 
  margin-top: 10px;
}

.social-links a img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.social-links a img:hover {
  transform: scale(1.2);
}
.client-logos {
  padding: 50px 0;
  text-align: center;
  background-color: #fdfdfd;
}

.client-logos h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 40px;
  animation: scroll-left 15s linear infinite;
}

.marquee-content img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.marquee-content img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scroll-left {
  from {
    transform: translateX(15%);
  }
  to {
    transform: translateX(-50%);
  }
}

.timeline {
  max-width: 600px;
  margin: 40px auto;
  padding-left: 30px;
  border-left: 5px solid #333;
}

.timeline div {
  margin: 20px 0;
  position: relative;
}

.timeline div::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 50%;
}

.project-table {
  margin: 50px auto;
  text-align: center;
}

.project-table h3 {
  margin-bottom: 20px;
}

.project-table table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
}

.project-table th, .project-table td {
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 1rem;
}

.project-table th {
  background-color: #222;
  color: white;
}


/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fef9f2;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.contact-subheading {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  align-items: center;    
  max-width: 600px;       
  margin: 0px auto;      
}

.contact-container textarea{
height: 150px;
resize: vertical;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.4);
  outline: none;
}

.contact-form button {
  padding: 12px;
  background-color: #ffcc00;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e6b800;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
}

.contact-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.contact-item span {
  font-size: 0.95rem;
  color: #333;
}


.thank-you-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
  background: linear-gradient(to bottom, #000, #111);
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.checkmark-circle svg {
  width: 100%;
  height: 100%;
  stroke: #ffcc00;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: drawCircle 1s ease-out forwards, drawCheck 0.5s 1s ease-out forwards;
}

.checkmark-circle .circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 1s ease-out forwards;
}

.checkmark-circle .check {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: drawCheck 0.5s 1s ease-out forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thank-you-section h1 {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.thank-you-text {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #ccc;
  text-align: center;
}

.back-home-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffcc00;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.back-home-btn:hover {
  background-color: #e6b800;
}

@media (max-width: 600px) {
  .thank-you-section h1 {
    font-size: 1.6rem;
  }

  .thank-you-text {
    font-size: 1rem;
  }

  .checkmark-circle {
    width: 80px;
    height: 80px;
  }
}


/* FOOTER */
footer {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin-top: 60px;
    font-size: 15px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
}

.footer-right img {
    width: 100px;
}


@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  h1, h2, h3 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
  }

  .recent-shoot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .view-work-button-wrapper {
    margin: 30px 0;
  }

  .view-work-btn {
    width: 80%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .contact-form {
    width: 90%;
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .thank-you-section {
    padding: 40px 20px;
  }

  .thank-you-section h1 {
    font-size: 1.6rem;
  }

  .thank-you-text {
    font-size: 1rem;
  }

  .checkmark-circle {
    width: 80px;
    height: 80px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* ===== Navbar Styling ===== */
.navbar {
  width: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.logo a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* ===== Burger ===== */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #ffcc00;
  margin: 5px;
  transition: all 0.3s ease;
}

/* ===== Mobile Styling ===== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
  }

  h1, h2, h3 {
    font-size: 1.6rem;
    margin: 10px 0;
  }

  p {
    font-size: 1rem;
    margin: 10px 0;
  }

  .navbar {
    padding: 15px 20px;
  }

  .logo a {
    font-size: 1.4rem;
  }

  .burger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 70%;
    gap: 20px;
    padding-top: 80px;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .button-wrapper,
  .view-work-button-wrapper {
    margin: 30px 0;
    text-align: center;
  }

  .view-work-btn {
    width: 80%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .recent-shoot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .recent-shoot img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .contact-form {
    width: 90%;
    padding: 20px;
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .thank-you-section {
    padding: 40px 20px;
    text-align: center;
  }

  .thank-you-section h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .thank-you-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .checkmark-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}

@media (min-width: 769px) {
  .burger {
    display: none;
  }

  .nav-links {
    position: static;
    transform: none !important;
    height: auto;
    flex-direction: row;
    gap: 30px;
    background: none;
    padding-top: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 70%;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 80px;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-static {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    padding: 20px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

.news-box h2 {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
  }

.polaroid-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .polaroid-row img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

 .quote-banner {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 30px 15px;
  }

  .location-info {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 15px;
  }

  .responsive-iframe {
  position: relative;
  max-width: 720px;
  padding-bottom: 60%;
 }


}

/* ============================= */
/* 1. Mobile (Phones) ≤768px     */
/* ============================= */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
  }

  h1, h2 {
    font-size: 1.2rem;
    margin: 10px 0;
  }

h3 {
    font-size: 0.8rem;
    margin: 10px 0;
}

  p {
    font-size: 0.95rem;
    margin: 10px 0;
  }

  .hero {
    height: 80vh;
    padding: 20px 10px;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .news-box {
    padding: 15px;
    margin: 20px auto;
  }

  .news-box h2 {
    font-size: 1.2rem;
  }

  .view-work-button-wrapper {
    margin: 20px 0;
  }

  .view-work-btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .youtube-section {
    margin: 30px auto;
  }

  .youtube-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .responsive-iframe {
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
  }

  .polaroid-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
  }

  .polaroid-row img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .quote-banner {
    font-size: 1.6rem;
    margin: 20px 10px;
    line-height: 1.3;
  }

  .location-info {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .contact-section {
    padding: 30px 15px;
  }

  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-subheading {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .contact-form {
    width: 95%;
    padding: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 10px;
  }

  .contact-info {
    gap: 20px;
    margin-top: 20px;
  }

  .contact-item span {
    font-size: 0.9rem;
  }

  footer {
    flex-direction: column;
    padding: 20px 15px;
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-right img {
    width: 80px;
    margin-top: 10px;
  }
}

/* ============================= */
/* 2. Tablet (iPad) 769–1024px   */
/* ============================= */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 17px;
    line-height: 1.6;
  }

  h1, h2, h3 {
    font-size: 2rem;
    margin: 12px 0;
  }

  p {
    font-size: 1.05rem;
    margin: 12px 0;
  }

  .hero {
    height: 90vh;
    padding: 30px 20px;
  }

  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
  }

  .news-box {
    max-width: 90%;
    padding: 20px;
    margin: 30px auto;
  }

  .news-box h2 {
    font-size: 1.5rem;
  }

  .view-work-button-wrapper {
    margin: 30px 0;
  }

  .view-work-btn {
    padding: 14px 24px;
    font-size: 1.05rem;
  }

  .youtube-section {
    margin: 40px auto;
  }

  .youtube-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .responsive-iframe {
    padding-bottom: 56.25%;
  }

  .polaroid-row {
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .polaroid-row img {
    width: 45%;
    max-width: 400px;
    height: auto;
  }

  .quote-banner {
    font-size: 1.8rem;
    margin: 30px 20px;
    line-height: 1.4;
  }

  .location-info {
    font-size: 1rem;
    padding: 0 20px;
  }

  .contact-section {
    padding: 50px 30px;
  }

  .contact-section h2 {
    font-size: 2.2rem;
  }

  .contact-subheading {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .contact-form {
    width: 90%;
    padding: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 12px;
  }

  .contact-form button {
    font-size: 1.05rem;
    padding: 12px;
  }

  .contact-info {
    gap: 30px;
    margin-top: 25px;
  }

  .contact-item span {
    font-size: 1rem;
  }

  footer {
    padding: 25px 30px;
    font-size: 1rem;
  }

  .footer-right img {
    width: 90px;
  }
}



/* === Hire Me Page === */




.pricing-hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #111;
  color: #ffcc00;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.pricing-hero p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
}

.pricing-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pricing-block {
  background-color: #111;
  padding: 25px 20px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.pricing-block h2 {
  color: #ffcc00;
  margin-bottom: 12px;
}

.pricing-block p.price {
  color: #ffcc00;
  font-weight: bold;
  margin: 10px 0;
}

.note-block {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  color: #ccc;
  text-align: center;
  font-size: 0.95rem;
}

.contact-options {
  text-align: center;
  background-color: #111;
  padding: 20px;
  border-radius: 12px;
}

.contact-options h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.contact-options .btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact-options .btn:hover {
  background-color: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-hero p {
    font-size: 1rem;
  }

  .pricing-block {
    padding: 20px 15px;
  }
}

/* ----------------------------------- */
/* SPECIAL HIRE ME NAV BUTTON FIXED ALIGNMENT */
/* ----------------------------------- */
.hireme-nav-btn {
  background-color: #ffcc00;
  color: #000000;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: hireme-pulse 2.5s infinite;
  font-size: 1rem;
}

.nav-links .hireme-nav-btn {
  color: #000;
}

.hireme-nav-btn {
  text-shadow: 0 0 4px rgba(255, 204, 0, 0.8);
}


/* Hover scaling bounce */
.hireme-nav-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #ffcc00;
}

/* Cool attention-grabbing animation */
@keyframes hireme-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* Desktop only pulse animation */
@media (min-width: 769px) {
  .hireme-nav-btn {
    animation: hireme-pulse 2.5s infinite;
  }
}

/* Mobile hamburger style */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links .hireme-nav-btn {
    margin-top: auto;
    margin-bottom: 20px;
    width: 90%;
    text-align: center;
    padding: 12px 0;
    border-radius: 30px;
  }
}


/* ----------------------------------- */
/* Hire Me Page New Styles */
/* ----------------------------------- */
.pricing-hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #111;
  color: #ffcc00;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.pricing-hero p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background: url('abstract-bg.jpg')center/cover no-repeat;
  backdrop-filter: none;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.service-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px 20px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: var(--delay, 0s);
}


.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.service-card:nth-child(1) { --delay: 0s; }
.service-card:nth-child(2) { --delay: 0.1s; }
.service-card:nth-child(3) { --delay: 0.2s; }
.service-card:nth-child(4) { --delay: 0.3s; }
.service-card:nth-child(5) { --delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-text h2 {
  color: #ffcc00;
  margin-bottom: 12px;
  font-weight: 700;
}


.service-price {
  color: #ffcc00;
  font-weight: bold;
  text-align: right;
  font-size: 1.2rem;
  margin-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}


.note-block {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  color: #ccc;
  text-align: center;
  font-size: 0.95rem;
  max-width: 800px;
  margin: 30px auto;
}

.contact-options {
  text-align: center;
  background-color: #111;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 20px auto;
}

.contact-options h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.contact-options .btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact-options .btn:hover {
  background-color: #e6b800;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-hero p {
    font-size: 1rem;
  }

  .pricing-grid {
    padding: 30px 10px;
    gap: 20px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-price {
    text-align: left;
    margin-top: 10px;
  }
}


header.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .nav-links {
    margin-top: 80px;
  }
}

.service-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.service-actions button {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.customize-btn {
  background: var(--brand-color);
  color: #e6be00;
}

.customize-btn:hover {
  background: #e6be00;
color: #000;
  transform: translateY(-2px);
}

.book-btn {
  background: #333;
  color: #fff;
  border: 1px solid #555;
}

.book-btn:hover {
  background: #444;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .service-actions {
    flex-direction: column;
  }
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: var(--text-light);
  position: relative;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
color: #fff;
}

.modal-content label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
color:#e6be00;
}

.modal-content input,
.modal-content textarea,
.modal-content button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-top: 4px;
  font-family: var(--font-primary);
}

.modal-content input,
.modal-content textarea {
  background: #111;
  color: #fff;
}

.modal-content button[type=\"submit\"] {
  background: var(--brand-color);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
}

.modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}


