* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333333;
}

h1, h2, h3, p, li {
  color: #333333;
}

header {
  background-color: #dddddd;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.logo{
    transition: all 0.3s ease;
}

.logo:hover {
    scale: 1.2;
    cursor: pointer;
}

nav {
  display: flex;
  gap: 30px;
}

/* Base navigation styles */
nav a, .nav1 .nav-links a {
  text-decoration: none;
  color: #007c0a;
  font-size: 1.3rem;
  position: relative;
  transition: color 0.3s ease;
  margin: 0 15px;
}

.nav1 .nav-links a {
  font-size: 1.1rem;
  color: #007c0a;
}

/* Animated underline for all nav links */
nav a::after, .nav1 .nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #007c0a;
  transition: width 0.3s ease;
}

/* Hover effects */
nav a:hover, .nav1 .nav-links a:hover {
  color: #006408;
  text-decoration: none;
}

nav a:hover::after, .nav1 .nav-links a:hover::after {
  width: 100%;
}

.header-buttons, .secondarygetquote{
  display: flex;
  gap: 10px;       
}

.secondarygetquote{
  justify-content: center; /* Center buttons horizontally */
  align-items: center;     /* Optional: center vertically if parent has height */
  gap: 20px;               /* Space between buttons */
  flex-wrap: wrap; 
}

.header-buttons button, .secondarygetquote button {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.secondarygetquote button{
  font-size: 1.5rem;
  margin-top: 30px;
  border-radius: 50px;
  padding: 10px 50px;
}

.btn-quote {
  background: transparent;
  border: 2px solid #007c0a;
  color: #007c0a;
}

.btn-quote:hover {
  border: 2px solid #006408;
  background: #006408;
  color: #fff;
  transform: scale(1.05);
}

.btn-free {
  border: none;
  background: #007c0a;
  color: #fff;
}

.btn-free:hover {
  background: #006408;
  color: #fff;
  transform: scale(1.05);
}

.carousel {
  position: relative;
  width: 95%;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  margin-top: 50px;
  aspect-ratio: 16/4.9;
  background: #000;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ⬅️ Important: Fit the entire image without cutting */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
  /* Desktop Nav */
  .nav1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }
  
  .nav1 .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav1 .nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .nav1 .nav-links a:hover{
    color: #007c0a; /* Bright green on hover (keep your accent color) */
    text-decoration: none;
    text-underline-offset: 10px;
  }
  
  /* Mobile Nav */
  .nav2 {
    display: none;
    margin-top: -10px;
    margin-left: -25px;
    padding: 10px 20px;
    background: #dddddd;
  }
  
  #menu-btn {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Sidebar (hidden by default) */
  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  }
  
  .sidebar a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.4rem;
    color: #333;
    display: block;
  }
  
  .sidebar a#close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
  }
  
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 124, 10, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.3s ease;
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.carousel-button:hover {
  background: #007c0a;
}

  .intro {
      margin: auto;
      max-width: 50%;
      text-align: center;
      margin-top: 100px;
      padding: 0 20px;
  }
  
  .intro h1, .how-it-works h1{
    font-size: 2.5rem;
    color: #007c0a;
    margin-bottom: 20px;
  }
  
  .intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
  }

  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 70px auto;
    padding: 0 20px;
    max-width: 1200px;
    justify-items: center;
  }
  
  .service {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
  
  .service img {
    width: 100px;
    object-fit: contain;
    margin-bottom: 20px;
  }
  
  .service h3 {
    font-size: 1.1rem;
    color: #333333;
  }


  .selection-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 70px auto;
    margin-top: -50px;
    padding: 0 20px;
    max-width: 1200px;
    scale: 0.8;
  }

  .selection-space {
    margin: auto;
    width: 100%;
    aspect-ratio: 2 / 1.2; /* Width is 2 parts, height is 1 part (50% of width) */
    background: rgb(211, 255, 215);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px dashed #007c0a;
    transition: all 0.3s ease;
  }

  .selection-space:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.322);
  }

  .selection-panel h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
  }

  .selection-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    height: 96%;
  }

  .selection-buttons button {
    margin-top: 1%;
    width: 45%;
    font-size: 3rem;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(145deg, #e6f4ea, #c9ebd1); /* soft light green gradient */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #007c0a;
    font-weight: 600;
    border: 1px solid #007c0a;
    padding: 15px 20px;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .selection-buttons button .subtext {
    display: block;
    font-size: 1.2rem;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.5); /* lighter text */
  }

  /* Hover effect */
  .selection-buttons button:hover {
    background: linear-gradient(145deg, #d2f0db, #b3e2c2); /* slightly darker soft green */
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* Click/Active effect */
  .selection-buttons button:active {
    transform: translateY(0px);
    background: linear-gradient(145deg, #b7dfc3, #9fd9b2); /* pressed soft green */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  #portrait-edit-panel{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }
  
  #portrait-edit-panel .panel{
    margin: auto;
    border-radius: 12px;
    width: 30%;
    aspect-ratio: 1 / 1; /* Width is 2 parts, height is 1 part (50% of width) */
    background-color: #00000028;
    border: 1px solid #007c0a;
    transition: all 0.3s ease;
  }

  .description{
    border-radius: 12px;
    width: 96%;
    height: 40%;
    margin: auto;
    background-color: #00000028;
  }

  .upload-photo {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start; /* Align multiple rows to the top */
    overflow-y: auto;
    padding: 10px;
    gap: 5px; /* Optional: tighter spacing */
  }
  

  .upload-photo.dragging {
    outline: 2px solid #00ffea;
    background-color: #83fff9;
  }

  .upload-photo.focused {
    outline: 2px solid #0066ff;
    background-color: #e6f0ff;
  }
  
  .upload-photo.panel::-webkit-scrollbar {
    width: 8px;
  }
  
  .upload-photo.panel::-webkit-scrollbar-thumb {
    background-color: rgba(0, 141, 24, 0.267);
    border-radius: 4px;
  }
  
  #uploaded-img {
    animation: pulse 1.5s infinite ease-in-out;
  }

  #uploaded-img:hover{
    animation: none;
  }
  
  .uploaded-img {
    border-radius: 10px;
    width: 45%;
    aspect-ratio: 1 / 1;
    object-fit: scale-down;
    transition: all 0.3s ease;
  }

  .uploaded-img:hover{
    cursor: pointer;
    scale: 1.02;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.322);
    animation: none;
  }
  
  .select{
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite ease-in-out;
  }

  .select:hover{
    cursor: pointer;
    scale: 1.05;
    animation: none;
  }

  .description{
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #inputdesc {
    width: 74%;
    height: 90%;
    resize: none;
    border: 1px dashed #ccc;
    padding: 10px;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
  }

  #upload-reference{
    object-fit: scale-down;
    border-radius: 12px;
    margin-left: 8px;
    width: 23%;
    height: 90%;
    transition: all 0.3s ease;
  }
  
  #upload-reference.drag-over {
    outline: 2px solid #00eeff;
    opacity: 0.8;
  }  

  #upload-reference:hover{
    cursor: pointer;
    scale: 1.05;
  }
  
