/* Reset styles */
/* Reset styles */

:root {
    --primary-color: #a15219;
    --primary-hover-color: #d3d3d3;
    --text-color: #DFD6CD; /* Light text for dark background */
    --text-color-dark: #333;
    --background-color: #f8f9fa;
    --nav-background-color: #000000; /* Set to black */
    --white: #fff;
    --container-width: 1200px;
    --font-family: 'Inter', sans-serif;
    --border-light: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
 
 /* Separator Style */
.separator {
  margin: 50px auto;
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #f39c12, rgba(0, 0, 0, 0));
  width: 80%;
}

 
 /* Default hidden state for elements */
 .fade-in {
  opacity: 0;
  transform: translateY(30px); /* Optional: adds a slight vertical slide */
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
 }
 /* When elements are in view */
 .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
 }
 @keyframes rotateBack {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg); /* Rotate to 15 degrees */
  }
  100% {
    transform: rotate(0deg); /* Return to original position */
  }
 }
 /* Embed Oswald Light */
 @font-face {
  font-family: "Oswald Light";
  src:
       url("FONTS/Oswald-Light.ttf") format("truetype"),
       url("FONTS/Oswald-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
 }
 /* Embed Aleo Regular */
 @font-face {
  font-family: "Aleo Regular";
  src:
       url("FONTS/Aleo-Regular.ttf") format("truetype"),
       url("FONTS/Aleo-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
 }
 /* Embed Antic Regular */
 @font-face {
  font-family: "Antic Regular";
  src:
       url("FONTS/Antic-Regular.ttf") format("truetype"),
       url("FONTS/Antic-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
 }
 /* Apply font styles */
 body {
  font-family: "Aleo Regular", serif; /* Use Aleo Regular for body text */
  background-color: #000;
  color: #DFD6CD;
  line-height: 1.6;
  overflow-x: hidden;
  }
 h1, h2, h3 {
  font-family: "Oswald Light", sans-serif; /* Use Oswald Light for titles */
 }
 h4{
  font-size: 1.4em;
  font-weight: 500;
 
 
 }
 p {
  font-family: "Aleo Regular", serif; /* Use Aleo Regular for paragraphs */
 }
 a {
  font-family: "Antic Regular", sans-serif; /* Use Antic Regular for navigation links */
 }
 h1, h2 {
  text-transform: uppercase;
  color: #DFD6CD;
  line-height: 1;
  letter-spacing: 4.9px;
  font-size: 4rem;
 }
 h1 {
  font-size: 6.5rem;
  font-weight: 900;
  }
 h2 {
  font-size: 2.5rem;
  font-weight: bold;
 }
 p {
  font-family: "EB Garamond", serif;
  font-size: 1.3rem; /* Same as the About section */
  line-height: 1.6;
  color: #bca4a4;
  opacity: 0.8;
  margin: 0;
 }
 @media (max-width: 768px) {
  h1, h2 {
    font-size: 4rem; /* Adjust the font size to your preference */
  }
 }
 /* Other styles remain unchanged */
 /* ... (rest of your CSS code) */
 /* Container class to manage max-width and padding */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


 
 
 /* ------------------- */
/* Header & Navigation */
/* ------------------- */
.site-header {
    padding: 1rem 0;
    background-color: var(--nav-background-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    align-items: center;
    max-height: 80px; /* Set a maximum height for the nav bar */
    width: 100%; /* Ensure it spans the full width */
}

.nav-section {
    display: flex;
    align-items: center;
}

.nav-section--left {
    flex: 1 1 30%; /* Grow, Shrink, Basis */
    justify-content: flex-start;
    padding-left: 2rem; /* Push flush to the left with breathing room */
}

.nav-section--center {
    flex: 1 1 50%; /* Set to midpoint 50% for consistency */
    display: flex; /* Ensure it's a flex container */
    justify-content: center; /* Center its direct child (.nav-links) */
}
.nav-section--right {
    flex: 1 1 25%;
    justify-content: flex-end;
    padding-right: 2rem; /* Push flush to the right with breathing room */
}

.logo img {
    height: 60px; /* Adjust logo size within the new max-height */
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center; /* This remains useful for vertical alignment */
    justify-content: center; /* This is not strictly needed but good for clarity */
    gap: 3rem;
    transform: translateX(-15px); /* Manually shift the menu to the left */
}

.nav-item {
    position: relative;
    /* This is needed for the new underline effect's positioning */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: "Oswald Light", sans-serif; /* Use Oswald Light for navigation links */
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase; /* Make menu text capital */
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative; /* Needed for the ::after pseudo-element */
    overflow: hidden; /* Prevents underline from showing outside the link */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: none; /* Remove the scale effect */
}

/* Add a clear focus indicator for keyboard accessibility */
.nav-links a:focus-visible,
.dropdown-menu a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.nav-links a:hover::after {
    transform: scaleX(1);
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover::after {
    transform: scaleX(1);
}

/* --- Buttons --- */

.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button-primary:hover {
    background-color: var(--primary-hover-color);
    color: var(--white);
}

.button-text {
    background-color: transparent;
    color: var(--text-color);
    padding: 0.6rem 1.2rem;
}

.button-text:hover {
    color: var(--primary-color);
}

/* --- Primary Button in Nav --- */
.nav-button {
    /* Style to match .chat-btn */
    background: #000;
    color: #DFD6CD;
    padding: 10px 22px; /* Slightly smaller padding for nav */
    border-radius: 50px; /* rounded pill shape */
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #444; /* Add a subtle border */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-button:hover {
  background: #c0392b; /* red highlight for modern look */
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border-color: #c0392b;
}

/* --- Dropdown Menu --- */
.dropdown-menu {
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 10px); /* Add a 10px gap like the example */
    left: 0;
    transform: translateY(-10px); /* Initial position for slide-down animation */
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0; /* Remove padding, will be on links instead */
    width: 100%; /* Make dropdown same width as parent */
    min-width: 180px; /* Ensure it doesn't get too narrow */
    transition: all 0.3s ease; /* Animate opacity and transform */
    pointer-events: none;
}

.dropdown-menu.active {
    opacity: 1;
    transform: translateY(0); /* Final position for slide-down animation */
    pointer-events: auto;
}

.dropdown-menu a {
    color: #888888;
    padding: 14px 18px;
    white-space: nowrap;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Responsive Design   */
/* ------------------- */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 2000; /* Highest z-index */
    padding: 0;
    width: 32px; /* Increased width for better touch area */
    height: 24px; /* Increased height for better touch area */
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger-line.top { top: 0; }
.hamburger-line.middle { top: 50%; transform: translateY(-50%); }
.hamburger-line.bottom { bottom: 0; }

/* Morph to X animation */
.nav-open .hamburger-line.top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.nav-open .hamburger-line.middle {
    opacity: 0;
}
.nav-open .hamburger-line.bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Site Overlay for when menu is open */
.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 998; /* Below the header but above content */
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block; /* This will now be inside the .main-nav flow */
    }

    .main-nav {
        justify-content: space-between;
        padding: 0 2rem; /* Add padding for mobile header */
    }

    .nav-section--left {
        padding-left: 0;
    }

    .nav-section--right {
        display: none; /* Hide desktop contact button */
    }

    /* --- Slide-in Panel --- */
    .nav-section--center {
        position: fixed;
        top: 0;
        right: -80%; /* Start off-screen to the right */
        width: 80%;
        height: 100vh;
        background-color: #111; /* Solid dark background */
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1999;
        overflow-y: auto;
        display: block; /* Override desktop flex */
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        transform: none; /* Reset desktop transform */
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1.2rem 0;
        width: 100%;
    }

    .nav-links a::after {
        display: none; /* Hide underline on mobile */
    }

    /* --- Accordion Sub-menu --- */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        width: auto;
        padding: 0 0 0 1.5rem; /* Indent sub-menu items */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding-top 0.4s ease-out, padding-bottom 0.4s ease-out;
    }

    .dropdown-menu.active {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        max-height: 500px; /* Adjust as needed */
    }

    .dropdown-menu a {
        color: var(--text-color);
        text-align: left;
        font-family: "Antic Regular", sans-serif; /* Use Antic Regular for sub-menu items */
        font-size: 1rem; /* Make sub-menu items smaller */
    }

    /* --- Open State --- */
    .nav-open .nav-section--center { right: 0; }
    .nav-open .site-overlay { opacity: 1; visibility: visible; }
    body.nav-open { overflow: hidden; }
}
 
/* --- Floating Contact Button (Mobile Only) --- */
.floating-contact-btn {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #9f835a; /* Gold accent color */
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

@media (max-width: 992px) {
    .floating-contact-btn {
        display: block; /* Show on mobile */
    }
}
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 120vh; /* Reduced height for a more proportionate, immersive hero */
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02); /* Slight zoom-out initially */
  transition: opacity 1.2s ease, transform 1.2s ease; /* Smoother transitions */
}

.hero-slider div.active {
  opacity: 1;
  transform: scale(1); /* Zoom in smoothly as it becomes active */
}

/* Enhanced Overlay for Improved Contrast */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), transparent); /* Darker start for better readability */
  z-index: 1;
  pointer-events: none;
}

.hero img {
  width: 100%;
  height: 100%; /* Ensure image fills the container */
  object-fit: cover; /* Maintain immersive fill on all devices */
  transition: transform 0.5s ease; /* Subtle zoom effect on hover */
}

.hero img:hover {
  transform: scale(1.01); /* Slight zoom in on hover */
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
  .hero {
    height: 100vh; /* Full viewport height on mobile */
  }
  .hero img {
    object-fit: cover; /* Consistent immersive effect on mobile */
  }
}

 .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #DFD6CD;
  text-align: center;
 }
 .hero-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
 }
 .hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
 }
 /* Contact Button */
 .contact-btn {
  display: inline-block;
  padding: 12px 35px;
  font-size: 16px;
  color: #DFD6CD;
  border: 2px solid #DFD6CD;
  border-radius: 25px;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
 }
 .contact-btn:hover {
  background-color: #DFD6CD;
  color: #000;
 }
 /* Hover effect */
 .about-container:hover h2, .about-container:hover p {
  transform: translateY(-5px);
  transition: all 0.3s ease;
 }
 /* Animation */
 @keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
 }
 /* Masonry Grid Layout */
 /* Masonry Grid Layout with Standardized Image Previews */
 /* Gallery Section */
 .gallery {
  padding: 50px 20px;
  background-color: #000000;
 }
 
 
 .gallery-title {
  text-align: center;
  margin-bottom: 30px;
  }
 
 
 
 
 
 
 /* Masonry Grid Layout */
 .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 0;
 }
 
 
 /* Standardized Image Sizes */
 .gallery-item {
  position: relative;
  overflow: hidden;
  background-color: #000;
 }
 
 
 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
 }
 
 
 /* Hover Effects */
 .gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
 }
 
 
 /* Lightbox effect styling - optional */
 .gallery-item img:active {
  transform: none;
  opacity: 1;
 }
 
 
 /* Larger screens */
 @media (min-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
 }
 

 .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%; /* Responsive size */
  max-height: 90%; /* Responsive size */
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  text-align: center;
  color: #fff;
  max-width: 90%;
  font-size: 17px;
  padding: 10px 0;
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
  .close {
      font-size: 25px; /* Smaller close button for mobile */
  }
}

 
 
 

 
 /* Modern Full-Screen Contact Section */
