@font-face {
  font-family: 'WhisperingSignature';
  src: url('WhisperingSignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'GranTurismo';
  src: url('Gran Turismo W00 Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'RushDriver-Italic';
  src: url('RushDriver-Italic.otf') format('otf');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'rawhide_raw_2012';
  src: url('rawhide_raw_2012.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* --- RESET --- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: fill;
  flex: -2;
}


body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #171717 0%, #1a1a1a 100%);
  color: #eee;
  overflow-x: hidden;
  line-height: 1.7;
}

/* --- SIDEBAR --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(8px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 5px 0 15px rgba(0,0,0,0.6);
  z-index: 1000;
}

.logo {
  width: 160px;
  margin-bottom: 40px;
}

.nav {
  display: flex;
  flex-direction: column;
}

.nav a, .dropbtn {
  color: #eee;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0;
  background: none;
  border: none;
  padding: 10px;
  text-align: left;
  transition: 0.3s;
  border-radius: 6px;
}

.nav a:hover, .dropbtn:hover {
  background-color: #222;
  color: #6f00ff;
}


/* --- DROPDOWN --- */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 65%;
  background: #171717;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  min-width: 270px;
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn 0.4s ease forwards;
  margin-left: 10px;
}

.dropdown-content a {
  padding: 12px 18px;
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
}

.dropdown-content a:hover {
  background: #202020;
  color: #6f00ff;
}

.dropdown:hover .dropdown-content {
  display: flex;
}


/* --- SOCIAL ICONS --- */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 5px;
}

/* --- MAIN CONTENT --- */
.main-content {
  margin-left: 250px;
  padding: 60px 30px;
  animation: fadeIn 1s ease;
}

#content {
  min-height: 80vh;
  padding-left: 15px;
}

/* --- PAGE TITLES --- */
.page-title {
  font-size: 3rem;
  color: #6f00ff;
  text-align: center;
  margin-bottom: 30px;
  text-align: top center;
}