/* Outfit Gallery Fullscreen Panel */
.outfit-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4fdf5e7;
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

/* Outfit Header */
.outfit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #007c0a;
  position: relative;
  background: #dddddd;
}

.outfit-header h2 {
  margin: 0 auto;
  font-size: 1.8rem;
  color: #007c0a;
}

/* Close Button */
.close-outfit {
  position: absolute;
  left: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #007c0a;
}

/* Category Buttons (Desktop) */
.outfit-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.outfit-categories button {
  background: #e6f3e6;
  color: #007c0a;
  border: 1px dashed #007c0a;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.outfit-categories button:hover {
  background: #c9e8c9;
}

/* Outfit Images */
.outfit-content {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  align-content: flex-start;
  gap: 5px;
  padding: 20px;
  background: #f4fdf5e7;
}

.outfit-img {
  width: 300px;
  aspect-ratio: 5/5;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  object-fit: scale-down;
  border: 1px solid #007c0a;
}

/* Backgrounds Images */
.background-content {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  align-content: flex-start;
  gap: 10px;
  background: #f4fdf5e7;
}

.background-img {
  width: 300px;
  aspect-ratio: 5/5;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  object-fit: scale-down;
  border: 1px solid #007c0a;
}

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

#hamburger {
  display: none;
  font-size: 0.9rem;
  cursor: pointer;
  background: #007c0a;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

#backgroundHamburger {
  display: none;
  font-size: 0.9rem;
  cursor: pointer;
  background: #007c0a;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.outfit-categories button, 
.background-categories button,
.OutfitCategoryBtn,
.BGCategoryBtn {
  background: #e6f3e6;
  color: #007c0a;
  border: 1px dashed #007c0a;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.outfit-categories button:hover, 
.background-categories button:hover,
.OutfitCategoryBtn:hover,
.BGCategoryBtn:hover {
  background: #c9e8c9;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 124, 10, 0.1);
}

.side-panel {
  display: none;
}

/* Background Gallery Panel */
.background-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4fdf5e7;
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.background-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #007c0a;
  position: relative;
  background: #dddddd;
}

.background-header h2 {
  margin: 0 auto;
  font-size: 1.8rem;
  color: #007c0a;
}

.close-background {
  position: absolute;
  left: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: #007c0a;
  cursor: pointer;
}

#backgroundSidePanel {
  display: none;
}

.background-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.background-categories button {
  background: #e6f3e6;
  color: #007c0a;
  border: 1px dashed #007c0a;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.background-categories button:hover {
  background: #c9e8c9;
}

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

.quoteHeader {
  position: relative;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  height: 100px;
  background-color: #007c0a;
  display: flex;
  align-items: center;
  overflow: hidden;
  animation: backgroundFade 4s ease-in-out infinite alternate;
  transition: background-color 0.3s ease;
}

.quoteHeader:hover {
  background-color: #006408;
}

/* Circle pulse effect inside */
.quoteHeader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: circleFade 2s infinite ease-out;
  pointer-events: none;
}

@keyframes circleFade {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  70% {
    width: 100%;
    height: 1000%;
    opacity: 0.1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}


.quoteHeader h2{
  font-size: 2.5rem;
  color: #ffffff;
  margin: auto;
}

#submitbtn{
  padding:15px;
  width: 300px;
  margin-bottom: 20px;
  border-radius: 50px;
  background-color: #007c0a;
  font-size: 1.5rem;
  color: white;
  border: none;
  animation: pulse 1.5s infinite ease-in-out;
  cursor: pointer;
  transition: all 0.3s ease;
}