.contact-section {
  width: 100%;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('Meulo Images/studio-header.webp') no-repeat center center/cover;
  color: #DFD6CD;
  position: relative;
  padding-top: 100px; /* Add padding to create a scroll target offset */
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-section h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9f835a; /* Gold accent color */
  position: relative;
  z-index: 2;
}

.contact-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: #e4ddd4;
  position: relative;
  z-index: 2;
}

.contact-buttons {
  display: flex;
  justify-content: center; /* Center the buttons horizontally */
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Buttons */
.chat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #DFD6CD;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 50px; /* rounded pill buttons */
  transition: all 0.3s ease;
  font-size: 1.1em;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-btn img {
  width: 22px;
  height: 22px;
}

.chat-btn:hover {
  background: #9f835a; /* Gold accent color */
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.nav-button:hover {
  background: #c0392b; /* red highlight for modern look */
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border-color: #c0392b;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
  .contact-section h2 {
    font-size: 2em;
  }
  .contact-section p {
    font-size: 1em;
  }
  .chat-btn {
    font-size: 1em;
    padding: 12px 20px;
    width: 80%; /* Set a consistent width for the buttons on mobile */
  }
}


 
 
 


 
 

 
 
 
 /* Statistics Section */
 .stats {
  padding: 60px 80px; /* Increased padding for more breathing room */
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000000;
  text-align: center;
  border-radius: 15px; /* Add subtle rounded corners */
 }
 .stat-item {
  flex: 1; /* Ensure items expand to fill available space */
  margin: 0 20px; /* Add some spacing between items */
 }
 .stat-item h3 {
  font-size: 3.5rem; /* Slightly larger font size for emphasis */
  font-weight: 600; /* Add some weight to the numbers */
  margin-bottom: 10px;
 }
 .stat-item p {
  font-size: 1.2rem; /* Slightly larger font size for better readability */
  text-transform: uppercase; /* Add subtle styling to the labels */
  letter-spacing: 1px;
 }
 /* Awards Section */
 /* Footer Styling */
 .footer {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2em 1em;
  position: relative;
  overflow: hidden;
  background-image: url('Meulo Images/footer image_result.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px; /* Increased padding for more breathing room */
  color: #DFD6CD;
 }
 .footer::before { /* Add a subtle overlay for better text contrast */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
 }
 .logo-footer {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)); /* Add a subtle shadow to the logo */
 }
 .footer-location, .footer-contact {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative; /* To ensure content appears above the overlay */
  z-index: 1;
 }
 .footer-location {
  background: rgba(0, 0, 0, .8); /* Remove spaces in rgba, shorten comment */
  padding: 4em 1em;
  margin: 6em auto 3em;
  border-radius: 10px;
 }
 .footer-location h3 {
  font-size: 2em;
  color: #DFD6CD;
  margin-bottom: 1em;
 }
 .footer-location p {
  font-size: 1.2em;
  color: #DFD6CD;
  margin-bottom: 2em;
 }
 .footer-contact{
  font-size: 1em;
  color: #DFD6CD;
 }
 .footer-contact a{
  color: #DFD6CD;
  text-decoration: none;
  transition: color 0.3s ease;
 }
 .footer-contact a:hover {
  color: #d4d4d4; /* Slightly lighter hover color */
 }
 .footer-social-media {
  margin-top: 30px;
 }
 .footer-social-media a {
  margin-right: 20px;
 }
 .social-icon {
  width: 30px; /* Slightly larger icons */
  height: 30px;
  transition: all 0.3s ease; /* Transition all properties for a smoother effect */
 }
 .social-icon:hover {
  transform: scale(1.1); /* Scale up on hover */
  opacity: 0.9;
 }
 @media (max-width: 768px) { /* Adjust breakpoint as needed */
  .footer {
    padding: 1em; /* Reduce padding on smaller screens */
  }
  .footer-location, .footer-contact {
    max-width: 100%; /* Allow content to take full width */
  }
  .footer-location h3 {
    font-size: 1.5em; /* Reduce font size */
  }
  .footer-location p {
    font-size: 1em;
  }
 }

/* Footer Disclaimer */
.footer-disclaimer {
    padding: 20px 40px;
    background-color: #000;
    text-align: center;
}

.footer-disclaimer p {
    font-family: "Aleo Regular", serif;
    font-size: 0.7rem;
    color: #888;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
 }
 /* Media Queries for responsiveness */
 @media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
  .stats {
    flex-direction: column;
    gap: 30px;
  }
  .hero-text h2 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
 }
 /* General container styling */



 .visit-section {
  max-width: 1200px !important; /* Match recording advertise section */
  width: 100%;
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
}

/* Fix Potential Container Restriction */
.visit-container {
  max-width: 100% !important;
  width: 100%;
  margin: 0 auto;
}

/* Ensure Flex Container Expands */
.visit-flex-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
  max-width: 1200px !important;
  width: 100%;
  margin: 0 auto;
}

.visit-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.visit-hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Title and description section */
.visit-title-description-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.visit-big-title {
  flex: 1;
  margin-bottom: 15px;
  text-align: right;
  font-size: 2.5rem;
  color: #f1e4e4;
  letter-spacing: 2px;
  transition: letter-spacing 0.5s ease;
}

.visit-big-title:hover {
  letter-spacing: 5px;
}

.visit-trip-description {
  flex: 1;
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #bbb;
}

.visit-get-directions {
  margin-top: 20px;
  text-align: center;
}

/* Direction button */
/* ✅ Updated CTA Button - Now Includes .visit-direction-btn */
.intro-description-section .cta-btn,
.intro-description-section .visit-direction-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 45px;
  font-size: 1.6rem;
  color: #DFD6CD;
  border: 2px solid #DFD6CD;
  border-radius: 40px;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

/* ✅ Unified Hover Effect */
.intro-description-section .cta-btn:hover,
.intro-description-section .visit-direction-btn:hover {
  background-color: #DFD6CD;
  color: #000;
  transform: translateY(-3px);
}

/* Mobile Styles for Neater Button Positioning */
@media screen and (max-width: 768px) {
  .intro-description-section .cta-btn,
  .intro-description-section .visit-direction-btn {
    display: block;            /* Full-width block style for centering */
    width: fit-content;         /* Shrink to content width */
    margin: 40px auto 0;         /* Auto left/right for center alignment */
    padding: 14px 35px;          /* Slightly reduced padding for smaller screens */
    font-size: 1.4rem;           /* Adjusted font size for mobile */
  }
}




/* Flex container to arrange info and map side by side */
:root {
  --primary-bg: #000;
  --primary-text: #DFD6CD;
  --accent: #9f835a;
  --muted: #bca4a4;
}

/* Overall Visit Section Wrapper */


/* Flex Container for Info & Map */
.visit-flex-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem;
  background: var(--primary-bg);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

/* Studio Info Styling */
.visit-studio-info {
  flex: 1;
  padding: 2rem;
  text-align: left;
  color: var(--primary-text);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.visit-studio-info h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.visit-studio-info p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
}

.visit-studio-info a {
  color: var(--accent);
  text-decoration: underline;
}

/* Map Container Styling */
.visit-map-container {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}


/* Chat Button Base Style */


/* Responsive Adjustments */
@media (max-width: 768px) {
  .visit-flex-container {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  
  .visit-studio-info,
  .visit-map-container {
    width: 100%;
  }
}



/* Animation keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



 /* Global Link Styles */
 a {
  color: #DFD6CD;
  text-decoration: none;
  transition: color 0.3s ease;
 }
 a:hover {
  color: #bca4a4;
 }
 /* Section 1: Hero Image for sub-pages */
 .page-hero {
  aspect-ratio: 21 / 9;
  overflow: hidden; /* Ensures the container crops the image */
 }
 .page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
 }
 .page-hero img:hover{
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
 }
 /* Section 1: Hero Image */
 .recording-hero {
  aspect-ratio: 21 / 9;
  overflow: hidden; /* Ensures the container crops the image */
 }
 .recording-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
 }

 .recording-hero img:hover{
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
 }
 


 
 
 /* Section 2: Recording Info */
 
 
 
 
 /* Mobile-first design */
 .recording-info,
 .about-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Comfortable padding for mobile */
  background-color: #000000;
  text-align: left;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px); /* Initial position off-screen */
  animation: fadeInLeft 1.5s ease-out forwards; /* Trigger animation */
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.2) 100%); /* Vignette effect */
}
 
 
 .recording-info::before,
 .about-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle depth */

 }
 
 
 .recording-content,
 .about-content {
  display: grid;
  grid-template-columns: 1fr; /* Single column layout on mobile */
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
 }
 
 
 .recording-info h1,
 .about-info h1 {
   color: #DFD6CD;
   margin: 0;
   line-height: 1.1;
   font-weight: 700;
   text-align: center;
   opacity: 0;
   transform: scale(0.8);
   animation: slideInRight 1.2s ease both;
 }
 
 .recording-info {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
 }
 
 .recording-info .top-line {
   font-size: clamp(2rem, 5vw, 6rem);
 }
 
 .recording-info .bottom-line {
   font-size: clamp(2rem, 5vw, 6rem);
   margin-top: -10px; /* Adjust this for vertical spacing */
 }
 
 
 
 .recording-info p,
 .about-info p {
  transform: translateX(-100%);
  opacity: 0;
  animation: slideInLeft 1.5s ease-out forwards
 }
 
 
 @keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
 }
 
 
 
 
 /* Keyframes for the fade-in effect */
 @keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px); /* Start off-screen */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End in the final position */
  }
 }
 
 
 /* Keyframes for the text zoom-in effect */
 @keyframes textZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8); /* Start smaller */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* End at full size */
  }
 }
 
 
 /* Mobile-friendly breakpoints */
 @media (min-width: 768px) {
  .recording-info,
  .about-info {
    padding: 40px; /* Slightly increased padding for larger screens */
  }
 
 
  .recording-content,
  .about-content {
    grid-template-columns: 1fr 1fr; /* Side-by-side layout on larger screens */
    gap: 30px;
    max-width: 90%;
  }
 
 
  .recording-info h1,
  .about-info h1 {
    font-size: clamp(3rem, 5vw, 6rem); /* Scalable font size for tablets/desktops */
    text-align: right; /* Re-align for larger screens */
  }
 }
 
 
 /* Ultra-modern 3D effect for titles */
 .recording-info h1::after,
 .about-info h1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  z-index: -1;
  filter: blur(30px);
  transform: translate(-50%, -50%);
 }
 
 
 
 
 
 
 /* Section 3: Gear List */
.recording-gear-list {
    padding: 80px 40px;
    background-color: #000;
    text-align: center;
}

.recording-gear-list h2 {
    margin-bottom: 50px;
    font-size: 2.8rem;
}

