/* Navigation Bar */
.custom-navbar { background-color: #262626; padding: 1.2rem 1rem; }
  .nav-middle { background-color: #000; padding: 0.8rem 1rem; border-radius: 2rem;}
  .nav-link {color: white !important; padding: 0.5rem 0.75rem; transition: all 0.3s; }
  .nav-link:hover { color: #cccccc !important; text-decoration: underline; }
  .btn-contact { background-color: #000; color: white; border: none; padding: 0.8rem 1.2rem; border-radius: 2rem; }
  .btn-contact:hover { background-color: #333; }
  .navbar-brand { color: white !important; font-weight: bold;}
  .navbar img{ width: 200px; }

  @media (max-width: 991.98px) {.nav-middle, .right-section { flex-direction: column !important; align-items: flex-start !important; gap: 0.75rem; margin-top: 1rem; }
  .navbar-collapse > .row > div { margin-bottom: 1rem;}}

  /* Hero Section */
  .hero-section { height: 120vh; background-image: url('hero-bg.jpg'); /* Replace with your image path */ background-size: cover; background-position: center; background-repeat: no-repeat; position: relative;}
  
  .hero-section h1{font-size: 7rem; font-weight: 200; }
  .hero-section p{ font-size: 1rem; padding-top: 1rem;;}
  .hero-content { z-index: 2; max-width: 800px; padding: 0 1rem;
  }
  
  .hero-section::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); /* Optional: dark overlay for better text visibility */ z-index: 1;}
  
  .btn-hero { background-color: white; color: black; padding: 1.2rem 1.8rem; text-decoration: none; border-radius: 50px; transition: background 1s ease; position: relative; z-index: 2;}
  .btn-hero:hover { background-color: #333; color: #fff;}

  @media (max-width: 992px) {
    .hero-section {height: 100vh; /* Reduce height on tablets */}
    .hero-section h1 {font-size: 4rem;}
    .hero-section p {font-size: 0.9rem;}
    .btn-hero {padding: 1rem 1.5rem; font-size: 0.9rem; }}
  
  @media (max-width: 576px) {
    .hero-section { height: 100vh; padding: 0 1rem; /* Extra padding to prevent edge overflow */}
    .hero-section h1 {font-size: 2.5rem;}
    .hero-section p {font-size: 0.7rem;}
    .btn-hero { padding: 0.8rem 1.2rem; font-size: 0.85rem; }}

    /* Our Story */
  
    .our-story-section { background-color: #ffffff;  color: #262626;}
      .story-heading { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem;}
      .story-paragraph { font-size: 1rem; line-height: 1.6;      }


      /* Section Base */
      .scroller-section {   background-color: #262626; min-height: 125vh; overflow: hidden;  position: relative;}
      .scroller-heading { font-size: 4rem; font-weight: 600; margin: 50px;}
      .scroller-wrapper { flex-grow: 1; overflow: hidden; position: relative; cursor: default; }
      .scroller-track { display: flex; transition: transform 0.3s ease; will-change: transform; padding-right: 20px;}
      .scroll-item { position: relative; flex: 0 0 calc(40vw - 10px); height: calc(100vh - 120px); overflow: hidden; transition: transform 0.3s ease; margin: 0 5px; text-decoration: none; color: inherit; }
      .scroll-item img { width: 100%;  height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
      .scroll-item .overlay { position: absolute; top: 0;  left: 0; width: 100%;  height: 100%; color: white; padding: 1rem; display: flex; flex-direction: column; justify-content: space-between; }
      .tag-left-top {  position: absolute; top: 1rem; left: 1rem;  font-size: 0.9rem; font-weight: 600;}
      .tag-right-top { position: absolute;  top: 1rem;  right: 1rem; font-size: 0.9rem; font-weight: 600;  }
      .bottom-heading { font-size: 1.8rem; font-weight: bold; position: absolute; bottom: 1rem; left: 1rem; }
      .scroll-item:hover img { transform: scale(1.05); z-index: 2;  }
      
      @media (max-width: 768px) { .scroller-track { flex-direction: column; padding: 0 10px; }
        .scroll-item {  flex: 1 0 auto;  width: 100%;  height: auto;  margin: 10px 0;}
        .scroll-item img { height: auto;}}

      /* What We Do Section */

      .what-we-do-section { min-height: 100vh;}
      .what-we-do-section h2{font-size: 4rem; font-weight: 600; margin: 30px;}
      .service-box { height: 100%; aspect-ratio: 1 / 1.2; transition: transform 0.4s ease; cursor: pointer;}
      .service-box img { filter: brightness(60%); transition: transform 0.4s ease; object-fit: cover; }
      .service-overlay { bottom: 10%; left: 50%;  transform: translateX(-50%);  width: 90%; }
      .service-box:hover img { transform: scale(1.1) }
      .service-box:hover .service-overlay h4,
      .service-box:hover .service-overlay p { transform: scale(1.05); }
      .service-overlay h4,
      .service-overlay p { transition: transform 0.3s ease;}
      
      @media (max-width: 768px) { .row.gx-2 { flex-direction: column; }
        .service-box { margin-bottom: 20px; } }

/* Studio Stories */

.studio-stories-section { background-color: #262626; position: relative; min-height: 100vh; overflow: hidden; padding: 5rem 1rem;}
.parallax-bg { background: url('hero-bg.jpg') center/cover no-repeat fixed;  position: absolute; top: 0; left: 0;  width: 100%;  height: 100%; z-index: 0;  opacity: 0.3;}
.container.position-relative {  z-index: 2;}
.studio-heading {  font-size: 4rem; font-weight: bold; margin: 50px;}
.studio-subheading { font-size: 1.2rem; color: #ddd;  max-width: 600px; margin: 0 auto;}
.team-img { height: 280px; object-fit: cover; width: 100%; transition: transform 0.4s ease; filter: brightness(85%);}
.team-member:hover .team-img { transform: scale(1.05);}
.team-member h5,
.team-member p { transition: transform 0.3s ease;}
.team-member:hover h5,
.team-member:hover p { transform: scale(1.05);}

@media (max-width: 768px) { .studio-stories-section { padding: 3rem 1rem;}
  .team-member { margin-bottom: 2rem;}
  .team-img {  height: auto;}}

/*  Testimonials */ 
.testimonials-section { background-color: #f8f9fa; padding: 5rem 2rem;}
.testimonials-heading { font-size: 3rem; margin-bottom: 3rem;  font-weight: bold;}
.testimonial-featured {  background: #fff; padding: 5rem; border-radius: 10px;  margin-bottom: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1);}
.testimonial-header {  display: flex; align-items: center; gap: 1.5rem;}
.testimonial-img {  width: 80px; height: 80px; border-radius: 50%;  object-fit: cover;}
.testimonial-info h5 {  margin: 0; font-size: 1.25rem;}
.designation { font-size: 0.9rem; color: #777;  margin: 0.2rem 0;}
.stars {  color: gold; font-size: 1rem;}
.testimonial-text {  margin-top: 1rem; font-size: 1rem; line-height: 1.6;  color: #444;}
.testimonial-grid {  display: flex; flex-wrap: wrap; gap: 1.5rem;  justify-content: center;}
.testimonial-box { background: #fff;  padding: 1.5rem;  border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); flex: 1 1 280px;  max-width: 320px; cursor: pointer;  transition: transform 0.3s ease;}
.testimonial-box:hover { transform: scale(1.02);}
.read-more-btn { font-weight: 600; border-color: #000; color: #000; padding: 20px;  border-radius: 80px;}
.read-more-btn:hover { background: #000; color: #fff;}

@media (max-width: 768px) {
   .testimonial-featured {  padding: 1.5rem;}
  .testimonials-heading {    font-size: 2.2rem;}
  .testimonial-grid {    flex-direction: column; align-items: center;}}

/* Map Section */ 

.map-section { background-color: #262626; padding: 5rem 1rem;}
.map-heading {  font-size: 3rem; margin-bottom: 2rem;}
.map-wrapper {  max-width: 1000px; margin: 0 auto; padding: 0 1rem;}
@media (max-width: 768px) {
  .map-heading {    font-size: 2rem; }
  .map-section {    padding: 3rem 1rem;}}

/* Footer */ 
.footer-section { background-color: #262626; padding: 4rem 2rem 3rem;  color: #fff; font-size: 1.1rem; border-top: 1px solid #ffffff33;}
.footer-divider {  border-top: 1px solid #ffffff33; margin-bottom: 2rem;}
.footer-heading {  font-size: 1.8rem;  margin-bottom: 1rem; font-weight: 600;}
.footer-line {  border: none; border-bottom: 2px solid #fff; width: 60px; margin-bottom: 1rem;}
.footer-line-full { width: 100%; max-width: 300px;}
.footer-links li { margin-bottom: 0.75rem; font-size: 1.1rem;}
.footer-link {  color: #fff; text-decoration: none; transition: all 0.3s ease;  display: inline-block;  position: relative;}
.footer-link:hover {  color: #aaa;}
.footer-link::after { content: ''; display: block; width: 0;  height: 2px; background: #fff; transition: width 0.3s; position: absolute; bottom: -4px; left: 0;}
.footer-link:hover::after {width: 100%;}
.footer-icon {  margin-right: 0.5rem; color: #fff;}
.footer-description {  font-size: 1.05rem; color: #ccc; max-width: 320px;}
.footer-contact .contact-label { font-weight: bold; margin-top: 1.2rem;  font-size: 1.15rem;}
.footer-contact .contact-link { color: #fff; text-decoration: none;  transition: color 0.3s ease;}
.footer-contact .contact-link:hover {  color: #aaa;}
.footer-contact .contact-address { color: #aaa;  font-size: 1rem; max-width: 320px;}

@media (max-width: 768px) {
  .footer-section {  text-align: center;  padding-left: 1rem;  padding-right: 1rem; }
  .footer-links li,
  .footer-contact p {    font-size: 1rem;}
  .footer-line-full {    max-width: 100%;}}