#submitbtn:hover{
  scale: 1.05;
  animation: none;
}

.how-it-works{
  background-color: #dddddd;
  padding: 40px 20px;
  text-align: center;
}

.how-it-works p, li{
  margin-top: 10px;
  list-style-position: inside;
}

.how-it-works h1 {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
    font-size: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 70px auto;
  padding: 0 20px;
  max-width: 1200px;
  justify-items: center;
}

.step {
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.step img {
  width: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.1rem;
  color: #333333;
}

@keyframes scaleLoop {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

#assistMeBtn {
  height: 70px;
  width: 400px;
  margin-top: -70px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: #FF8800;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  animation: scaleLoop 2s ease-in-out infinite;
  transition: background 0.3s ease;
}

#assistMeBtn:hover {
  background: #ff9419;
  animation: none;
  transform: translateX(-50%) scale(1.02);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
    gap: 20px;
  }

  .step {
    max-width: 250px;
  }
}

@media (max-width: 600px) {

  #assistMeBtn {
    height: 50px;
    width: 250px;
    margin-top: -50px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #FF8800;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    animation: scaleLoop 2s ease-in-out infinite;
    transition: background 0.3s ease;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .step {
    max-width: 200px;
  }

  .step img {
    width: 80px;
  }

  .step h3 {
    font-size: 0.9rem;
  }
}

.how-description{
  margin: auto;
  max-width: 50%;
  padding: 20px;
  text-align: left;
}

.how-description p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.how-description ol {
  padding-left: 2em;
  margin-bottom: 20px;
}

.how-description li {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: left;
  padding-left: .2em;
  text-indent: -1em;
  color: #444444;
}

.how-description strong {
  color: #444444;
  font-weight: 700;
}

/* Section Services */

.photo-editing-section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.main-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #007c0a;
}

.photo-editing-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid #ccc;
}

/* Text Column */
.text-column {
  flex: 1;
  text-align: left;
}

.text-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.text-column ul {
  list-style-position: outside;
  list-style-type: disc;
  font-size: 1rem;
}

.text-column li {
  position: relative;  
  padding-left: 0em; /* Create space for bullet */
  text-indent: -1.4em; /* Pull first line back so all lines align */
  margin-bottom: 0.8em;
}

.text-column li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #007c0a; /* bullet color */
  font-size: 1.2em;
  line-height: 1;
}

/* Image Column */
.image-column {
  flex: 1;
  text-align: center;
}

.image-column img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.btn-group {
  margin-top: 1rem;
}

.btn-group button {
  padding: 0.5rem 1.2rem;
  margin: 0 0.5rem;
  border: none;
  background-color: #444;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.btn-group button:hover {
  background-color: #222;
}

.rate-table {
  width: 50%;
  max-width: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  margin: auto;
}

.table-wrapper {
  width: 50%;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

th:first-child,
td:first-child {
  width: 60%;
  text-align: left;
}

th:last-child,
td:last-child {
  width: 40%;
  text-align: left;
}


.order-count-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

#orderCount {
  transition: all 0.3s ease-in-out;
}

.live-order-section-panel {
  width: 100%;
  background: #dddddd;
  margin-top: 50px;
}

.live-order-section {
  display: flex;
  justify-content: center;  /* Centers items horizontally */
  align-items: center;      /* Centers items vertically */
  padding: 40px;
  align-items: center;
  width: 55%;
  margin: auto;
}

.left-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.big-number {
  font-size: 60px;
  font-weight: bold;
  display: block;
  text-align: center;
  color: #007c0a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cross-divided {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;  /* Reduced the gap between grid items */
  width: 100%;
  height: 100%;
  position: relative;  /* Added to position the lines */
  justify-items: center;  /* Center content horizontally */
  align-items: center;   /* Center content vertically */
}

.top-left, .top-right, .bottom-left, .bottom-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cross-divided::before, .cross-divided::after {
  content: '';
  position: absolute;
  background-color: #d4d4d4; /* Cross line color */
}

.cross-divided::before {
  width: 100%;
  height: 2px;  /* Horizontal line */
  top: 50%;  /* Center the horizontal line */
  left: 0;
}

.cross-divided::after {
  height: 100%;
  width: 2px;  /* Vertical line */
  left: 50%;  /* Center the vertical line */
  top: 0;
}

.top-left, .top-right, .bottom-left, .bottom-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.big-number {
  color: #007c0a;
}

/*live counts */
.left-column {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cross-divided {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 100%;
}

.top-left, .top-right, .bottom-left, .bottom-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.experience-number {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.experience-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-left: 15px;
}

.big-number {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  color: #007c0a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.expNum{
  font-size: 250px;
  font-weight: bold;
  text-align: center;
  color: #007c0a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Remove gradient class */
.gradient {
  color: #007c0a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text {
  font-size: 16px;
  text-align: center;
}

.get-in-touch-btn {
  border-radius: 25px;
  padding: 10px 20px;
  background-color: #007c0a;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.get-in-touch-btn:hover {
  background-color: #006408;
}

.left-column, .right-column {
  width:50%; /* Adjust width to make them more centered */
}

.about-us-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  max-width: 1000px;
  margin: auto;
}

.about-content {
  text-align: center;
  margin-bottom: 40px;
}

.about-content h2 {
  font-size: 36px;
  color: #007c0a;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.timeline {
  border-left: 3px solid #007c0a;
  padding-left: 50px; /* Increased from 30px to 50px */
  position: relative;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px; /* Adjusted from -14px to -26px to align with new padding */
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: #007c0a;
  border-radius: 50%;
  border: 3px solid #fff;
}

.year {
  font-size: 20px;
  font-weight: bold;
  color: #007c0a;
}

.desc {
  font-size: 16px;
  color: #444;
  margin-top: 5px;
}

.footer {
  background-color: #dddddd;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 50%;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-left h3 {
  margin-bottom: 10px;
  color: #007c0a;
}

.footer-left input,
.footer-left textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #007c0a;
  border-radius: 4px;
  background: #ffffff;
}