.recording-gear-columns {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem 4rem; /* Row and column gap */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

@media (min-width: 768px) {
    .recording-gear-columns {
        grid-template-columns: 1fr 1fr; /* Two columns on desktop */
    }
}

.recording-gear-item {
    text-align: left;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.recording-gear-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.recording-gear-item h3 {
    font-size: 1.6rem;
    color: #9f835a; /* Gold accent color */
    margin-bottom: 0.8rem;
}


 .recording-pricing {
  padding: 80px 0; /* Match vertical padding, remove horizontal */
  width: 100vw; /* Full viewport width */
  margin: 60px 0; /* Adjust margin for full-width layout */
  text-align: center;
  color: #DFD6CD; 
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-image: url('Meulo Images/Recording Session.webp'); /* Keep background image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.707); /* Added for subtle depth */
  background-color: #000; /* Fallback background color */
  
}

.recording-pricing:hover {
  transform: scale(1.01); /* Scale effect on hover */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.871); /* Shadow effect on hover */
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition for effects */
}


.recording-pricing::before { /* Create the overlay for the entire section */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.775);
  z-index: 0; /* Place behind all content */
}

.recording-pricing * { /* Ensure all content is above the overlay */
  position: relative;
  z-index: 1;
}


.recording-pricing h2 {
  margin-bottom: 50px; /* Increased margin to separate from the next element */
  color: #9f835a; /* Warm highlight color */
  text-transform: uppercase; 
  letter-spacing: 2px;
  animation: fadeInDown 1s ease both;
}

.recording-pricing h4 {
  margin-bottom: 50px; /* Increased margin to separate from the next element */

}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.recording-pricing-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dynamic column grid */
  gap: 40px; /* Increased gap for better spacing between items */
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
  animation: slideInRight 1.2s ease both;
}



.recording-pricing-item {
  background-color: rgba(0, 0, 0, 0.214); /* Dark transparent box */
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 20px;
  width: 100%; 
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  overflow: hidden; 
}

.recording-pricing-item:hover {
  background-color: rgba(66, 66, 66, 0.95);
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);

}

.recording-pricing-item h2 {
  font-size: 2.2rem;
  margin-bottom: 20px; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.recording-pricing-item h3 {
  font-size: 1.8rem;
  margin-bottom: 25px; 
}

.recording-pricing-item p {
  font-size: 1.1rem;
  line-height: 1.8; 
  margin: 15px 0; 
  color: #e3e3e3;
}

.recording-pricing .recording-sub-description  {
  padding-top: 10px;
  font-size: 1em;
  color: #888;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {

  .recording-pricing {
max-width: 100%;
  }
  .recording-pricing-columns {
    grid-template-columns: 1fr;
  }

  .recording-gear-list {
    padding: 40px 20px; 
  }

  .recording-gear-columns {
    gap: 20px; 
  }
}
 
 
 /* Section 5: Special Discount */
 .recording-special-discount {
  padding: 50px;
  background-color: #000000;
  color: #DFD6CD;
  /* Using min-height instead of a fixed height for full viewport on larger screens */
  min-height: 100vh;
  display: flex; /* Use flexbox for easier centering */
  align-items: center;
  justify-content: center;
 }
 
 
 .discount-content {
  display: flex;
  flex-direction: column; /* Default to column on smaller screens */
  align-items: center;
  gap: 20px;
  max-width: 90%;
  width: 100%; /* Ensure the content takes full width within its container */
 }
 
 
 .discount-text {
  flex: 1;
  text-align: center; /* Center by default, override on larger screens */
 }
 
 
 .discount-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
 }
 
 
 .discount-text p {
  font-size: 1.2rem;
  color: #CCC;
  max-width: 600px;
 }
 
 
 .discount-image {
  flex: 1;
 }
 
 
 .discount-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }
 
 
 /* Ensure responsiveness */
 @media (min-width: 768px) {
  .discount-content {
    flex-direction: row;
  }
 
 
  .discount-text {
    text-align: left; /* Align text left on larger screens */
  }
 }
 /* Responsive Design */
 @media (max-width: 768px) {
 
 
  .recording-pricing-columns {
      flex-direction: column;
      align-items: center;
  }
  .recording-pricing-item {
      max-width: 100%;
  }
  .recording-gear-columns {
      grid-template-columns: 1fr;
  }
 }
 
 
   /* General section styling */
   
/* General section styling */
/* General section styling */
/* General section styling */
.recording-extra-pricing {
  text-align: center;
  padding: 80px 0; /* Increased padding for more breathing room */
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), rgba(30, 30, 30, 0.9));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.707); /* Softened shadow for a less dramatic effect */
  margin: 60px 0; /* Increased margin for better separation from other elements */
  width: 100vw;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.recording-extra-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Meulo images/2_result.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2; 
  pointer-events: none;
}

.recording-extra-pricing:hover{
  transform: scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.871);
}

.recording-extra-pricing h2 {
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.recording-extra-pricing:hover h2 {
  color: #ffffff; 
}

.recording-extra-pricing h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffcbcb;
  font-size: 1.5em;
  letter-spacing: 0.5px;
}

.recording-extra-pricing p {
  margin-bottom: 25px;
  font-size: 1.2em;
  color: #d8d8d8;
  text-align: center;
}

.pricing-table {
  border-collapse: collapse;
  margin: 0 auto 25px;
  animation: fadeInUp 0.7s ease-out;
  overflow-x: auto;
  display: table; /* Allow the table to size to its content */
}

/* Default table styling */
.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.pricing-table th {
  background-color: #2f2f2f;
  color: white;
  font-weight: bold;
  text-align: center;
}

.pricing-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.deposit-policy {
  font-size: 1.1em;
  text-align: center;
  padding-top: 15px;
  color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .recording-extra-pricing {
      padding: 30px 15px; /* Reduce padding */
      max-width: 100%;
  }

  .recording-extra-pricing h2 {
      font-size: 2em; /* Smaller heading */
  }

  .recording-extra-pricing h4 {
      font-size: 1.3em; /* Smaller subheading */
  }

  .pricing-table {
      width: auto; /* Allow table to be as wide as its content */
      display: block; /* Ensure block display for scrolling */
      overflow-x: auto; /* Enable horizontal scrolling */
      white-space: nowrap; /* Prevent text wrapping */
  }

  .pricing-table th,
  .pricing-table td {
      padding: 10px; /* Adjust padding for mobile */
      white-space: nowrap; /* Prevent text wrapping in table cells */
  }

  .deposit-policy {
      font-size: 1em; /* Smaller deposit policy text */
  }
}




  
  /* Fade-in animation for tables */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
 
 
 .mixing-content .coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
 }
 
 
 .mixing-content .coming-soon-message {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
 }
 
 
 .mixing-content p {
  font-size: 1.2rem;
  text-align: center;
 }
 
 
 
 
 
 
 /* Mixing Service Specific Styles */
 
 
 /* General Styles for Headings */
 
 
 /* Mixing Service Info Section */
 .mixing-service-info {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Meulo images/Hero 3_result.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
 }
 
 
 .mixing-service-info h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
 }
 
 
 .mixing-service-info p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto; /* Center the paragraph */
 }
 
 
 /* Mixing Process Section */
.mixing-process {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a; /* Dark background for contrast */
  color: #DFD6CD;
  position: relative;
  overflow: hidden;
}

.mixing-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0) 25%);
  z-index: 1;
}


.mixing-process h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #f1e4e4;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

.mixing-process ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 420px)); /* Adjusted column width */
  justify-content: center;
  gap: 40px;
  z-index: 2;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

.mixing-process li {
  background-color: #111;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  max-width: 420px;
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.mixing-process li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0));
  z-index: -1;
  transition: transform 0.4s ease;
  transform: translateX(-100%);
}

.mixing-process li:hover::before {
  transform: translateX(0);
}

.mixing-process li:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.mixing-process h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #9f835a;
  position: relative;
  z-index: 2;
}

.mixing-process p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  z-index: 2;
  position: relative;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .mixing-process ol {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

 
 /* Dark vintage cinematic theme with full viewport width */
 /* Sleek Cinematic Dark Theme */
 .mixing-benefits {
  background-color: #121212;
  color: #f5f5f5;
  width: 100vw;
  padding: 50px 5%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
 }
 
 
 .mixing-benefits__container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
 }
 
 
 /* Left Side: Text Content */
 .mixing-benefits__left {
  width: 50%;
  padding: 20px;
 }
 
 
 .mixing-benefits__title {
  font-size: 3rem;
  margin-bottom: 20px;
   text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  animation: fadeInLeft 1s ease;
 }
 
 
 .mixing-benefits__description {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInLeft 1.2s ease;
 }
 
 
 .mixing-benefits__item {
  margin-bottom: 30px;
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInLeft 1.5s ease;
 }
 
 
 .mixing-benefits__item h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #a0835b;
  position: relative;
  letter-spacing: 0.5px;
 }
 
 
 .mixing-benefits__item p {
  font-size: 1.1rem;
  color: #e0e0e0;
 }
 
 
 .mixing-benefits__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
 }
 
 
 /* Right Side: Image */
 .mixing-benefits__right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
 }
 
 
 .mixing-benefits__image-container {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transform: scale(1.1);
  transition: transform 0.5s ease;
  animation: fadeInRight 1.2s ease;
 }
 
 
 .mixing-benefits__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
 }
 
 
 .mixing-benefits__image-container:hover {
  transform: scale(1);
 }
 
 
 /* Animations */
 @keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
 }
 
 
 @keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
 }
 
 
 /* Mobile Responsiveness */
 @media (max-width: 768px) {
  .mixing-benefits__container {
    flex-direction: column;
    gap: 30px;
  }
 
 
  .mixing-benefits__left,
  .mixing-benefits__right {
    width: 100%;
  }
 
 
  .mixing-benefits__title {
    font-size: 2.2rem;
  }
 
 
  .mixing-benefits__description {
    font-size: 1.1rem;
  }
 
 
  .mixing-benefits__image-container {
    margin-top: 20px;
  }
 }
 
 
 
 
 
 
 .mixing-pricing__container {
  max-width: 90%; 
  margin: 0 auto; 
  padding: 40px; /* Increased padding for more breathing room */
  background-color: #1a1a1a; /* Darker background for a more cinematic feel */
  border-radius: 12px; /* Softer rounded corners for a refined look */
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6); /* Deeper shadow for more depth */
  position: relative;
  overflow: hidden;
}

.mixing-pricing__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, rgba(0, 0, 0, 0) 25%);
  z-index: 1;
}



.mixing-pricing__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem; /* Larger font for more impact */
  font-weight: bold;
  color: #DFD6CD;
  position: relative;
  z-index: 2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: slideInRight 1.2s ease both;
  opacity: 0;
}

.mixing-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; /* Increased gap for better spacing */
  width: 100%; 
  z-index: 2;
  position: relative;
  opacity: 0;
  animation: slideInRight 1.2s ease both;
}

.mixing-pricing__item {
  background-color: #282828;
  border: 1px solid #555; /* Slightly lighter border for better contrast */
  padding: 24px; /* Increased padding for a more spacious feel */
  border-radius: 8px; 
  text-align: center; 
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.mixing-pricing__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 25%, rgba(0, 0, 0, 0));
  z-index: -1;
  transition: transform 0.4s ease;
  transform: translateX(-100%);
}

.mixing-pricing__item:hover::before {
  transform: translateX(0);
}

.mixing-pricing__item:hover {
  transform: translateY(-6px); /* Increased lift for a more noticeable effect */
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6); /* Deeper shadow on hover */
}

.mixing-pricing__item h3 {
  font-size: 1.5rem;
  color: #9f835a;
  margin-bottom: 15px;
  z-index: 2;
}