/* --- WORK BUTTONS (NEW) --- */
.work-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.work-buttons a {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #6f00ff, #6f00ff);
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.work-buttons a:hover {
  background: linear-gradient(90deg, #6f00ff, #6f00ff);
  transform: scale(1.05);
}

/* --- BUTTONS --- */
.btn-center {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #6f00ff, #6f00ff);
  color: rgb(255, 255, 255);
  font-weight: bold;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn:hover {
  background: linear-gradient(90deg, #6f00ff, #6f00ff);
  transform: scale(1.05);
}

/* --- SERVICE SECTIONS --- */
.service-section {
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.service-section h2 {
  color: #00aaff;
  margin-bottom: 10px;
}

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

.gallery-title {
  font-size: 3rem;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-title .highlight {
  color: #00aaff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.gallery-item {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-item p {
  margin-top: 10px;
  color: #ccc;
}

.gallery-item:hover {
  transform: translateY(-5px);
  background-color: #222;
}

/* --- CONTACT SECTION --- */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #6f00ff;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-form {
  background: #171717;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
}

.form-group input {
  flex: 1;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  background: #222;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
}

.contact-form button.btn {
  margin-top: 20px;
  width: 100%;
}

/* --- PRICING SECTION --- */
.pricing-section {
  margin-top: 60px;
  padding: 20px;
}

.pricing-title {
  font-size: 2rem;
  color: #00aaff;
  margin-top: 40px;
  margin-bottom: 10px;
}

.pricing-table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
  padding: 15px;
  border-bottom: 1px solid #171717;
}

.pricing-table th {
  background: #171717;
  color: #00aaff;
}

.pricing-table td {
  background: #1a1a1a;
}

/* --- FOOTER --- */
.footer {
  background: #171717;
  padding: 60px 20px;
  text-align: center;
}

.footer h4 {
  color: #6f00ff;
  margin-bottom: 20px;
}

.footer p {
  color: #aaa;
  margin: 5px 0;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .main-content {
    margin-left: 0;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
/* --- HERO SECTION --- */
/* Fullscreen Hero Section */
.hero-full {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text centered on image */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 1rem;
}

.hero-overlay h1 {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
}

.hero-overlay p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px #000;
}


/* --- SECTION SEPARATOR --- */
.separator {
  height: 100px;
  background: #171717;
}

/* --- WORK SECTION --- */
.work-section {
  text-align: center;
  padding: 60px 20px;
  align-items: center;
  justify-content: center;
}
.section-title {
  font-size: 2.8rem;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
}

/* --- Transparent Button --- */
.btn-transparent {
  display: inline-block;
  margin: 10px;
  padding: 15px 40px;
  border: 2px solid #6f00ff;
  background: transparent;
  color: #6f00ff;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: 0.4s;
  text-decoration: none;
}
.btn-transparent:hover {
  background: #6f00ff;
  color: black;
}

/* --- MISSION SECTION --- */
.mission-section {
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mission-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.mission-text {
  flex: 1;
}
.mission-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-form {
  background: #202020;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- FORM INPUTS --- */
.contact-form input,
.contact-form textarea {
  padding: 15px;
  background: #222;
  color: white;
  border: none;
  border-radius: 8px;
}

/* --- FOOTER --- */
.footer {
  background: #171717;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}


/* --- SECTION SEPARATOR --- */
.separator {
  width: 100%;
  height: 50px;
  background: #000000;
}

/* --- WORK SECTION --- */
.work-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* --- Buttons Transparent Style --- */
.btn-center {
  margin-top: 20px;
}

.btn-transparent {
  background: transparent;
  border: 2px solid #6f00ff;
  color: #6f00ff;
  font-size: 1.2rem;
  padding: 12px 30px;
  margin: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.4s;
}

.btn-transparent:hover {
  background: #6f00ff;
  color: #171717;
}

/* --- MISSION SECTION --- */
.mission-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mission-text {
  flex: 1;
  min-width: 300px;
}

.mission-img {
  flex: 1;
  min-width: 300px;
}

.mission-img img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .mission-img img {
    width: 100vw;       
    max-width: none;   
    height: auto;       
  }
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-wrapper {
  margin-top: 20px;
  display: revert-layer;
  justify-content: center;
}

.contact-form {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  background: #171717;
  border: none;
  color: white;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 15px;
}

/* --- FOOTER --- */
.footer {
  background: #171717;
  padding: 20px;
  color: #aaa;
  text-align: center;
  font-size: 0.9rem;
}
/* Special Gold Buttons for Home OUR WORK */
.btn-gold {
  display: inline-block;
  margin: 10px;
  padding: 15px 40px;
  background: linear-gradient(90deg, #6f00ff, #6f00ff);
  color: rgb(255, 255, 255);
  font-weight: bold;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(90deg, #6f00ff, #6f00ff);
  transform: scale(1.05);
}

/* Separator */
.separator {
  height: 60px;
}
/* --- HOME PAGE ONLY CENTERING --- */
.home-page .hero-text,
.home-page .work-section,
.home-page .mission-section,
.home-page .contact-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-page .work-buttons,
.home-page .btn-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-page .mission-content {
  flex-direction: column;
}

.home-page .mission-text, 
.home-page .mission-img {
  text-align: center;
  max-width: 700px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Hero Section Fixes */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.3); /* Darkens the image for better text visibility */
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-43%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 5;
}

.hero-text h1 {
  
  font-family: 'GranTurismo', sans-serif;
  font-weight: 1200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(226, 226, 226);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 12px;
  font-style: italic;
  font-size: 100px;
}


.hero-text p {
  font-family: "GranTurismo";
  font-size: 2.9rem;
  font-weight: 900000;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 7px rgb(0, 0, 0);
  font-style: italic;
  font-weight: bolder;
}

/* Dark overlay to enhance text visibility */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3); /* Darker overlay for better text visibility */
  z-index: 1;
}


  
  .hero-text p {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }
}

/* Main content adjustment */
.main-content {
  position: relative;
  margin-left: 230px;
  padding: 0;
  z-index: 1;
}

/* Push content sections down to appear after hero */
.content-sections {
  background: linear-gradient(180deg, #171717 0%, #1a1a1a 100%);
  padding: 60px 30px;
}

/* Adjust sidebar to appear on top of hero */
.sidebar {
  z-index: 10;
}

/* Small screen adjustments */
@media (max-width: 1285px) {
  .main-content {
    margin-left: 0;
  }
}
.custom-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 4px 4px;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  text-align: center;
  background-color: #111;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  padding-bottom: 30px;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
  filter: opacity(0.9);
}

.image-container:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: center;
  top: 10px;
  left: 10px;
  color: rgba(0, 0, 0, 0);
  padding: 5px 12px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
}

.service-card h2 {
  margin: 20px 0 10px;
  font-size: 24px;
}

.service-card p {
  padding: 0 20px;
  line-height: 1.6;
  font-size: 16px;
}

.service-card .btn {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: #e50914;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s;
  display: inline-block;
}

.service-card .btn:hover {
  background-color: #ff3535;
}
/* --- MISSION SECTION --- */
.mission-section {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust as needed */
  overflow: hidden;
}

.mission-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}

.mission-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 80%;
  max-width: 800px;
  background: rgba(23, 23, 23, 0);
  padding: 40px;
  border-radius: 12px;
}

.mission-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d418f5;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bolder;
}

.mission-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mission-text {
    width: 90%;
    padding: 20px;
  }
  
  .mission-text h2 {
    font-size: 2rem;
  }
  
  .mission-text p {
    font-size: 1rem;
  }
}
/* --- ABOUT PAGE STYLES --- */
.about-page {
  padding: 60px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.neon-title-container {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.neon-title {
  font-family: 'GranTurismo', sans-serif;
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px #6f00ff;
  text-shadow: 0 0 15px rgba(111, 0, 255, 0.7);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.neon-highlight {
  color: #6f00ff;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 20px #6f00ff, 0 0 40px #6f00ff;
}

.neon-bar {
  height: 4px;
  width: 200px;
  background: linear-gradient(90deg, transparent, #6f00ff, transparent);
  margin: 0 auto;
  box-shadow: 0 0 15px #6f00ff;
}

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

.neon-card {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 0, 255, 0.3);
  transition: all 0.5s ease;
}

.neon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(111, 0, 255, 0.3);
  border-color: #6f00ff;
}

.neon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(111, 0, 255, 0.1), transparent);
  z-index: -1;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(111, 0, 255, 0.1);
  font-family: 'GranTurismo', sans-serif;
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #6f00ff;
  font-family: 'GranTurismo', sans-serif;
  letter-spacing: 2px;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.highlight {
  color: #6f00ff;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(111, 0, 255, 0.5);
}

.signature {
  text-align: right;
  margin-top: 60px;
  padding-right: 100px;
  font-family: 'WhisperingSignature', cursive;
  font-size: 2.5rem;
  color: 	#ee00ff;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .neon-title {
    font-size: 3rem;
    letter-spacing: 4px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .signature {
    padding-right: 30px;
    font-size: 2rem;
  }
}

/* Fix for sidebar gap */
.sidebar {
  margin-right: -1px; /* Eliminates potential 1px gap */
  box-shadow: 5px 0 15px rgba(0,0,0,0.6) inset; /* Add inner shadow for seamless transition */
}

.main-content {
  margin-left: 230px; /* Ensure this matches sidebar width exactly */
  width: calc(100% - 230px); /* Calculate remaining width precisely */
}

/* For about page specifically */
.about-page {
  margin-left: -15px; /* Counteracts any default padding */
  padding-left: 15px; /* Maintains internal spacing */
}

/* Ensure content sections have consistent backgrounds */
.content-sections, 
.about-page, 
.mission-section, 

/* Add these styles to your CSS file */

/* Fix for Our Work section positioning */
.mission-section {
  position: relative;
  padding: 80px 20px;
  z-index: 5;
}

/* Hero section adjustments */
.hero-full {
  position: absolute;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  margin-bottom: 10px; /* Removes gap between hero and next section */
}

/* Our Work section styling */
.work-section {
  text-align: left;
  padding: 60px 20px;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #6f00ff;
  font-family: 'GranTurismo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

/* Enhanced button styles */
.btn-gold {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #6f00ff 0%, #a100ff 100%);
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(111, 0, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(111, 0, 255, 0.6);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

/* Add a subtle divider effect */
.work-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #6f00ff, transparent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .btn-gold {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
  
  .work-buttons {
    gap: 20px;
  }
}
/* ===== GLOBAL NEON STYLING ===== */
/* Update these existing selectors in your CSS */

/* Main content container */
.main-content {
  margin-left: 230px;
  width: calc(100% - 230px);
  padding: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

/* Section titles */
.section-title, 
.page-title,
.contact h2,
.gallery-title,
.pricing-title {
  font-family: 'GranTurismo', sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px #6f00ff;
  text-shadow: 0 0 15px rgba(111, 0, 255, 0.7);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Section title highlight */
.section-title .highlight,
.page-title .highlight {
  color: #6f00ff;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 20px #6f00ff, 0 0 40px #6f00ff;
}



/* ===== BUTTON STYLES ===== */
/* Unified button styling */
.btn,
.btn-gold,
.btn-transparent,
.contact-form button,
.service-card .btn {
  display: inline-block;
  padding: 18px 45px;
  font-family: 'GranTurismo';
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  margin: 10px;
  forced-color-adjust: white;
}

/* Gold/Primary button */
.btn,
.btn-gold {
  background: linear-gradient(135deg, #6f00ff 0%, #a100ff 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(111, 0, 255, 0.4);
}

.btn:hover,
.btn-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(111, 0, 255, 0.6);
}

/* Transparent button */
.btn-transparent {
  background: transparent;
  border: 2px solid #6f00ff;
  color: #6f00ff;
}

.btn-transparent:hover {
  background: #6f00ff;
  color: white;
}

/* Button shine effect */
.btn::before,
.btn-gold::before,
.btn-transparent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before,
.btn-gold:hover::before,
.btn-transparent:hover::before {
  left: 100%;
}

/* ===== CARD STYLES ===== */
/* Unified card styling */
.service-card,
.gallery-item,
.neon-card,
.contact-form,
.pricing-table {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 0, 255, 0.3);
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover,
.gallery-item:hover,
.neon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(111, 0, 255, 0.3);
  border-color: #6f00ff;
}

/* Card glow effect */
.service-card::before,
.gallery-item::before,
.neon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(111, 0, 255, 0.1), transparent);
  z-index: -1;
}

/* ===== FORM STYLES ===== */
/* Unified form styling */
.contact-form input,
.contact-form textarea,
.form-group input {
  background: rgba(34, 34, 34, 0.8) !important;
  border: 1px solid rgba(111, 0, 255, 0.3) !important;
  color: white !important;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus {
  border-color: #6f00ff !important;
  box-shadow: 0 0 10px rgba(111, 0, 255, 0.5) !important;
  outline: none;
}

/* ===== TABLE STYLES ===== */
.pricing-table {
  border: 1px solid rgba(111, 0, 255, 0.3);
}

.pricing-table th {
  background: rgba(111, 0, 255, 0.1) !important;
  color: #6f00ff !important;
  text-shadow: 0 0 10px rgba(111, 0, 255, 0.5);
}

.pricing-table td {
  background: rgba(26, 26, 26, 0.8) !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .section-title,
  .page-title,
  .contact h2,
  .gallery-title,
  .pricing-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .btn,
  .btn-gold,
  .btn-transparent {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
  
  .service-card,
  .gallery-item,
  .neon-card {
    padding: 30px 20px;
  }
}

/* Update these styles in your CSS file */

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #6f00ff;
  font-family: 'GranTurismo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-wrapper {
  justify-content: center;
  max-width: 790px;
  margin: 0 auto;
}

.contact-form {
  background: #202020;
  padding: 50px;
  border-radius: 12px;
  width: 100%;
  max-width: 700px; /* Increased from 600px */
  display: absolute;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(111, 0, 255, 0.3);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  background: #222;
  border: 1px solid rgba(111, 0, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6f00ff;
  box-shadow: 0 0 15px rgba(111, 0, 255, 0.5);
  outline: none;
}

.contact-form button.btn {
  margin-top: 20px;
  padding: 18px;
  font-size: 1.2rem;
  width: 100%;
  background: linear-gradient(135deg, #6f00ff 0%, #a100ff 100%);
  border: none;
  transition: all 0.3s ease;
}

.contact-form button.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(111, 0, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px;
    max-width: 100%;
  }
  
  .contact-section h1 {
    font-size: 2.2rem;
  }
}
/* Commercial Services Page */
.service-page {
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.neon-card h3 {
  font-family:   'rawhide_raw_2012';
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #6f00ff;
  letter-spacing: 2px;
}

.neon-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-page {
    padding: 30px 20px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* Pricing Page Specific Styles */
.pricing-page {
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-disclaimer {
  text-align: center;
  color: #aaa;
  margin-top: 20px;
  font-size: 1.1rem;
}

.pricing-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.pricing-section {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(111, 0, 255, 0.3);
  transition: all 0.5s ease;
}

.pricing-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(111, 0, 255, 0.3);
  border-color: #6f00ff;
}

.pricing-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table th {
  background: rgba(111, 0, 255, 0.1);
  color: #6f00ff;
  text-shadow: 0 0 10px rgba(111, 0, 255, 0.5);
  padding: 15px;
  text-align: left;
  font-family: 'GranTurismo', sans-serif;
  letter-spacing: 1px;
}

.pricing-table td {
  padding: 15px;
  background: rgba(26, 26, 26, 0.8);
  border-bottom: 1px solid rgba(111, 0, 255, 0.1);
  color: #ddd;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-page {
    padding: 30px 20px;
  }
  
  .pricing-sections {
    grid-template-columns: 1fr;
  }
}
/* Pricing Page Specific Styles */
.pricing-page {
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-disclaimer {
  text-align: center;
  color: #aaa;
  margin-top: 20px;
  font-size: 1.1rem;
}

.pricing-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  align-items: stretch; /* This ensures sections stretch to same height */
}

.pricing-section {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(111, 0, 255, 0.3);
  transition: all 0.5s ease;
  flex: 1;
  min-width: 350px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

/* Table container to control height */
.pricing-table-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0;
  flex-grow: 1; /* Makes table fill available space */
}

/* Ensure all table cells have consistent padding */
.pricing-table th, 
.pricing-table td {
  padding: 15px;
  text-align: center;
  vertical-align: middle; /* Center content vertically */
}

/* Title styling */
.pricing-title {
  text-align: center;
  font-size: 2rem;
  color: #6f00ff;
  margin: 0 0 20px 0;
  font-family: 'GranTurismo', sans-serif;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px #6f00ff;
  text-shadow: 0 0 15px rgba(111, 0, 255, 0.7);
  font-size: large;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-page {
    padding: 30px 20px;
  }
  
  .pricing-section {
    min-width: 100%;
  }
}
/* Existing styles (keep your current styles) */
body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Gallery container styles */
#instagram-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

/* Style for the SnapWidget iframe */
.snapwidget-widget {
  border: 2px solid rgba(111, 0, 255, 0.7); /* Neon purple border */
  background: rgba(15, 15, 15, 0.9); /* Dark background with slight transparency */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(111, 0, 255, 0.5); /* Neon glow effect */
  overflow: hidden; /* Ensure content stays within borders */
  max-width: 960px; /* Match the iframe width */
  margin: 0 auto; /* Center the widget */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for interactivity */
.snapwidget-widget:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 0 15px rgba(111, 0, 255, 0.8); /* Enhanced glow on hover */
}

/* Ensure the iframe fills the container properly */
#instagram-gallery iframe {
  width: 100% !important; /* Override inline width for responsiveness */
  height: 629px !important; /* Override inline height */
  display: block; /* Remove any default inline spacing */
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .snapwidget-widget {
    width: 100%;
    height: auto; /* Adjust height proportionally on smaller screens */
    max-width: 100%;
  }
  #instagram-gallery iframe {
    height: 400px !important; /* Reduced height for smaller screens */
  }
}

/* Existing gallery item styles (keep if needed) */
.gallery-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(111, 0, 255, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.instagram-caption {
  color: #ddd;
  margin-top: 10px;
  font-size: 14px;
}

.instagram-caption p {
  margin: 0;
}
/* Enhanced Pricing Table Styles */
.enhanced-table {
  border: none;
  margin: 20px 0;
  width: 100%;
}

.pricing-category {
  color: #6f00ff;
  font-family: 'GranTurismo', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 15px 0 10px;
  text-align: center;
  text-shadow: 0 0 8px rgba(111, 0, 255, 0.5);
}

.service-row {
  border-bottom: 1px solid rgba(111, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.service-row:hover {
  background: rgba(111, 0, 255, 0.05);
  transform: translateX(5px);
}

.service-name {
  padding: 18px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #eee;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-price {
  padding: 18px 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #6f00ff;
  text-align: right;
}

.highlight-contact {
  color: #00aaff;
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.spacer-row {
  height: 10px;
}

/* Animation for CTA button */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 0, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(111, 0, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 0, 255, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-name, 
  .service-price {
    padding: 12px 10px;
    font-size: 1rem;
  }
  
  .pricing-category {
    font-size: 1.1rem;
  }
}
/* Booking Section Styles */
.booking-section {
  margin: 60px 0;
  padding: 0 20px;
}

.booking-calendar {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(111, 0, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  overflow: hidden;
}

.booking-calendar iframe {
  min-height: 800px; /* Adjust based on your calendar height */
  border: none;
}

/* Responsive adjustments */
@media (max-width: 1285px) {
  .booking-calendar {
    padding: 15px;
  }
  
  .booking-calendar iframe {
    min-height: 600px;
  }
}

/* Contact Iframe Container */
.contact-iframe-container {
  width: 100%;
  max-width: 1600px; / 16000px was a typo, this is more realistic /
  height: auto;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(111, 0, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; / Important to prevent overflow from padding /
}

.contact-iframe-container iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}

@media only screen and (max-width: 768px) {
  .contact-iframe-container {
    width: 150%;  / Changed to 100% to fit screen and prevent overflow /
    max-width: none;
    padding: 10px;
    margin-left: 0; / Aligns to the left edge /
    margin-right: auto; / Allows the container to align left */
    box-sizing: border-box;
  }

  .contact-iframe-container iframe {
    width: 150%;
    min-height: 700px;
    border: none;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #6f00ff;
  font-family: 'GranTurismo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-wrapper {
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.btn-center {
  text-align: center;
  margin-top: 40px;
}
/* --- FOOTER STYLES --- */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  padding: 20px;
  text-align: center;
}

.footer-column h4 {
  color: #6f00ff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 10px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(111, 0, 255, 0.3);
  text-align: center;
}

.copyright a {
  color: #6f00ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright a:hover {
  text-shadow: 0 0 10px rgba(111, 0, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1285px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    text-align: center;
  }
}
/* Update the footer positioning */
.footer {
  background: #11111100;
  padding: 60px 20px;
  margin-left: 400px; /* Increased from 250px to move it right */
  width: calc(100% - 400px); /* Adjusted to match new margin */
}

/* For mobile responsiveness */
@media (max-width: 1285px) {
  .footer {
    margin-left: 0;
    width: 100%;
    padding: 40px 15px;
  }
}

/* For mobile responsiveness */
@media (max-width: 1285px) {
  .footer-column {
    padding-left: 20px; /* Smaller padding on mobile */
  }
}

/* --- RESPONSIVE DESIGN FIXES --- */
@media only screen and (max-width: 1285px) {

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
  }

  .sidebar .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sidebar .nav a {
    margin: 10px 0;
    font-size: 18px;
    display: block;
    text-align: center;
  }

  .main-content {
    margin-left: 0 !important;
    padding: 15px;
    width: 100%;
    position: relative;
    z-index: 500;
  }

  .main-content img, 
  .hero-full-image {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .hero-full {
    position: relative;
    text-align: center;
    height: auto;
  }

  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .hero-overlay h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-overlay p {
    font-size: 16px;
    line-height: 1.4;
  }

  button, .services-button, .custom-button {
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px 0;
    width: 80%;
    max-width: 200px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .social-icons img {
    width: 40px;
    height: 40px;
  }

  body {
    font-size: 16px;
    overflow-x: hidden;
  }
}
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding: 10px;
    word-wrap: break-word;
}

.hero-overlay h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.hero-overlay p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.main-content p, .main-content h1, .main-content h2, .main-content h3 {
    word-wrap: break-word;
    max-width: 90%;
    margin: 0 auto 10px auto;
    text-align: center;
}
.hero-full {
    position: relative;
    text-align: center;
}

.hero-full-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: white;
}

.hero-overlay h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 16px;
    line-height: 1.4;
}

.services-button, .custom-button {
    font-size: 14px;
    padding: 8px 16px;
    margin: 10px 5px;
    width: auto;
    max-width: 150px;
    display: inline-block;
}
/* ================================================================================
== Responsive CSS for Mobile Devices - Add this to the end of your css.css file ==
================================================================================
*/

/* --- General Fixes for All Screen Sizes ---
  This makes layout sizing more predictable.
*/
* {
  box-sizing: border-box;
}

/* --- Mobile & Tablet Styles (926px and below) ---
  These rules will apply to phones in landscape mode and some tablets.
*/
@media screen and (max-width: 926px) {

  /* The portrait orientation lock has been removed to allow for all orientations. */

  /* --- Main Layout Overrides --- */
  /* This is the most important change. We are overriding the fixed 1920px width 
    on your main page containers and making them fill the screen.
  */
  .home-page-home-page,
  .about-us-about-us,
  .commercial-commercial,
  .custom-custom,
  .contact-contact,
  .booking-booking,
  .pricing-pricing,
  .services-services,
  .commercial-gallery-commercial-gallery,
  .custom-gallery-custom-gallery {
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling on the page body */
    position: relative !important;
    top: auto !important;
    left: auto !important;
    /* Adjust layout to make space for the new smaller sidebar */
    margin-left: 80px !important; /* Matches the new collapsed sidebar width */
    width: calc(100% - 80px) !important;
    transition: margin-left 0.3s ease; /* Smooth transition for content shift */
  }

  /* --- Header and Navigation (as a smaller, expandable sidebar) --- */
  .navbar-interactive-navbar-interactive {
    position: fixed !important; /* Fix the sidebar to the viewport */
    top: 0 !important;
    left: 0 !important;
    width: 80px !important; /* Set a "super small" width for the sidebar */
    height: 100vh !important; /* Make it full height */
    padding: 20px 15px !important; 
    flex-direction: column !important; /* Stack logo and nav links vertically */
    justify-content: flex-start !important; 
    align-items: center !important;
    gap: 25px !important;
    background: #1a1a1a; /* Add a background to prevent content showing through */
    z-index: 1000; /* Ensure sidebar is on top of other content */
    overflow-y: auto; /* Allow scrolling if nav links are too long */
    /* overflow-x: hidden; was removed to allow dropdown to appear */
    transition: width 0.3s ease; /* Add smooth transition for the hover effect */
  }

  /* On hover, expand the sidebar to reveal the navigation */
  .navbar-interactive-navbar-interactive:hover {
    width: 220px !important;
  }

  .navbar-interactive-desktop-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .navbar-interactive-nav,
  .navbar-interactive-links {
    flex-direction: column !important; /* Stack nav links vertically */
    align-items: flex-start !important; /* Align links to the left */
    gap: 20px !important; 
    width: 100% !important;
  }

  /* Style the nav links and dropdown toggle to handle text overflow */
  .navbar-interactive-links .navbar-Link,
  .navbar-interactive-dropdown-toggle {
      font-size: 1rem !important;
      padding: 5px 0 !important;
      width: 100%;
      white-space: nowrap; /* Prevent text from wrapping */
      overflow: hidden; /* Hide the overflowing text */
      text-overflow: ellipsis; /* Add "..." to overflowing text */
  }

  .navbar-interactive-burger-menu {
      display: none !important; /* Ensure the burger menu is always hidden on mobile */
  }

  /* --- Fix for the Dropdown Menu --- */
  .navbar-interactive-dropdown {
      position: relative; /* This is crucial for positioning the dropdown list */
      width: 100%;
  }

  .navbar-interactive-dropdown-list {
      position: absolute !important; /* Position relative to the dropdown toggle container */
      left: 100% !important; /* Place it to the right of the sidebar item */
      top: 0 !important; /* Align it with the top of the toggle */
      background: #2c2c2c !important; /* Give it a distinct background */
      border-radius: 6px;
      padding: 10px;
      min-width: 200px; /* Give it enough space */
      z-index: 1001 !important; /* Ensure it's on top of everything */
      /* The display is controlled by the template's JS, we just fix the positioning */
  }


  /* --- General Content Sections --- */
  /* Make all containers and columns stack vertically */
  .home-page-container,
  .about-us-container,
  .commercial-container,
  .custom-container,
  .contact-container,
  .booking-container,
  .pricing-container,
  .services-container,
  .home-page-container1,
  .about-us-container1,
  .commercial-container1,
  .custom-container1,
  .contact-container1,
  .booking-container1,
  .pricing-container1,
  .services-container1,
  .home-page-container2,
  .about-us-container2,
  .commercial-container2,
  .custom-container2,
  .contact-container2,
  .booking-container2,
  .pricing-container2,
  .services-container2 {
    width: 100% !important;
    flex-direction: column !important; /* Stack items vertically */
    align-items: center !important;
    padding: 20px !important;
    position: relative !important; /* Reset positioning */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  /* --- Text and Font Sizes --- */
  h1, .Heading {
    font-size: 2.5rem !important; /* Make headings smaller */
    text-align: center;
  }

  h2 {
    font-size: 2rem !important;
    text-align: center;
  }

  p, span, a, li, .Text, .text {
    font-size: 1rem !important; /* Adjust paragraph text */
    line-height: 1.6 !important;
  }
  
  /* --- Images and Videos --- */
  img,
  video {
    max-width: 100% !important; /* Ensure images scale down */
    height: auto !important; /* Maintain aspect ratio */
    object-fit: cover;
  }

  /* --- Buttons --- */
  .button,
  .home-page-button,
  .contact-button {
    width: 80% !important;
    max-width: 300px;
    padding: 15px !important;
    font-size: 1rem !important;
    margin: 10px 0;
  }

  /* --- Form Inputs (Contact & Booking) --- */
  .contact-form, .booking-form {
    width: 100% !important;
    padding: 10px;
  }

  .contact-textinput, .booking-textinput, .contact-textarea {
    width: 100% !important;
  }
  
  /* --- Footer --- */
  .footer-footer {
      padding: 20px;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
  }
  
  .footer-container {
      align-items: center;
  }

  .footer-links-container {
      flex-wrap: wrap;
      justify-content: center;
  }

  /* --- Specific Page Adjustments --- */
  
  /* Home Page Hero Section */
  .home-page-hero {
      padding: 20px;
      height: auto;
      flex-direction: column;
      text-align: center;
  }
  
  .home-page-text01 {
      text-align: center;
  }

  /* About Us Page */
  .about-us-banner {
      flex-direction: column;
      padding: 20px;
      text-align: center;
  }
  
  /* Pricing Page */
  .pricing-container2 {
      flex-direction: column;
      gap: 30px;
  }
  
  .pricing-pricing-card {
      width: 90%;
  }
  
  /* Gallery Pages */
  .commercial-gallery-gallery, .custom-gallery-gallery {
      padding: 10px;
  }
  
  .commercial-gallery-container1, .custom-gallery-container1,
  .commercial-gallery-container2, .custom-gallery-container2,
  .commercial-gallery-container3, .custom-gallery-container3 {
      flex-direction: column;
  }
}
.wrap-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.wrap-container img {
  width: 100%;
  height: auto;
}

.wrap-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-align: center;
}

@media only screen and (max-width: 1285px) {
  .wrap-text {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 1285px) {
  .wrap-text {
    font-size: 1.5rem;
  }
}
  @media only screen and (max-width: 1285px) {
  .social-icons {
    display: none;
  }
}
.contact-iframe-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.contact-iframe-container iframe {
 width: 100%;
  height: 500px;
  max-width: 100%;
  border: none;
  border-radius: 4px;
  display: block;
}

/* Extra responsiveness for mobile */
@media (max-width: 768px) {
  .contact-iframe-container iframe {
    height: 400px;
  } width: 300px;





  
 @media (max-width: 768px) {
  .hero-text {
    top: 10% !important; /* Move text higher on mobile */
    transform: translate(-50%, 0) !important; /* Adjust transform to maintain horizontal centering */
    padding: 0 15px;
  }
}


  .hero-text h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-text p {
    font-size: 1.2rem !important;
    line-height: 1.4;
  }
}
/* iphone */
@media (max-width: 480px) {
  .hero-text {
    top: 10% !important; /* Even higher for very small screens */
  }
  
  .hero-text h1 {
    font-size: 2rem !important;
  }
  
  .hero-text p {
    font-size: 1rem !important;
  }