.footer-left input:focus,
.footer-left textarea:focus {
  outline: none;
  border-color: #007c0a;
  box-shadow: 0 0 0 2px rgba(0, 124, 10, 0.1);
}

.footer-left button {
  background: #007c0a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-left button:hover {
  background: #006408;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 10, 0.2);
}

.footer-right {
  flex: 1 1 200px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  color: #007c0a;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right a:hover {
  text-decoration: underline;
}

.reviews-container {
  max-width: 1000px;
  margin: 50px auto;
  background: rgb(211, 255, 215);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #007c0a;
  box-shadow: 0 4px 15px rgba(0, 124, 10, 0.1);
}

.reviews-container h2, 
.reviews-container h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #007c0a;
  font-size: 2rem;
}

.reviews-container h3 {
  font-size: 1.5rem;
  color: #007c0a;
  margin-top: 40px;
}

/* Form Styling */
#review-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  background: rgb(211, 255, 215);
  border-radius: 12px;
  border: 2px dashed #007c0a;
  box-shadow: 0 2px 10px rgba(0, 124, 10, 0.08);
}

#review-form input,
#review-form select,
#review-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px dashed #007c0a;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

#review-form input:focus,
#review-form select:focus,
#review-form textarea:focus {
  outline: none;
  border-color: #007c0a;
  box-shadow: 0 0 0 2px rgba(0, 124, 10, 0.1);
}

#review-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23007c0a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

#review-form textarea {
  resize: vertical;
  min-height: 120px;
}

#review-form button {
  background: #007c0a;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#review-form button:hover {
  background: #006408;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 10, 0.2);
}

#review-form button:active {
  transform: translateY(0);
}

/* Star Rating Styling */
#stars {
  color: #007c0a;
}

.quotation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.quotation-modal .totalPrice{
  margin-top: 30px;
  font-size: 22px;
  background-color:#e2e2e2;
  padding: 12px;
  width: 120%;
}

.quotation-modal.hidden {
  display: none;
}

.quotation-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: hidden;
  max-height: 80vh; /* Limit the height of the modal */

}

.quotation-content h2 {
  margin-top: -30px;
  color: #ffffff;
  background-color: #007c0a;
  text-align: center;
  font-size: 25px;
  margin-bottom: 25px;
  font-weight: 700;
  padding: 15px 25px;
  width: 120%;
}

.quotation-content label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.quotation-content input{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Make checkboxes bigger and align label text properly */
.options-list label {
  display: flex;
  align-items: flex-start;         /* Align checkbox to the top */
  gap: 12px;                       /* Space between checkbox and text */
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #333;
}

.options-list input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;                /* Nudge checkbox down slightly */
  flex-shrink: 0;
}

.price-display,
.quotation-content p {
  margin-top: 15px;
  font-size: 15px;
  color: #2c3e50;
  font-weight: bold;
  text-align: center;
}

.quotation-content button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
  width: 48%; /* Adjusted width to fit both buttons side by side */
}

#confirmOptions,
#finalSubmitBtn {
  background: #007c0a;
  color: white;
}

#confirmOptions:hover,
#finalSubmitBtn:hover {
  background: #00610a;
}

#cancelModalBtn {
  background: #ccc;
  color: #333;
}

#cancelModalBtn:hover {
  background: #bbb;
}

/* Flexbox to arrange buttons horizontally */
.quotation-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* default: left-align everything */
}

.quotation-content h2,
.quotation-content .totalPrice {
  align-self: center; /* override to center only these two */
}

.quotation-content button {
  margin: 10px 5px; /* Add margin between the buttons */
  margin-top: 20px;
  margin-bottom: -10px;
}

.button-container {
  display: flex;
  justify-content: space-between;
  width: 100%; /* Use 100% width to make buttons take up space evenly */
}

/* GENERAL MODAL BACKDROP */
.quotation-modal,
.policy-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  margin: 0 !important; /* Prevents any margin glitch */
  padding: 0 !important;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}


/* HIDE BY DEFAULT */
.hidden {
  display: none;
}

/* MODAL CONTENT BOX */
.quotation-modal .quotation-content,
.policy-modal .policy-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* SPECIFIC SCOPING */
.quotation-modal label,
.policy-modal label {
  display: block;
  margin-bottom: 8px;
}

.quotation-modal .note,
.policy-modal .note {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 10px;
  display: block;
}

.quotation-modal .totalPrice {
  margin-top: 15px;
}

.quotation-modal,
.policy-modal .policy-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.policy-buttons button{
  padding: 10px 20px;
  width: 100%;
  border-radius: 12px;
}