.mixing-pricing__item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  z-index: 2;
}

.mixing-pricing__item span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #DFD6CD;
}

@media (max-width: 768px) {
  .mixing-pricing__grid {
      grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .mixing-pricing__grid {
      grid-template-columns: 1fr; 
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


 
 
 
 
 
 
 /* Vocal Tuning Pricing */
 .vocal-tuning-pricing {
  padding: 50px 30px;
  background-color: #0e0e0e; /* Richer dark background */
  color: #dfd6cd;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6); /* Deeper shadows for cinematic depth */
  background: radial-gradient(circle at top, #222 0%, #111 100%); /* Subtle gradient for more visual interest */
  overflow: hidden;
  position: relative;
 }
 
 
 /* Subtle glowing effect */
 .vocal-tuning-pricing::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 165, 0, 0.1); /* Soft amber glow */
  border-radius: 50%;
  z-index: 0;
  filter: blur(100px);
 }
 
 
 .vocal-tuning-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Ensure content stays above the glowing effect */
 }
 
 
 .vocal-tuning-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
 }
 
 
 .vocal-tuning-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #9f835a; /* Vintage gold for titles */
 }
 
 
 .vocal-tuning-text p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
 }
 
 
 /* Image Styling */
 .vocal-tuning-image {
  flex: 1;
  max-width: 600px;
 }
 
 
 .vocal-tuning-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6); /* Deeper shadows for cinematic feel */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 
 .vocal-tuning-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); /* Enhanced hover effect */
 }
 
 
 /* Ensure responsiveness */
 @media (min-width: 768px) {
  .vocal-tuning-content {
    flex-direction: row;
  }
 }
 
 
 @media (max-width: 767px) {
  .vocal-tuning-text {
    text-align: center;
  }
   .vocal-tuning-image {
    max-width: 100%;
  }
 }
 
 
 /* Full-page width, short height contact section */
 .contact-us-section {
  width: 100vw; /* Full width of the viewport */
  min-height: 30vh; /* Occupies 30% of the viewport height */
  background-color: #000000;
  color: #DFD6CD;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
 }
 
 
 .contact-us-content {
  text-align: center;
  width: 100%;
  max-width: 1600px; /* Max width to ensure content does not get too stretched */
  padding: 0 20px;
 }
 
 
 .contact-us-section h2 {
  margin-bottom: 10px;
 }
 
 
 .contact-us-section p {
  margin-bottom: 20px;
 }
 
 
 .contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allows buttons to wrap in smaller viewports */
 }
 
 
 /* Media Queries for responsiveness */
 @media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center; /* Add this to center items horizontally in a column layout */
  }
 }
 
 
 
 
 /* Top Places to Visit in Ha Dong Section */
 .top-places-hadong {
  padding: 50px;
  background-color: #000000; /* Muted dark color to match the vintage aesthetic */
  color: #DFD6CD;
  text-align: center;
 }
 
 
 .top-places-hadong h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
 }
 
 
 .top-places-hadong p {
  margin-bottom: 30px;
 }
 
 
 
 
 .places-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
 }
 
 
 .place-item {
  padding: 20px;
  background-color: #3b3735; /* Slightly lighter background for place items */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 
 .place-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: 'Aleo Regular', serif;
 }
 
 
 .place-item p {
  font-size: 1.2rem;
  color: #bca4a4;
 }
 
 
 .place-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
 }
 
 
 /* Responsive Design */
 @media (max-width: 768px) {
  .places-container {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
 }
 
 
 
 
 /* Style the entire features section */
 .producer-features-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background-image: url('Meulo images/10_result.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  background-color: #111;
  color: #DFD6CD;
  overflow: hidden; /* To contain animated elements */
 }
 
 
 .producer-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Darker overlay */
  z-index: 1;
  filter: blur(5px); /* Adds a blurred effect for depth */
 }
 
 
 .producer-features-section * {
  position: relative;
  z-index: 2;
 }
 
 
 .producer-features-section h2 {
  margin-bottom: 50px;
  font-size: 3rem;
  color: #9f835a; /* Add a warm highlight color */
  text-transform: uppercase; /* Make it stand out */
  letter-spacing: 2px;
  animation: slideInRight 1.2s ease both;
 }
 
 

 
 
 .producer-features-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dynamic column grid */
  gap: 40px;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
  animation: slideInRight 1.2s ease both;
 }
 
 
 
 
 
 .producer-features-item {
  position: relative;
  background-color: rgba(0, 0, 0, 0.406); /* Dark transparent box */
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 20px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  overflow: hidden; /* Contain hover animations */
 }
 
 
 .producer-features-item::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
 }
 
 
 .producer-features-item:hover::before {
  opacity: 1;
  transform: scale(1.5);
 }
 
 
 .producer-features-item:hover {
  background-color: rgba(0, 0, 0, 0.95);
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
 }
 
 
 .producer-features-item h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #9f835a; /* Golden highlight */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
 }
 
 
 .producer-features-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e3e3e3;
  margin-bottom: 20px;
 }
 
 
 .producer-features-item ul {
  list-style: none;
  padding: 0;
 }
 
 
 .producer-features-item li {
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1rem;
  color: #bbb;
  text-align: left;
  position: relative;
 }
 
 
 .producer-features-item li::before {
  content: '\2713'; /* Checkmark icon */
  color: #9f835a;
  position: absolute;
  left: 0;
  top: 0;
 }
 
 
 @media screen and (max-width: 768px) {
  .producer-features-columns {
    grid-template-columns: 1fr;
  }
 }
 
 
 .producer-features-item::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
  transition: bottom 0.3s ease;
 }
 
 
 .producer-features-item:hover::after {
  bottom: 0;
 }
 
 
 /* FAQ Section Styling */
 .producer-faq-section {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;

 
 
 }
 
 
 .producer-faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two-column layout */
  gap: 20px; /* Space between columns */
  animation: slideInRight 1.2s ease both;

 }
 
 
 .producer-faq-item {
  display: flex;
  align-items: flex-start;
  background-color: #000000; /* Light background for FAQ item */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }
 
 
 .producer-faq-title {
  text-align: center;
 }
 
 
 .producer-faq-title h2 {
 margin-bottom: 30px;}
 
 
 .faq-icon {
  font-size: 24px;
  color: #4a90e2; /* Color for the icon */
  margin-right: 20px;
 }
 
 
 
 
 
 
 
 
 .faq-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
 }
 
 
 .faq-content p {
  font-size: 16px;
 }
 
 
 @media (max-width: 768px) {
  .producer-faq-columns {
    grid-template-columns: 1fr; /* One column layout for mobile */
  }
 }
 
 
 
 
 
 
 
 
 .recording-advertise {
  width: 100vw;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.recording-advertise__container {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-image: url('Meulo Images/guitar and mic.webp');
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.recording-advertise::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 196, 87, 0), transparent);
  z-index: 1;
  transition: all 0.8s ease;
}

.recording-advertise:hover::before {
  right: -120px;
  top: -120px;
  width: 350px;
  height: 350px;
  opacity: 0.3;
}

.recording-advertise__content {
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
  color: #d8d8d8;
  z-index: 2;
  animation: slideInRight 1.2s ease both;
}


@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.recording-advertise__title {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #9f835a;
  letter-spacing: 1px;
}

.recording-advertise__description {
  font-size: 1.3rem;
  color: #a6a6a6;
  line-height: 1.8;
}

.recording-advertise__list-wrapper {
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
  z-index: 2;
  animation: slideInLeft 1.2s ease both;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.recording-advertise__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.recording-advertise__item {
  margin-bottom: 25px;
}

.recording-advertise__box {
  background: linear-gradient(135deg, #000000, #0f0f0f);
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1.2rem;
  color: #e0e0e0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
}

.recording-advertise__box::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), transparent);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.recording-advertise__box:hover::before {
  top: -40px;
  left: -40px;
  width: 270px;
  height: 270px;
  opacity: 0.3;
}

.recording-advertise__box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #555, #2b2b2b);
}

.recording-advertise-benefit-icon {
  color: #c7a56e;
  font-size: 30px;
  margin-right: 20px;
}

.recording-advertise-benefit-title {
  font-weight: 600;
  color: #c7a56e;
  margin-bottom: 5px;
}

.recording-advertise-benefit-text {
  font-size: 1rem;
  line-height: 1.6;
}


 
 
 /* Dark cinematic vintage theme */
 
 
 
 
 .producer-qualify-list {
  width: 100vw;
  padding: 4rem 2rem;
  box-sizing: border-box;
  background-color: #000; /* Dark background */
  position: relative;
  overflow: hidden;
 }
 
 
 .producer-qualify-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  margin: 0 auto;
 }
 
 
 .producer-qualify-title {
  text-align: center;
  margin-bottom: 3rem;
 }
 
 
 .producer-qualify-title h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #9f835a; /* Vintage gold color */
  letter-spacing: 1px;
 }
 
 
 /* Grid layout with flexible row heights */
 .producer-qualify-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-gap: 2.5rem; /* Spacing between grid items */
  align-items: start;
  position: relative;
  z-index: 2;
 }
 
 
 /* Grid item styling with frosted glass effect */
 .producer-qualify-item {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.329); /* Semi-transparent dark background */
  border-radius: 10px;
  border: 1px solid rgba(39, 39, 39, 0.15); /* Subtle light border */
  backdrop-filter: blur(5px); /* Frosted glass */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5); /* Deep shadows for depth */
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
 }
 
 
 @keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
 }
 
 
 /* Light radial glow around each item */
 .producer-qualify-item::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  z-index: 1;
  transition: all 0.5s ease;
  border-radius: 50%;
  opacity: 0.1;
 }
 
 
 .producer-qualify-item:hover::before {
  top: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  opacity: 0.2;
 }
 
 
 /* Item hover effects */
 .producer-qualify-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7); /* Larger shadow on hover */
  background: rgba(44, 44, 44, 0.95); /* Darker on hover */
 }
 
 
 /* Title inside each item */
 .producer-qualify-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #9f835a; /* Gold for titles */
 }
 
 
 /* Paragraph inside each item */
 .producer-qualify-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d8d8d8;
 }
 
 
 /* Mobile responsiveness */
 @media (max-width: 768px) {
  .producer-qualify-columns {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
 
 
  .producer-qualify-item {
    padding: 1.5rem;
  }
 
 
  .producer-qualify-title h2 {
    font-size: 2.5rem;
  }
 
 
  .producer-qualify-item h3 {
    font-size: 1.8rem;
  }
 
 
  .producer-qualify-item p {
    font-size: 1rem;
  }
 }
 
 
 
 
 
 
 /* Intro Section */

 
 /* Eligibility Section */
.student-eligibility-section {
  padding: 60px 20px; /* Ample padding for spacing */
  background-image: url('Meulo Images/young students-modified.webp'); /* Background image */
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* No repeating */
  background-attachment: fixed; /* Parallax effect */
  color: #DFD6CD; /* Softer text color for contrast */
  overflow: hidden; /* Prevent content from spilling out */
  border-radius: 12px; /* Rounded corners for modern appeal */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.291); /* Shadow for depth */
  max-width: 90%; /* Maximum width for larger screens */
  margin: 0 auto; /* Center the section */
  position: relative;
}