/* BUTTON SCOPING */
.modal-button {
  all: unset; /* Clear any inherited button styles */
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  display: inline-block;
}

.policy-modal h3{
  font-size: 1.5rem;
  color: #007c0a;
}

ul {
  padding-left: 0.2em;
  list-style-position: outside;
  margin-bottom: 15px;
}

ul li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.checkbox-label {
  display: inline-block;  /* Makes the label behave like an inline element but allows block properties */
  line-height: 1.4;  /* Ensures good line height */
  width: 100%;  /* Allow it to use full available space */
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  vertical-align: top; /* Ensures the checkbox aligns with the top of the text */
  margin-top: 3px; /* Adjusts the checkbox alignment */
  flex-shrink: 0;
  
}

#reviewBtn{
  border: none;
  color: white;
  background-color: #007bff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#reviewBtn:hover{
  background-color: #2d93ff;
}

#proceedToPayment{
  border: none;
  color: white;
  background-color: #007c0a;
  cursor: pointer;
  transition: all 0.3s ease;
}

#proceedToPayment:hover{
  background-color: #20b32c;
}

#proceedToPayment:disabled{
  cursor: default;
  background-color: white;
  color: gray;
  border: 1px solid grey;
}

/* Payment Modal */
#paymentModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#paymentModal h2 {
  background-color: #007c0a;
  color: white;
  font-size: 1.5rem;
  padding: 20px;
  margin: -2rem -2rem 1rem -2rem; /* counter the .payment-content padding */
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#paymentModal img{
  width: 300px;
  height: 350px;
  object-fit: scale-down;
}

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

.payment-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.payment-content h2,
.payment-content h3 {
  margin-bottom: 1rem;
}

.qr-nav {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}

.qr-nav button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.proof-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.proof-actions button {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
}

#proofPreview {
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.qr-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.qr-container img {
  width: 300px;
  height: 350px;
  object-fit: scale-down;
  z-index: 1;
}

.qr-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 124, 10, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

#prevQR {
  left: -20px;
}

#nextQR {
  right: -20px;
}

#uploadProofBtn{
  margin-bottom: -20px;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#uploadProofBtn:hover{
  background-color: #007bffc9;
}

.proof-actions {
  display: flex;
  width: 100%;
  gap: 10px; /* Optional, adds spacing between buttons */
  margin-top: 1rem;
}

.proof-actions button {
  flex: 1; /* This makes the buttons stretch to cover all available space */
  padding: 0.8rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.confirm {
  background-color: #28a745; /* Green */
  color: white;
}

.cancel {
  background-color: #dc3545; /* Red */
  color: white;
}

.proof-actions button:hover {
  opacity: 0.8;
}

.qr-container {
  position: relative; /* Make it a positioning context for buttons */
  text-align: center;
}

#qrImage {
  max-width: 100%;
  height: auto;
}

#prevQR, #nextQR {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007c0a69;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s ease;
}

#prevQR {
  left: 10px;
}

#nextQR {
  right: 10px;
}

/* Download Button above QR image */
#downloadQR {
  position: absolute;
  top: 85%; /* Adjust this value to position the button above the QR */
  left: 50%;
  transform: translateX(-50%);
  background-color: #00000075;
  color: white;
  font-size: 0.8rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  z-index: 10; /* Ensure it's above the image */
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50%;
}

#downloadQR:hover {
  background-color: #006600;
}

.proof-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.proof-actions button {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
}

.upload-container {
  margin-top: 1.5rem;
}

#loadingScreen {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
}

.loader-container {
  text-align: center;
}

.loader {
  border: 0px solid #f3f3f3;
  border-top: 10px solid #007c0a;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite;
  margin: auto;
  margin-bottom: 50px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loadingScreen p {
  font-size: 16px;
  color: #007c0a;
  font-weight: bold;
}

.chatsup{
  position: fixed;
  left: 100%;
  top: 100%;
  transform: translate(-110%, -105%);
}

#chatsup{
  transition: all 0.3s ease;
  cursor: pointer;
}

#chatsup:hover{ 
  scale: 1.05;
}

.chatsup img{
  width: 80px;
}

.message-popup {
  position: fixed;
  display: inline-flex; /* Changed from flex to inline-flex */
  flex-direction: column;
  bottom: 100%;
  margin-right: 35px;
  right: 0;
  background-color: #f1f1f1;
  color: rgb(41, 41, 41);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  white-space: pre-wrap; /* Ensures that \n works */
  word-wrap: break-word; /* Allows text to break and wrap */
  min-width: 200px;  /* Maximum width */
  width: auto;  /* Let the content decide the width up to max-width */
  z-index: 100;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.message-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.message-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #f1f1f1 transparent transparent transparent;
}


/* Style for the red dot */
.live-chat-indicator {
  position: absolute;
  bottom: 20px;  /* Positioning the dot near the bottom left */
  left: 20px;    /* Adjust left position to be near the left edge */
  width: 5px;
  height: 5px;
  background-color: red;
  border-radius: 50%; /* Circle shape */
  animation: blink 3s infinite; /* Blinking effect */
  z-index: 200; /* Ensure it's above other content */
}

/* Blinking animation */
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.chat-box {
  position: fixed;
  left: 100%;
  top: 100%;
  width: 380px;
  height: 600px;
  background-color: #f5f5f5;
  padding: 0;
  transform: translate(-105%, -102%);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.chat-box.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-105%, -102%);
}

.chat-box.hidden {
  transform: translate(0%, -102%);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 500px) {  
  
  .chat-box {
    scale: 0.8;
    transform: translate(-115%, -115%);
  }
  
  .chat-box.visible {
    transform: translate(-115%, -115%);
  }
  
  .chat-box.hidden {
    transform: translate(0%, -115%);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #007c0a;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  flex-shrink: 0;
}

.chat-header h3, .chat-header p{
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: white;
}

.chat-header p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.chat-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #ffffff;
  flex-shrink: 0;
  border-top: 1px solid #ccc;
}

.chat-inputs button {
  font-size: 20px;
  background: none;
  border: none;
  color: #007c0a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-inputs button:hover{
  color: #1f992a;
}

#sendMessage{
  background-color: #007c0a;
  color: white;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
}

#sendMessage:hover{
  background-color: #1f992a;
}

#chatInput {
  flex: 1;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}

#chatInput:focus {
  border-color: #007c0a;
  box-shadow: 0 0 0 2px rgba(0, 124, 10, 0.1);
}

.lang-note {
  font-size: 0.75em;
  font-weight: normal;
  opacity: 0.8;
}

#addImageMessage{
  width: 35px;
  cursor: pointer;
}

.chats {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: white;
  padding: 10px;
  overflow-y: auto;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  gap: 6px;
}

/* Wrapper for alignment */
.chromations-message {
  display: flex;
  justify-content: flex-start;
}

.customer-message {
  display: flex;
  justify-content: flex-end;
}

/* Common message styles */
.message {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 15px;
  word-break: break-word;
  max-width: 70%;
}

/* Chromations messages */
.from-chromations {
  background-color: #007c0a;
  color: white;
}

/* Customer messages */
.from-customer {
  background-color: #f1f1f1;
  color: black;
}

/* Image message */
.image-message {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  margin-top: 5px;
}

.image-message {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  margin-top: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
  object-fit: scale-down;
}

.image-message:hover {
  transform: scale(1.02);
}

/* FAQ Panel with Animation */
.FAQs {
  position: fixed;
  bottom: 20px;
  left: 15px;
  width: 350px;
  height: 300px;
  background-color: #f4fdf5e7;
  border: 1px solid #008d1a;
  border-radius: 10px;
  padding: 16px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.082);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-y: auto;
  transform-origin: bottom left;
  transform: scale(0);
  transition: all 0.5s ease;
  z-index: 20;
  display: block !important;
}

.FAQs.open {
  transform: scale(1);
  bottom: 40px;
}

/* Panel Heading */
.FAQs h4 {
  color: #007c0a;
  margin-bottom: 12px;
  font-size: 1.2em;
}

/* FAQ Button Style - Smooth with thin border */
.faq-button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  background-color: #e8f9ec;
  border: 1px solid #aadfb4;
  border-radius: 6px;
  color: #007c0a;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Hover Effect */
.faq-button:hover {
  background-color: #d1f2dc;
  border-color: #8edda2;
  color: #005d08;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 124, 10, 0.1);
}