/* Dark overlay to create cinematic depth */
.student-eligibility-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.745); /* Darker overlay for deeper contrast */
  z-index: 1; /* Ensure overlay is beneath content */
}

/* New two-column layout */
.student-eligibility-content {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 for text, 1/3 for contact */
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.student-eligibility-text {
  text-align: left;
}

.student-eligibility-contact {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.student-eligibility-contact .contact-title {
  font-size: 1.8rem;
  color: #9f835a;
  margin-bottom: 20px;
}

.student-eligibility-contact .contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.student-eligibility-contact .chat-btn {
  width: 100%;
}

/* Ensure all content appears above the overlay */
.student-eligibility-section * {
  position: relative;
  z-index: 2; /* Maintain stacking order above the overlay */
}

/* Optional styling for headings and text within the section */
.student-eligibility-section h2 {
  font-size: 2.5rem; /* Larger size for headings */
  margin-bottom: 20px; /* Space below headings */
  text-align: left; /* Align to the left in the new layout */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Subtle shadow for emphasis */
}

.student-eligibility-section p {
  font-size: 1.2rem; /* Adjust size for readability */
  line-height: 1.6; /* Improve readability with line height */
  margin-bottom: 15px; /* Space below paragraphs */
  text-align: left; /* Align to the left */
}

 
 
 /* Title Styling */
 .student-eligibility-title {
  font-weight: bold;
  text-align: left;
  color: #9f835a; /* Vintage gold text color */
  margin-bottom: 2rem;
 }
 
 
 /* Details section styling for better readability */
 .student-eligibility-details {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: left;
  line-height: 1.7;
  color: #d8d8d8; /* Softer white for body text */
 }
 
 
 /* Privacy warning section with standout red text */
 .privacy-warning {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #d41913; /* Strong red color for emphasis */
  text-align: left;
  margin-top: 1.5rem;
  max-width: 800px;
  word-wrap: break-word;
  line-height: 1.5;
 }


 
 /* Responsive adjustments */
 @media (max-width: 768px) {
  .student-eligibility-section{
    max-width: 100%;
  }
  .student-eligibility-content {
    grid-template-columns: 1fr; /* Stack columns on mobile */
  }
   

  
  .student-eligibility-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    
  }
 
 
  .student-eligibility-details {
    font-size: 1rem;
  }
 
 
  .privacy-warning {
    font-size: 0.9rem;
  }
 }
 
 
 
 
 


 
 /* Mobile Responsiveness */
 @media (max-width: 768px) {
  .student-services-container {
      flex-direction: column-reverse; /* Reverse order on small screens */
  }
 
 
  .student-services-content,
  .student-services__list-container {
      width: 100%;
      padding: 10px;
  }
 
 
  .student-services-title {
      font-size: 2rem;
  }
 
 
  .student-services-intro {
      font-size: 1rem;
  }
 
 
  .student-services__item {
      font-size: 1rem;
  }
 }
 
 
 /* Talent Program Section */
 .student-talent-section {
  display: grid;
  place-items: center;
  padding: 60px;
  background: #000000;

 }
 
 
 .student-talent-title {
  text-align: center;
 }
 
 
 .student-talent-details {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
 }
 
 
 
 
 
 
 /* Mobile Responsiveness for screens 768px and below */
 @media (max-width: 768px) {
 
 
  /* Intro Section */
  .student-intro-section {
    padding: 20px; /* Reduced padding for mobile */
    align-items: center; /* Centered vertically for mobile */
  }
 
 
  .student-intro-title {
    margin-bottom: 0.5rem;
  }
 
 
  .student-intro-text {
    max-width: 100%; /* Ensure text fits screen */
  }
 
 
  /* Eligibility Section */
  .student-eligibility-section {
    padding: 20px; /* Reduced padding for mobile */
  }
 
 
  .student-eligibility-title {
    margin-bottom: 1rem;
  }
 
 
  .student-eligibility-details {
    max-width: 100%; /* Fit text within mobile screen */
  }
 
 
  .privacy-warning {
    font-size: clamp(0.75rem, 2vw, 1rem); /* Adjust font size for readability */
    max-width: 100%;
  }
 
 
  /* Services Section */
  .student-services-section {
    padding: 30px 10px; /* Reduced padding for better mobile layout */
  }
 
 
  .student-services-container {
    flex-direction: column; /* Stack content vertically for mobile */
  }
 
 
  .student-services-content,
  .student-services__list-container {
    width: 100%; /* Ensure full width on mobile */
    padding: 10px; /* Reduced padding */
  }
 
 
  .student-services-title {
    font-size: 2rem; /* Adjusted title size */
  }
 
 
  .student-services-intro {
    font-size: 1rem; /* Smaller text for readability */
  }
 
 
  .student-services__item {
    font-size: 1rem; /* Keep item text legible */
    padding: 15px; /* Reduce padding inside items */
    margin-bottom: 15px; /* Adjust spacing between items */
  }
 }
 
 
 /* Further adjustments for screens 480px and below */
 @media (max-width: 480px) {
 
 
  .student-intro-section {
    padding: 20px; /* Reduced padding for very small screens */
  }
 
 
  .student-eligibility-section {
    padding: 20px; /* Reduced padding */
  }
 
 
  .student-services-section {
    padding: 20px; /* Reduce padding even more */
  }
 
 
  .student-services__item {
    font-size: 0.9rem; /* Slightly smaller font for compact view */
    padding: 10px; /* Compact padding */
  }
 }

 /* Main container styling */


.translate-language-switcher {
  position: fixed; /* Keeps the button fixed */
  bottom: 20px; /* Space from the bottom */
  right: 20px; /* Space from the right */
  z-index: 1000; /* On top of other elements */
}

#translate-languageBtn {
  display: flex; /* Aligns icon and text */
  align-items: center; /* Vertical centering */
  background-color: #333; /* Dark background */
  color: #fff; /* White text */
  border: none; /* Removes border */
  border-radius: 50px; /* Rounded button */
  padding: 10px 20px; /* Padding for space */
  font-size: 16px; /* Button text size */
  cursor: pointer; /* Pointer on hover */
  transition: background-color 0.3s, transform 0.3s; /* Hover effects */
  
  /* Ensure good visibility and size on small screens */
  @media (max-width: 768px) {
    padding: 12px 24px; /* Increased padding for touch devices */
    font-size: 14px; /* Slightly smaller font size */
    bottom: 10px; /* Adjust for smaller screens */
    right: 10px; /* Adjust for smaller screens */
  }
}

#translate-languageBtn:hover {
  background-color: #555; /* Lighter background on hover */
  transform: scale(1.05); /* Grow slightly on hover */
}

.translate-globe-icon {
  width: 20px; /* Icon width */
  height: 20px; /* Icon height */
  margin-right: 8px; /* Space between icon and text */
}

.translate-dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  bottom: 60px; /* Dropdown above the button */
  right: 0; /* Right-align */
  background-color: #333; /* Same dark background */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow for depth */
  z-index: 1;

  /* Ensure dropdown doesn't overflow on smaller screens */
  @media (max-width: 768px) {
    bottom: 50px; /* Adjusted for small screens */
    width: 90vw; /* Dropdown should take up most of the screen */
    right: 5vw; /* Margin from right on small screens */
  }
}

.translate-dropdown-content button {
  background-color: #333; /* Same background */
  color: white; /* White text */
  border: none; /* No border */
  padding: 10px 20px; /* Padding */
  text-align: left; /* Left align text */
  width: 100%; /* Full width */
  cursor: pointer; /* Pointer on hover */
  transition: background-color 0.3s; /* Smooth hover */

  /* Touch-friendly adjustments */
  @media (max-width: 768px) {
    padding: 12px 20px; /* Increased padding for touch devices */
  }
}

.translate-dropdown-content button:hover {
  background-color: #555; /* Lighter background on hover */
}

#translate-dropdown.active {
  display: block; /* Show dropdown when active */
}





/* Main Slider Container */
.recent-posts-slider {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
  background-color: #000000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Slider Header */
.recent-posts-slider h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Slider Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}




/* Individual Post Style */
 .post{
  min-width: 280px;
  margin: 0 15px;
  text-align: left;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.post:hover {
  transform: scale(1.05);
}

/* Post Image */
.post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Post Title */
.post h3 {
  color: #f0f0f0;
  margin: 15px 0;
}

/* Post Description */
.post p {
  color: #cccccc;
  padding: 0 10px;
  line-height: 1.6;
}

/* Read More Button */
.post a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  color: #fff;
  background-color: #444;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.post a:hover {
  background-color: #f39c12;
}

/* Slider Navigation Controls */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button.prev:hover, button.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Mobile Friendliness */
@media (max-width: 768px) {
  .post {
    min-width: 220px;
  }

  .post img {
    height: 150px;
  }

  button.prev, button.next {
    padding: 8px;
    font-size: 18px;
  }
}



/* Main Container for Blog Post */
.blog-post {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #1c1c1c; /* Dark background */
  border-radius: 10px;
  color: #f0f0f0; /* Light text color */
  line-height: 1.7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Cinematic shadow effect */
  transition: transform 0.3s ease;
}



/* Blog Post Title */
.blog-post h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #f39c12; /* Highlighted title color */
}

/* Blog Intro */
.blog-post .intro {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  padding: 10px 15px;
  background-color: #333333;
  border-radius: 6px;
}

/* Blog Post Content */
.post-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Oswald Light", sans-serif;

  text-transform: uppercase;
  font-size: 1.8rem;
  color: #f39c12; /* Section titles color */
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
}

.post-content p {
  margin-bottom: 15px;
}

/* Pro Tips Styling */
.post-content p strong {
  display: block;
  background-color: #2d2d2d;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  border-left: 4px solid #f39c12;
  border-radius: 6px;
}

/* Conclusion Section */
.conclusion h2 {
  font-size: 2rem;
  text-align: center;
  margin-top: 30px;
  color: #f39c12;
}

.conclusion p {
  margin-top: 10px;
  text-align: justify;
}

/* Separator Style */
.separator {
  margin: 50px auto;
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #f39c12, rgba(0, 0, 0, 0));
  width: 80%;
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
  .blog-post {
    padding: 15px;
  }

  .blog-post h1 {
    font-size: 2rem;
  }

  .post-content h2 {
    font-size: 1.5rem;
  }

  .blog-post p, .post-content p, .conclusion p {
    font-size: 1rem;
  }
}


.recording-advertise {
  width: 100vw;
  background-size: cover;
  background-position: center;
  padding: 80px 0; /* Remove horizontal padding */
  display: flex;
  justify-content: center;
    align-items: center;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.recording-advertise__container {
  max-width: 100%; /* Allow container to fill the parent */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-image: url('Meulo Images/Recording Session.webp');
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.recording-advertise::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 196, 87, 0), transparent);
  z-index: 1;
  transition: all 0.8s ease;
}

.recording-advertise:hover::before {
  right: -120px;
  top: -120px;
  width: 350px;
  height: 350px;
  opacity: 0.3;
}