.review {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.review.fade-out {
  opacity: 0;
}

/* style.css */

.gallery-panel {
  width: 50%;
  height: 600px;
  border: solid 1px rgb(199, 199, 199);
  border-radius: 12px;
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px;
  gap: 10px;
  overflow-y: auto;
}

.gallery-panel img {
  width: 48%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-panel img:hover {
  transform: scale(1.02);
}

#examples{
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.scrolltoprice{
  cursor: pointer;
}

@media (max-width: 500px) {  
  .chat-box {
    scale: 0.8;
    transform: translate(-115%, -115%);
  }
}

@media (max-width: 1700px) {  
  .live-order-section h3{
    font-size: 1rem;
  }  
  .experience-text p{
    font-size: 0.6rem;
  }
  .big-number{
    font-size: 2rem;
  }
}

/* MOBILE - when screen width is below 900px */
@media (max-width: 1200px) {
  .live-order-section{
    scale: 1;
    width: 90%;
  }
  .steps, .services, .how-description{
    max-width: 80%;
  }

  .secondarygetquote{
    padding: 0px;
    gap: 50px;
  }

  .secondarygetquote button{
    padding: 10px 20px;
    font-size: 1.2rem;
  }
  
  .rate-table {
    width: 90%;
  }

  .live-order-section {
    display: flex;
    justify-content: center;  /* Centers items horizontally */
    align-items: center;      /* Centers items vertically */
    padding: 40px;
    scale: 1;
    align-items: center;
  }
}


@media(max-width: 900px){/* style.css */

  .gallery-panel {
    width: 90%;
    height: 600px;
    border: solid 1px rgb(199, 199, 199);
    border-radius: 12px;
    margin: auto;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    overflow-y: auto;
  }

  .gallery-panel img {
    width: 48%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .gallery-panel img:hover {
    transform: scale(1.02);
  }

  .carousel {
    aspect-ratio: 16/12.8; /* Mobile aspect ratio */
  }
  .photo-editing-container {
    padding: 0px;
    flex-direction: column;
    align-items: center;
  }

  .image-column {
    order: 1;
    margin-bottom: 0px;
  }

  .text-column {
    order: 2;
    text-align: left;
  }

  .text-column ul {
    padding-left: 1rem;
    text-align: left;
    display: inline-block;
  }
}

  /* MOBILE - when screen width is below 900px */
@media (max-width: 1100px) {

  .footer-left{
    height: 20%;
  }

  .footer-container {
    flex-direction: column;
    max-width: 90%;
  }

  .live-order-section-panel {
    width: 100%;
    height: 60vh;
    background: #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45vh; /* Ensures background fills full screen height */
  }

  .big-number{
    font-size: 2rem;
  }

  .experience-container h3{
    font-size: 1rem;
  }

  .experience-container p{
    font-size: 0.7rem;
  }

  .experience-text{
    margin-left: 20px;
  }

  .live-order-section {
    margin-top: -50px;
    display: grid;
    justify-content: space-between;
    align-items: stretch; /* Ensures columns stretch to fill the available height */
    padding: 40px;
    height: 20vh; /* Ensure the container takes full viewport height */
  }
  
  .left-column, .right-column {
    width: 100%; /* Adjust width of columns */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  
  .intro {
    margin: auto;
    max-width: 90%;
  }
    .services, .steps, .how-description {
      max-width: 95%;
    }


  .how-description{
    padding: 0px;
  }

    .outfit-content img {
      width: 320px;
      aspect-ratio: 5/5;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      object-fit: scale-down;
    }

    .background-content img {
      width: 320px;
      aspect-ratio: 5/5;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      object-fit: scale-down;
    }

    .intro h1, .how-it-works h1{
        font-size: 1.8rem;
        color: #222222;
        margin-bottom: 20px;
    }
    
    .intro p {
        font-size: 1rem;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .service img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
    }
    
    .service h3 {
        font-size: 1rem;
        color: #333;
    }
      
    .selection-buttons button {
      font-size: 2rem;
    }

    
    .background-categories {
      display: none;
    }

    #backgroundHamburger {
      display: block;
      font-size: 1.8rem;
      cursor: pointer;
      background: none;
      border: none;
      color: #007c0a;
      position: absolute;
      right: 20px;
    }

    #backgroundSidePanel {
      position: absolute;
      top: 60px;
      right: 0;
      background: #f5fff5;
      width: 100%;
      display: none;
      flex-direction: column;
      padding: 15px;
      z-index: 10;
    }

    #backgroundSidePanel button {
      margin-bottom: 10px;
      background: #e6f3e6;
      color: #007c0a;
      border: 1px dashed #007c0a;
      padding: 10px;
      border-radius: 8px;
      width: 100%;
    }

    .quoteHeader {
      width: 100%;
      height: 80px;
    }

    .quoteHeader h2{
      font-size: 1.8rem;
      color: #ffffff;
      margin: auto;
    }
}

/* Hide Desktop Nav and Show Mobile Nav on Small Screens */
@media (max-width: 1100px) {
  .nav1, .logo {
    display: none;
  }

  .nav2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .outfit-categories {
    display: none;
  }

  #hamburger {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #007c0a;
    position: absolute;
    right: 20px;
  }

  #sidePanel {
    position: absolute;
    top: 60px;
    right: 0;
    background: #f5fff5;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 15px;
    z-index: 10;
  }

  #sidePanel button {
    margin-bottom: 10px;
    background: #e6f3e6;
    color: #007c0a;
    border: 1px dashed #007c0a;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
  }

  .step{
    width: 100%;
    margin: auto;
    margin-top: 20px;
  }
  
  .how-description{
    margin: auto;
    width: 80%;
  }  

}

@media (max-width: 700px) {
  
  .email-modal-content {
    transform: translateY(-50%);
  }

  #reviews-list {
    grid-template-columns: 1fr;
  }

  .live-order-section {
    transform: scale(1); /* 80% of original size */
    width: 100%;
  }  

  /* Background Gallery Panel */
  .how-it-works {
    margin-top: -150px;
  }

  .how-it-works .how-description{
    width: 95%;
  }

  .selection-panel {
    margin-top: -50px;
    scale: 0.9;
  }

  .selection-buttons button {
    margin-top: 2%;
    width: 48%;
    font-size: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(145deg, #e6f4ea, #c9ebd1); /* soft light green gradient */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #007c0a;
    font-weight: 600;
    border: 1px solid #007c0a;
    padding: 15px 20px;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite ease-in-out;
  }

  .selection-buttons button .subtext {
    display: block;
    font-size: 0.8rem;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.5); /* lighter text */
  }

  #portrait-edit-panel .panel{
    width: 96%;
  }

  .selection-space{
    aspect-ratio: 1/4.3;
  }

  #portrait-edit-panel{
    gap: 15px;
    padding: 15px;
  }

  .description{
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    width: 96%;
    height: 33%;
    margin: auto;
    background-color: #00000028;
  }

  #inputdesc {
    width: 96%;
    height: 35%;
    resize: none;
    border: 1px dashed #ccc;
    padding: 10px;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    margin: auto;
  }

  #upload-reference{
    object-fit: scale-down;
    border-radius: 12px;
    margin-left: 8px;
    width: 96%;
    height: 60%;
    transition: all 0.3s ease;
  }
  
  .upload-photo {
    gap: 20px;
  }
    
  .services {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap:0px;
    margin-top: 10px;
  }
  
  .service {
    width: 45%;
    margin: auto;
    margin-top: 20px;
  }
  
  .service img {
      width: 90px;
      height: 90px;
      object-fit: contain;
      margin-bottom: 20px;
      margin-top: 20px;
  }
  
  .service h3 {
      font-size: 0.8rem;
      color: #333;
      margin: auto;
      margin-top: -10px;
  }
    


  header {
    height: 60px;
  }

  .header-buttons button, .secondarygetquote{
    font-size: 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  #menu-btn {
    font-size: 1.6rem;
  }
  
  .intro {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
  }

  .intro h1, .how-it-works h1{
    font-size: 1.5rem;
    color: #222222;
    margin-bottom: 20px;
  }

  .intro p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
  }

  .quoteHeader {
    width: 100%;
    height: 80px;
  }

  .quoteHeader h2{
    font-size: 1.5rem;
    color: #ffffff;
    margin: auto;
  }

  .how-it-works{
    margin-top: 0px;
  }

  .steps {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 70px auto;
    padding: 0 0px;
  }

  .steps img{
    width: 80px;
  }

  .step{
    width: 45%;
  }

  .steps h3{
    font-size: 1rem;
  }
  .secondarygetquote{
    width: 100%;
    gap: 10px;
  }

  .secondarygetquote button{
    font-size: .8rem;
    padding: 10px 25px;
    margin-top: 25px;
  }

  .photo-editing-section img{
    width: 100%;
  }

  .photo-editing-section h2{
    font-size: 1.5rem;
  }

  .get-in-touch-btn {
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #007c0a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
}