.recording-advertise__content {
  width: 50%;
  padding: 40px;
  color: #d8d8d8;
  z-index: 2;
  animation: slideInRight 1.2s ease both;
  display: flex;
  flex-direction: column; /* Ensure content stacks properly */
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.recording-advertise__title {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #9f835a;
  letter-spacing: 1px;
}

.recording-advertise__description {
  font-size: 1.5rem; /* Slightly larger description */
  color: #a6a6a6;
  line-height: 1.8;
  margin-bottom: 30px; /* Ensure space between description and other content */
}

.recording-advertise__list-wrapper {
  width: 50%;
  padding: 40px;
  z-index: 2;
  animation: slideInLeft 1.2s ease both;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.recording-advertise__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.recording-advertise__item {
  margin-bottom: 25px;
}

.recording-advertise__box {
  background: linear-gradient(135deg, #000000, #0f0f0f);
  padding: 30px;
  border-radius: 12px;
  font-size: 1.2rem;
  text-align: left;
  color: #e0e0e0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.recording-advertise__box::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), transparent);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.recording-advertise__box:hover::before {
  top: -40px;
  left: -40px;
  width: 270px;
  height: 270px;
  opacity: 0.3;
}

.recording-advertise__box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #555, #2b2b2b);
}

.recording-advertise-benefit-icon {
  color: #c7a56e;
  font-size: 30px;
  margin-right: 20px;
}

.recording-advertise-benefit-title {
  font-weight: 600;
  color: #c7a56e;
  margin-bottom: 5px;
}

.recording-advertise-benefit-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .recording-advertise__container{
    width:100%;
  }
  .recording-advertise__content,
  .recording-advertise__list-wrapper {
    width: 100%;
    padding: 20px;
  }

  .recording-advertise__title {
    font-size: 2.2rem;
  }

  .recording-advertise__description {
    font-size: 1.1rem;
  }

  .recording-advertise__box {
    font-size: 1rem;
  }

  .recording-advertise-btn {
    width: 100%; /* Full width on mobile */
    padding: 16px 0; /* Vertical padding for mobile */
    font-size: 1.2rem; /* Slightly larger text */
  }
}

@media (max-width: 768px) {
  .recording-advertise {
    width: 100vw; /* Ensures it covers full viewport width */
    padding: 0; /* Removes padding that may affect the width */
  }

  .recording-advertise__container {
    max-width: 100vw; /* Override 90% width */
    padding: 20px; /* Adjust padding to keep spacing */
  }

  .recording-advertise__content,
  .recording-advertise__list-wrapper {
    width: 100%; /* Full width for both content and list wrapper */
    padding: 20px;
  }


  .recording-advertise__title {
    font-size: 2.2rem;
  }

  .recording-advertise__description {
    font-size: 1.1rem;
  }

  .recording-advertise__box {
    font-size: 1rem;
  }

   .recording-advertise-btn {
    width: 100%; /* Full width on mobile */
    padding: 16px 0; /* Vertical padding for mobile */
    font-size: 1.2rem; /* Slightly larger text */
  }
}





.recording-advertise-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #9f835a; /* Gold color */
  margin-top: 20px;
  color: #F1E4E4; /* Light text color */
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  font-size: 1.1rem;
  width: 50%;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping */
}

.recording-advertise-btn:hover {
  background-color: #e0b94b; /* Lighter gold on hover */
  color: #ffffff; /* Change text color on hover */
  border: 2px solid #9f835a; /* Add border on hover */
}






.producer-pricing {



  background-size: cover;

  background-position: center;

  padding: 80px 20px; /* Ample padding for spacing */

  display: flex;

  justify-content: center; /* Center content */

  align-items: center; /* Center vertically */

  background-color: #000000; /* Dark cinematic background */

  position: relative; /* Position for absolute elements */

  overflow: hidden; /* Prevent overflow */

}



 

.producer-pricing__container {


  

  width: 85%; /* Full width */

  display: flex; /* Flexbox for layout */

  flex-wrap: wrap; /* Wrap items to the next line */
  background-image: url('Meulo Images/IMG_6786_result.webp'); /* Add your image here */

  border-radius: 12px; /* Rounded corners */

  padding: 20px; /* Padding inside container */

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Depth with shadow */

  z-index: 2; /* Ensure it appears above background elements */

}

 

 

 .producer-pricing::before {

  content: '';

  position: absolute;

  top: -150px;

  right: -150px;

  width: 300px;

  height: 300px;

  background: radial-gradient(circle, rgba(255, 196, 87, 0), transparent);

  z-index: 1;

  transition: all 0.8s ease;

 }

 

 

 .producer-pricing:hover::before {

  right: -120px;

  top: -120px;

  width: 350px;

  height: 350px;

  opacity: 0.3;

 }

 

 

 .producer-pricing__content {

  width: 50%;

  padding: 40px;

  box-sizing: border-box;

  color: #d8d8d8;

  z-index: 2;

  animation: slideInRight 1.2s ease both;

  

 }

 

 

 @keyframes slideInRight {

  0% {

    opacity: 0;

    transform: translateX(100px);

  }

  100% {

    opacity: 1;

    transform: translateX(0);

  }

 }

 

 

 .producer-pricing__title {

  font-size: 3rem;

  margin-bottom: 30px;

  font-weight: 700;

  color: #9f835a; /* Gold color */

  letter-spacing: 1px;

 }

 

 

 .producer-pricing__description {

  font-size: 1.3rem;

  color: #a6a6a6;

  line-height: 1.8;

 }

 

 

 .producer-pricing__list-wrapper {

  width: 50%;

  padding: 40px;

  box-sizing: border-box;

  z-index: 2;

  animation: slideInLeft 1.2s ease both;

 }

 

 

 @keyframes slideInLeft {

  0% {

    opacity: 0;

    transform: translateX(-100px);

  }

  100% {

    opacity: 1;

    transform: translateX(0);

  }

 }

 

 

 .producer-pricing__list {

  list-style-type: none;

  padding: 0;

  margin: 0;

 }

 

 

 .producer-pricing__item {

  margin-bottom: 25px;

 }

 

 

 .producer-pricing__box {

  background: linear-gradient(135deg, #000000, #0f0f0f); /* Dark gradient */

  padding: 30px;

  border: 1px solid rgba(0, 0, 0, 0.1);

  border-radius: 12px;

  font-size: 1.2rem;

  color: #e0e0e0;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;

  cursor: pointer;

  z-index: 2;

 }

 

 

 .producer-pricing__box::before {

  content: '';

  position: absolute;

  top: -60px;

  left: -60px;

  width: 220px;

  height: 220px;

  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), transparent);

  border-radius: 50%;

  z-index: 0;

  opacity: 0;

  transition: all 0.5s ease;

 }

 

 

 .producer-pricing__box:hover::before {

  top: -40px;

  left: -40px;

  width: 270px;

  height: 270px;

  opacity: 0.3;

 }

 

 

 .producer-pricing__box:hover {

  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);

  background: linear-gradient(135deg, #555, #2b2b2b);

 }

 

 

 .producer-pricing__box strong {

  font-weight: 600;

  color: #c7a56e; /* Faded vintage gold */

 }

 

 

 .producer-pricing__box:hover strong {

  color: #c7a56e; /* Brighter gold on hover */

 }

 

 

 @media screen and (max-width: 768px) {
  .producer-pricing__container {
      width: 100%;
      max-width: 100%;
      margin: 0; /* Remove any default margins */
      padding: 0 10px; /* Optional: Adjust padding to prevent content from touching the screen edges */
  }

  .producer-pricing__content,

  .producer-pricing__list-wrapper {

    width: 100%;

    padding: 20px;

  }

 

 

  .producer-pricing__title {

    font-size: 2.2rem;

  }

 

 

  .producer-pricing__description {

    font-size: 1.1rem;

  }

 

 

  .producer-pricing__box {

    font-size: 1rem;

  }

 }

 




 /* Mixing Process Section */
/* Mixing Process Section */









/* Responsive Design for Smaller Screens */


/* Animations */
@keyframes fadeIn {
 0% {
   opacity: 0;
   transform: translateY(20px);
 }
 100% {
   opacity: 1;
   transform: translateY(0);
 }
}


@keyframes fadeInUp {
 0% {
   opacity: 0;
   transform: translateY(50px);
 }
 100% {
   opacity: 1;
   transform: translateY(0);
 }
}






/* AUDIO PLAYLIST */

.audio-playlist-container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.audio-playlist-content {
  display: flex;
  width: 100%;
  gap: 20px;
}

/* Left side for playlist items */
.audio-playlist-left {
  display: flex;
  flex-direction: column;
  flex: 0 0 70%; /* 70% width for the left section */
  max-height: 80vh; /* Set a max height for scrolling */
  overflow-y: auto; /* Enable scrolling for long lists */
  gap: 20px;
}

.audio-playlist-item {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.audio-playlist-cover {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 6px;
}

.audio-playlist-info {
  flex-grow: 1;
}

.audio-playlist-title {
  font-size: 18px;
  color: #f2f2f2;
}

.audio-playlist-description {
  font-size: 14px;
  color: #c2c2c2;
}

.audio-playlist-play-btn {
  background-color: transparent;
  border: none;
  color: #f2f2f2;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s;
}

.audio-playlist-play-btn:hover {
  transform: scale(1.2);
}

/* Right section for "Now Playing" */
.audio-playlist-right {
  flex: 0 0 30%; /* 30% width for the right section */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-playlist-large-player {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

.audio-playlist-large-cover {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.audio-playlist-large-title {
  font-size: 22px;
  color: #f2f2f2;
  margin-bottom: 10px;
}

.audio-playlist-large-description {
  font-size: 16px;
  color: #c2c2c2;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .audio-playlist-content {
      flex-direction: column;
  }
  
  .audio-playlist-left, .audio-playlist-right {
      flex: 1 1 100%;
  }
  
  .audio-playlist-right {
      margin-top: 20px;
  }
}










.coming-soon-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Full viewport height */
  background: #000000;
  color: #DFD6CD; /* Soft light color for text */
  padding: 40px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5); /* Subtle inner shadow */
  
}

.coming-soon-container {
  text-align: center;
  max-width: 600px; /* Centered content, limited width for readability */
  padding: 40px;
  border-radius: 16px;
  background: rgb(0, 0, 0); /* Slightly transparent background */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Outer shadow for depth */
}

.coming-soon-message {
  font-size: 3em; /* Large, cinematic heading */
  font-weight: 700;
  text-transform: uppercase; /* Strong, bold presence */
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #F2EAE2; /* Slightly brighter color for contrast */
}

.coming-soon-description {
  font-size: 1.2em; /* Readable text size */
  line-height: 1.6;
  color: #DFD6CD; /* Softer tone for description */
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .coming-soon-message {
      font-size: 2.2em; /* Adjust for smaller screens */
  }
  
  .coming-soon-description {
      font-size: 1em; /* Adjust description font size for mobile */
  }
}


.audio-samples-title {
  text-align: center;
  font-size: 28px; /* Adjust size as needed */
  margin-bottom: 20px; /* Space between the title and the audio player */
}


/* SOLO COVER SECTION */

/* Parent container with a darkened background image */
.solo-cover-container {
  position: relative; /* Required for the ::after pseudo-element */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
  padding: 100px; /* Increased padding for more space */
    background-color: #000; /* Fallback color */
  color: #fff; /* White text for contrast */
  max-width: 90%; /* 90% max-width for view */
  margin: auto;
  border-radius: 12px; /* Subtle rounding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Minimal shadow */
  background-image: url('Meulo Images/3_result.webp'); /* Your background image */
  background-size: cover;
  background-position: center;
  z-index: 1; /* Ensure elements stay above the background */
  overflow: hidden; /* Ensure pseudo-element doesn't overflow */
}

.solo-cover-container:hover {
  transform: scale(1.01); /* Scale effect on hover */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.871);
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition for effects */
}


/* Dark overlay effect using ::after */
.solo-cover-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.717); /* Semi-transparent black overlay */
  z-index: -1; /* Ensure the overlay stays behind the content */
  border-radius: 12px; /* Match the parent container's border-radius */
}

/* Left Side: Title, Description, Pricing */
.solo-cover-left {
  flex: 0 0 65%; /* Adjusted width for better balance */
  padding-right: 40px; /* Increased padding for breathing room */
}

.solo-cover-title {
  font-size: 2.8rem; /* Slightly larger for better hierarchy */
  text-transform: uppercase;
  margin-bottom: 30px; /* Increased margin */
  color: #9f835a;

}

.solo-cover-description {
  font-size: 1.3rem; /* Slightly larger font */
  line-height: 1.7;
  margin-bottom: 15px;
  color: #DFD6CD;

  
}

.solo-cover-subtext {
  font-size: 1.1rem;
  margin-bottom: 40px; /* Increased margin to separate sections */
}

/* Pricing Section */
.solo-cover-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; /* Increased gap for spacing */
  margin-bottom: 40px; /* Spacing from the subtext */
}

/* Style for solo cover pricing items */
.solo-cover-price-item {
  background-color: rgba(0, 0, 0, 0.214); /* Dark transparent box */
  border: 2px solid rgba(255, 255, 255, 0.1); /* Light border for contrast */
  border-radius: 15px; /* Rounded corners */
  padding: 40px 20px; /* Internal spacing */
  width: 100%; /* Full width */
  text-align: center; /* Center text */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease; /* Smooth transitions */
  overflow: hidden; /* Ensure no overflow */
  margin-top: 50px;
}

/* Hover effect for solo cover pricing items */
.solo-cover-price-item:hover {
  background-color: rgba(66, 66, 66, 0.95); /* Darker background on hover */
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6); /* Deeper shadow on hover */
}


.solo-cover-price-title {
  font-size: 1.6rem; /* Increased for better prominence */
  margin-bottom: 10px;
  color: #9f835a;
}

.solo-cover-price-amount {
  font-size: 2rem; /* Larger price for emphasis */
  font-weight: bold;
  color: #ffffff;
}

.solo-cover-overtime {
  font-size: 1rem;
  color: #bfbfbf;
  margin-top: 20px;
  grid-column: span 2; /* Takes up full width */
  text-align: center;
  margin-top: 30px;
}

/* Right Side: Audio Player */
.solo-cover-right {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center the audio player */
  align-items: center;
  padding-left: 40px; /* Balanced padding with the left side */
}

/* Audio Player Section */
.solo-cover-audio-player-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
  padding: 15px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  color: #fff;
  margin: auto;
  margin-top: 20px; /* Adds space between player and pricing */
}