@media (max-width: 375px){
  
  .live-order-section-panel {
    width: 100%;
    background: #dddddd;
    margin-top: 50px;
  }

}

#examples {
  margin: 50px auto 30px;
  text-align: center;
  font-size: 2.5rem;
  color: #007c0a;
}

.gallery-panel {
  width: 80%;
  max-width: 1200px;
  min-height: 400px;
  border: 1px solid rgba(0, 124, 10, 0.3);
  border-radius: 15px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 25px;
  background: #f9fff9;
  box-shadow: 0 4px 15px rgba(0, 124, 10, 0.1);
  transition: all 0.3s ease;
}

.gallery-panel:hover {
  border-color: #007c0a;
  box-shadow: 0 6px 20px rgba(0, 124, 10, 0.15);
}

.gallery-panel img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 124, 10, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-panel img:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #007c0a;
  box-shadow: 0 8px 20px rgba(0, 124, 10, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .gallery-panel {
    width: 90%;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 900px) {
  #examples {
    font-size: 2rem;
  }
  
  .gallery-panel {
    width: 95%;
    padding: 15px;
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-panel img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  #examples {
    font-size: 1.8rem;
    margin: 30px auto 20px;
  }

  .gallery-panel {
    padding: 10px;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .gallery-panel img {
    height: 200px;
  }
}

#reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review {
  display: flex;
  gap: 15px;
  background: #dddddd;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #007c0a;
  box-shadow: 0 2px 8px rgba(0, 124, 10, 0.05);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 10, 0.1);
}

.avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007c0a;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 124, 10, 0.2);
  transition: transform 0.3s ease;
}

.review-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #007c0a;
  margin-bottom: 5px;
}

.review-stars {
  color: #007c0a;
  margin: 5px 0;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  color: #333;
  line-height: 1.5;
  margin-top: 8px;
}

/* Show More Button */
#show-more-btn {
  background: #007c0a;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin: 20px auto;
  display: block;
  transition: all 0.3s ease;
}

#show-more-btn:hover {
  background: #006408;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 10, 0.2);
}

#show-more-btn:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
    gap: 20px;
  }

  .service {
    max-width: 250px;
  }
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service {
    max-width: 200px;
  }

  .service img {
    width: 80px;
  }

  .service h3 {
    font-size: 0.9rem;
  }
}

#reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review {
  display: flex;
  gap: 15px;
  background: #dddddd;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #007c0a;
  box-shadow: 0 2px 8px rgba(0, 124, 10, 0.05);
  transition: all 0.3s ease;
}

@media (max-width: 700px) {
  #reviews-list {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .review {
    padding: 15px;
    gap: 10px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .review-name {
    font-size: 1rem;
  }

  .review-stars {
    font-size: 1.1rem;
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  #review-form {
    padding: 15px;
  }

  #review-form input,
  #review-form select,
  #review-form textarea {
    padding: 10px;
    font-size: 14px;
  }

  #review-form button {
    padding: 12px;
    font-size: 14px;
  }
}

.policy-content h3 {
  text-align: center;
  margin-bottom: 30px;
}

/* Email Modal Styles */
.email-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

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

.email-modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.email-modal-content h3 {
  color: #007c0a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.email-modal-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.email-modal-content input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.email-modal-content input:focus {
  outline: none;
  border-color: #007c0a;
  box-shadow: 0 0 0 2px rgba(0, 124, 10, 0.1);
}

.email-modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.email-modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#saveEmailBtn {
  background: #007c0a;
  color: white;
}

#saveEmailBtn:hover {
  background: #006408;
  transform: translateY(-2px);
}

#cancelEmailBtn {
  background: #f1f1f1;
  color: #333;
}

#cancelEmailBtn:hover {
  background: #e1e1e1;
  transform: translateY(-2px);
}