.solo-cover-audio-player-vertical:hover {
  transform: scale(1.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease; /* Smooth transitions */

}


.solo-cover-album-art-vertical {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.solo-cover-track-details-vertical {
  text-align: center;
  margin-bottom: 15px;
}

.solo-cover-track-title-vertical {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.solo-cover-artist-name-vertical {
  font-size: 1rem;
  color: #b3b3b3;
}

/* Audio Controls */
.solo-cover-audio-controls-vertical {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 15px;
}

.solo-cover-control-btn-vertical {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s ease-in-out;
}

.solo-cover-control-btn-vertical:hover {
  transform: scale(1.2);
}

.solo-cover-icon-vertical {
  width: 24px;
  height: 24px;
  fill: #F1E4E4; /* Adjust color as needed */
}

/* Progress Bar */
.solo-cover-progress-container-vertical {
  width: 100%;
  text-align: center;
}

.solo-cover-progress-bar-vertical {
  width: 100%;
  height: 8px;
  background-color: #605252;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.solo-cover-progress-fill-vertical {
  height: 100%;
  width: 0;
  transition: width 0.2s ease;
}

.solo-cover-time-vertical {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #b3b3b3;
}

/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
/* Responsive Design */
  @media (max-width: 768px) {

    .recording-advertise-btn {
      font-size: 16px;
      padding: 12px 25px; /* Add more horizontal padding to avoid squeezing */
      white-space: nowrap; /* Prevent wrapping of the button text */
    }

    /* Solo Cover Container: Make it column-based for smaller screens */
    .solo-cover-container {
        flex-direction: column; /* Stack sections vertically */
        padding: 20px; /* Reduce padding for better fit on mobile */
        max-width: 100%; /* Allow it to fit full mobile width */
    }
  
    /* Adjust Left and Right sections */
    .solo-cover-left,
    .solo-cover-right {
        flex: 1 0 100%; /* Full width for each section */
        margin-bottom: 20px; /* Add spacing between stacked sections */
        padding: 0 20px; /* Add some padding for spacing */
    }
  
    /* Pricing Section: Make pricing items stack vertically */
    .solo-cover-pricing {
        display: flex; /* Change to flex layout */
        flex-direction: column; /* Stack pricing items vertically */
        gap: 20px; /* Space between items */
        margin-bottom: 20px; /* Adjust margin to avoid overcrowding */
    }
  
    /* Adjust individual pricing item */
    .solo-cover-price-item {
        padding: 15px 10px; /* Reduce padding for mobile */
        margin: 0 auto; /* Center the price items */
        width: 90%; /* Reduce width to ensure they don’t squeeze against each other */
        display: flex; /* Enable flex for inner content alignment */
        flex-direction: column; /* Stack inner content vertically */
        align-items: center; /* Center content horizontally */
    }
  
    /* Audio player adjustments */
    .solo-cover-album-art-vertical {
        max-width: 300px; /* Adjust album art size for smaller screens */
        width: 100%; /* Full width on mobile */
        margin-bottom: 15px;
    }
  
    /* Audio player container */
    .solo-cover-audio-player-vertical {
        padding: 10px; /* Reduce padding for mobile */
        max-width: 100%; /* Ensure it takes up full width on mobile */
    }
  
    /* Control buttons adjustments */
    .solo-cover-control-btn-vertical {
        width: 28px; /* Reduce control button size for mobile */
        height: 28px;
    }
  
    /* Adjust time display font size */
    .solo-cover-time-vertical {
        font-size: 0.75rem; /* Reduce time font size for mobile */
    }
  
    /* Center and adjust button alignment */
    .solo-cover-audio-controls-vertical {
        justify-content: space-around; /* Better spacing for mobile */
    }
  
    /* Disable hover effect on mobile */
    .solo-cover-control-btn-vertical:hover {
        transform: none; /* Remove scaling for mobile */
    }
  }
  
  /* Add a specific media query for ultra-small screens (like phones under 480px) */
  @media (max-width: 480px) {
  
    /* Further reduce padding for smaller mobile devices */
    .solo-cover-container {
        padding: 10px;
    }
  
    /* Increase button size for better touch interaction */
    .solo-cover-control-btn-vertical {
        width: 44px; /* Increased for better touch area */
        height: 44px;
    }
  }
  


/* SOLO COVER SECTION END */








/* Container for header section */




/* ===================== SCROLL REVEAL FOR INTRO (WORD BY WORD) ===================== */

/* Hide the words initially using a clip-path */
.intro-header-container .letter-reveal-headline > span {
  display: inline-block; /* This is needed for transforms to work correctly */
  opacity: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, clip-path 0.8s ease;
}

/* When the container is visible, reveal each word with a stagger */
.intro-header-container.intro-visible .letter-reveal-headline > span {
  opacity: 1;
  transform: translateY(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Stagger the animation for each word */
.intro-header-container.intro-visible .letter-reveal-headline > span:nth-child(1) { transition-delay: 0.1s; }
.intro-header-container.intro-visible .letter-reveal-headline > span:nth-child(2) { transition-delay: 0.2s; }
.intro-header-container.intro-visible .letter-reveal-headline > span:nth-child(3) { transition-delay: 0.3s; }
.intro-header-container.intro-visible .letter-reveal-headline > span:nth-child(4) { transition-delay: 0.4s; }

/* Animate the paragraph after the headline */
.intro-description-section p {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s; /* 0.5s delay */
}

.intro-header-container.intro-visible .intro-description-section p {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== INTRO HEADER CONTAINER ===================== */
/* ===================== INTRO HEADER CONTAINER ===================== */
/* ===================== INTRO HEADER CONTAINER ===================== */
/* ===================== INTRO HEADER CONTAINER ===================== */

.intro-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7rem 5rem;
  margin: 0 auto;
  max-width: 1200px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* Dark overlay for contrast */
    url('Meulo Images/studio-header.webp') no-repeat center center/cover;
}

/* ✅ Left Column: Title Section */
.intro-title-section {
  flex-basis: 38%; /* Instead of 50% */
  text-align: left;
  padding-right: 2rem;
}



.intro-title-section h1 {
  /* Use clamp() to set min, preferred (12vw), and max font sizes */
  font-size: clamp(3rem, 8vw, 10rem);
  font-weight: 900;
  color: #DFD6CD; /* Restored beige-gold color */
  line-height: 1.1;
  text-align: left;
  margin-top: 10px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.1em;
  overflow-wrap: break-word; /* Break long words to prevent overflow */
  hyphens: auto; /* Allow hyphenation for better word breaking */
}

/* ✅ Right Column: Description Section */
.intro-description-section {
  flex-basis: 62%; /* Instead of 50% */
  text-align: left;
  padding: 0rem 0rem 0rem 2rem;
}

/* ✅ Subtitle (Muted for Soft Contrast) */
.intro-description-section h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #bca4a4; /* Muted gray */
  margin-bottom: 1.5rem;
}

/* ✅ Description Text (Readable with Negative Space) */
.intro-description-section p {
  font-size: 1.6rem;
  color: #bca4a4; /* Muted gray */
  line-height: 1.8;
  max-width: 90%;
  margin-bottom: 2.5rem;
  overflow-wrap: break-word; /* Break long words to prevent overflow */
  hyphens: auto; /* Allow hyphenation for better word breaking */
  text-indent: 2em; /* Add indentation for desktop */
}





/* ✅ Vignette Effect for Depth */
.intro-header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ===================== MOBILE RESPONSIVENESS ===================== */



@media screen and (max-width: 768px) {
  .intro-header-container {
    flex-direction: column; /* Stack title and description vertically */
    align-items: center; /* Center content */
    padding: 3rem 2rem;
    text-align: center; /* Center text within the container */
    border-radius: 0px;
  }

  .intro-title-section,
  .intro-description-section {
    flex-basis: 100%;
    padding: 10px;
    text-align: center; /* Ensure text is centered */
  }

  .intro-title-section {
    margin-bottom: 2rem;
    padding: 0 20px; /* Add some padding to the sides */
  }

  .intro-title-section h1 {
    font-size: 3rem; /* Reduce font size for smaller screens */
    letter-spacing: 0.05em;

  }

  .intro-description-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;

  }

  .intro-description-section h2 {
    text-align: center; /* Center the h2 */
    padding: 0 20px; /* Add horizontal padding */
  }


  .intro-description-section p {
    font-size: 1.4rem;
    max-width: 100%;
    margin: 0 auto;
  }
}






/* Video Gallery Section */
.video-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #000; /* Keeping consistency with your theme */
}

.video-section h2 {
    font-size: 2.5rem;
    font-family: "Oswald Light", sans-serif;
    text-transform: uppercase;
    color: #DFD6CD;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
}

.video-item {
    flex: 1 1 45%;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .video-gallery {
        max-width: 100%; /* Ensure it takes full width */
        padding: 0 10px; /* Adjust spacing */
    }

    .video-item {
        flex: 1 1 100%;
        width: 100%; /* Explicitly set width */
        margin-bottom: 10px; /* Add spacing */
    }
}


/* ================= CORPORATE PAGE STYLES ================= */

/* Corporate Page Main Container */
.corporate-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #000;
  color: #DFD6CD;
  text-align: center;
}

/* Corporate Page Title */
.corporate-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Section Styling */
.corporate-services-section,
.corporate-why-choose-section {
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

/* Section Titles */
.corporate-section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f1e4e4;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

/* ================= CORPORATE SERVICES SECTION ================= */

/* Services Section Container */
.corporate-services-section {
  max-width: 90%;
  margin: 40px auto;
  text-align: center;
}

/* Services Grid Layout */
.corporate-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Two per row on desktop */
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Service Category Box */
.corporate-service-category-box {
  background-color: rgba(0, 0, 0, 0.4); /* Subtle transparency */
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  overflow: hidden;
}

/* Hover Effect */
.corporate-service-category-box:hover {
  background-color: rgba(66, 66, 66, 0.95);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

/* Category Title */
.corporate-service-category-box h3 {
  font-size: 1.8rem;
  color: #9f835a; /* Warm highlight */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service List */
.corporate-service-list {
  list-style: none;
  padding: 0;
}

/* Individual Service Item */
.corporate-service-list li {
  font-size: 1.2rem;
  color: #bca4a4;
  opacity: 0.9;
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

/* Custom Bullet (✔) for Services */
.corporate-service-list li::before {
  content: "✔";
  font-size: 1.5rem;
  color: #9f835a; /* Gold accent */
  position: absolute;
  left: 0;
  top: 5px;
}


/* ===================== WHY CHOOSE US - STYLIZED SECTION ===================== */

/* ===================== WHY CHOOSE US - STYLIZED SECTION ===================== */

/* Main Section Styling */
.corporate-why-choose-section {
  padding: 80px 0;
  text-align: center;
  color: #DFD6CD;
  background-image: url('Meulo Images/Recording Session.webp'); /* Background Image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  max-width: 95%;
  margin: 60px auto;
  overflow: hidden;
}

/* Dark Overlay */
.corporate-why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark Overlay */
  z-index: 0;
}

/* Ensure Content Stays on Top */
.corporate-why-choose-section * {
  position: relative;
  z-index: 1;
}

/* Section Title */
.corporate-why-choose-section .corporate-section-title {
  margin-bottom: 50px;
  color: #9f835a; /* Gold Accent */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2.5rem;
  font-weight: bold;
  animation: fadeInDown 1s ease both;
}

/* ✅ Grid Layout for Features */
.corporate-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* ✅ Feature Card - Glassmorphic Look */
.corporate-why-choose-item {
  background: rgba(0, 0, 0, 0.6); /* Dark transparent */
  backdrop-filter: blur(10px); /* Glass effect */
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 50px 20px;
  width: 100%;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

/* ✅ Icon Styling for Each Feature */
.corporate-why-choose-item i {
  font-size: 3rem;
  color: #9f835a; /* Gold accent */
  display: block;
  margin-bottom: 15px;
}

/* ✅ Title inside Each Box */
.corporate-why-choose-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #DFD6CD;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ✅ Text inside Each Box */
.corporate-why-choose-item p {
  font-size: 1.2rem;
  color: #bca4a4;
  line-height: 1.6;
}

/* ✅ Hover Effects */
.corporate-why-choose-item:hover {
  background: rgba(30, 30, 30, 0.9); /* Slightly brighter on hover */
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* ✅ Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply animation to each card */
.corporate-why-choose-item {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Delay animation for each item */
.corporate-why-choose-item:nth-child(1) { animation-delay: 0.2s; }
.corporate-why-choose-item:nth-child(2) { animation-delay: 0.4s; }
.corporate-why-choose-item:nth-child(3) { animation-delay: 0.6s; }

/* ===================== RESPONSIVE DESIGN ===================== */



/* ================= ANIMATIONS ================= */

@keyframes fadeInDown {
  0% {
      opacity: 0;
      transform: translateY(-20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 768px) {
  
  .corporate-title {
      font-size: 2.5rem;
  }

  .corporate-section-title {
      font-size: 1.8rem;
  }

  .corporate-services-grid {
    grid-template-columns: 1fr; /* Stacks services in one column on mobile */
}

.corporate-service-category-box {
    padding: 30px 20px;
}

.corporate-service-list li {
    font-size: 1.1rem;
}

  .corporate-container {
      padding: 40px 15px;
  }

  .corporate-why-choose-section {
    padding: 60px 20px;
    max-width: 100%;
}

.corporate-why-choose-grid {
    grid-template-columns: 1fr; /* Stacks items in one column on mobile */
}

.corporate-why-choose-item {
    padding: 40px 20px;
}
}




/* ===================== STUDIO RENTAL SECTION ===================== */

.studio-rental-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #000;
  color: #DFD6CD;
  text-align: center;
}

/* ===================== HEADINGS ===================== */
.studio-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.studio-subtitle {
  font-size: 1.4rem;
  color: #bca4a4;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.studio-section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #9f835a; /* Golden highlight */
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ===================== STUDIO PRICING - MATCHES .recording-pricing ===================== */




/* ===================== SERVICES LIST ===================== */
.studio-service-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.studio-service-list li {
  font-size: 1.3rem;
  color: #bca4a4;
  padding: 12px 0;
  position: relative;
  padding-left: 35px;
}

/* Custom Bullet for Services */
.studio-service-list li::before {
  content: "✔";
  font-size: 1.5rem;
  color: #9f835a;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ===================== AMENITIES GRID ===================== */
.studio-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive */
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.studio-amenity-item {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 35px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.studio-amenity-item:hover {
  background-color: rgba(66, 66, 66, 0.95);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.studio-amenity-item h3 {
  font-size: 1.6rem;
  color: #9f835a;
  margin-bottom: 10px;
}

.studio-amenity-item p {
  font-size: 1.2rem;
  color: #e3e3e3;
}



/* ===================== RESPONSIVE DESIGN ===================== */
@media screen and (max-width: 768px)  {
  .studio-rental-section{
    max-width: 100%;
  }
  .studio-title {
      font-size: 2.5rem;
  }

  .studio-subtitle {
      font-size: 1.2rem;
  }

  .studio-section-title {
      font-size: 1.8rem;
  }

  .studio-amenities-grid {
      grid-template-columns: 1fr; /* Stacks pricing & amenities on mobile */
  }

  .studio-amenity-item {
      padding: 30px 20px;
  }

  .studio-service-list li {
      font-size: 1.2rem;
  }


}


/* ===================== STUDIO TRANSPORTATION SECTION ===================== */
:root {
  --primary-bg: #000;
  --primary-text: #DFD6CD;
  --accent: #9f835a;
  --muted: #bca4a4;
}

/* Studio Transportation Section */
.studio-transportation {
  max-width: 1200px;
  margin: 80px auto;
  padding: 70px 30px;
  background-color: var(--primary-bg);
  color: var(--primary-text);
  text-align: center;
  border-radius: 8px;
}

/* Section Title */
.studio-section-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Description Text */
.studio-transport-description {
  font-size: 1.6rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Grid Layout for Transport Items */
.studio-transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Transport Item Card */
.studio-transport-item {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.studio-transport-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

/* Transport Item Headings */
.studio-transport-item h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Transport Prices */
.transport-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-text);
}
.transport-roundtrip {
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 0.5rem;
}


/* Responsive Design */
@media (max-width: 768px) {
  .studio-transportation {
    padding: 50px 15px;
    max-width: 100%;
  }
  
  .studio-section-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .studio-transport-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .studio-transport-grid {
    grid-template-columns: 1fr;
  }
  
  .studio-transport-item {
    padding: 2rem;
  }
  
 
}



/* Container for both sections */
.studio-services {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 3rem 2rem;
  display: grid;
  gap: 3rem;
}

/* Grid layout for the two service sections */
/* Define Color Variables for Consistency */
:root {
  --bg-color: #000;
  --card-bg: rgba(0, 0, 0, 0.85);
  --text-color: #DFD6CD;
  --accent-color: #9f835a;
  --muted-text: #bca4a4;
}

/* Studio Services Section – A sleek, spacious container */
.studio-services {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 4rem 2rem;
  background: var(--bg-color);
}

/* Grid Container for the Two Service Boxes */
.services-container {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Section Titles – Bold, uppercase, and golden */
.services-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Service List Styling */
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-list li {
  position: relative;
  font-size: 1.6rem;
  color: var(--text-color);
  padding-left: 3rem;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.services-list li::before {
  content: "\2713";  /* Unicode check mark */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent-color);
}
.services-list li:hover {
  transform: translateX(8px);
  opacity: 0.95;
}

/* Service Boxes – Dark, translucent cards with subtle hover lift */
.included-services,
.additional-services {
  background: var(--card-bg);
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.included-services:hover,
.additional-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

/* Note Styling for Additional Services – Subtle and italic */
.additional-services .note {
  display: block;
  font-size: 1.4rem;
  color: var(--muted-text);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .services-list li {
    font-size: 1.4rem;
    padding-left: 2.5rem;
    margin-bottom: 1.4rem;
  }
  .additional-services .note {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .intro-header-container {
    padding-left: 5rem;
    padding-right: 2rem; /* Reduce right padding on desktop */
  }
}

/* Mobile-specific paragraph styling */
@media (max-width: 768px) {
    .intro-description-section p {
        text-indent: 0; /* Remove indentation on mobile */
        hyphens: none; /* Disable hyphenation on mobile */
        text-align: left; /* Ensure text is left-aligned */
    }
}


/* Announcement Section */


 /* Announcement Section - Refined Styling */
 .announcement-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  background-color: #a1521a; /* A standout color, like burnt orange */
  color: #ffffff;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
 }
 
 .announcement-section p {
  margin: 0 auto;
  padding: 0;
  font-family: "Aleo Regular", serif;
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 900px; /* Constrain width for better readability on large screens */
  color: #DFD6CD; /* Ensure high contrast */
  opacity: 0.9; /* Slightly reduced opacity for a softer look */
  margin: 0;
  padding: 0;
  font-family: "Oswald Light", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 900px; /* Constrain width for better readability on large screens */
 }

 /* Student-specific announcement */
 .student-announcement {
  background-color: #a1521a; /* A standout color, like burnt orange */
  color: #ffffff;
 }
 
 /* Mobile optimization for announcement banners */
 @media (max-width: 768px) {
  .announcement-section {
    padding: 20px 15px; /* Reduce padding on smaller screens */
  }

  .announcement-section p {
    font-size: 1.2rem; /* Slightly smaller font for mobile */
    line-height: 1.5; /* Adjust line height for better readability */
  }
 }



  /* Masonry Grid Layout */
