/* Space Planning Section */
.space-planning-banner {
    background-image: url('/UBIQUE/Image/lighting.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    margin-top: 0px; /* Space below header */
  }
  
  .space-planning-banner .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .space-planning-banner .content {
    color: white;
    text-align: center;
  }
  
  .space-planning-banner h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  
  .space-planning-banner .breadcrumb {
    font-size: 14px;
    color: #fff;
  }
  
  .space-planning-banner .breadcrumb a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
  }

   /* * ////Service Section */ */

   .b1 {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
  }
  
  .planning-container {
    display: flex;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .sidebar {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .sidebar-item {
    margin-top: 10px;
    background: #ddd;
    padding: 12px 16px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 300px;
    margin-right: 20px;
  }
  
  .sidebar-item.active {
    background: #1c1c1c;
    color: #fff;
    font-weight: bold;
  }
  
  .sidebar-item:hover {
    background-color: black;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .content {
    padding-left: 150px;
    flex: 1;
  }
  
  .content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
  }
  
  .content p {
    margin-bottom: 16px;
    line-height: 1.7;
    word-spacing: 3px;
  }
  
  .highlight {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .highlight-blue {
    color: #007bff;
    font-weight: bold;
  }
  
  .quote-btn {
    margin-top: 20px;
    background-color: #ff9800;
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .quote-btn:hover {
    background-color: #e67e00;
  }



  /* option section */
  

.options-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
}

.option-item {
  padding: 15px 25px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  min-width: 160px;
}

.option-item:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #007BFF;
  color: #007BFF;
}

/* ///office and home */



.space-planning {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
    align-items: flex-start;
    background-color: #f9f9f9;
  }
  
  .image-container {
    flex: 1;
    min-width: 300px;
    word-spacing: 3px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .text-container {
    flex: 1;
    min-width: 300px;
  }
  
  .text-container h2 {
    font-size: 24px;
    color: #111;
    margin-bottom: 10px;
  }
  
  .text-container h3 {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .text-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .highlight {
    color: #007BFF;
    font-weight: bold;
  }
  
  
  
  
  .space-planning-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 50px;
    gap: 30px;
    background-color: #f9f9f9;
  }
  
  .text-column {
    flex: 1;
    padding-right: 20px;
  }
  
  .text-column h1 {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
  }
  
  .text-column p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .text-column a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .text-column a:hover {
    text-decoration: underline;
  }
  
  .image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .why-best-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  .why-best-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2b2b2b;
  }
  
  .why-best-section .intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .best-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .feature-box {
    background: #1e1e1e;
    color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    position: relative;
  }
  
  .feature-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .feature-box p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .footer-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }


  .landscape-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .landscape-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 40px;
  }
  
  .landscape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .landscape-box {
    background: #1e1e1e;
    color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    position: relative;
  }
  
  .landscape-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .landscape-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .landscape-box p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .landscape-footer {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }


  .lighting-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .lighting-section h2 {
    font-size: 24px;
    color: #2a2a2a;
    margin-bottom: 10px;
  }
  
  .lighting-section .subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
  }
  
  .lighting-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .lighting-box {
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
  }
  
  .lighting-box h3 {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
  }
  
  .lighting-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }


  .room-size-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .room-size-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .room-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
  
  .room-image {
    flex: 1;
    min-width: 300px;
    padding: 10px;
  }
  
  .room-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }
  
  .room-text h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .room-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  
  .lighting-style-section {
    padding: 40px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  .lighting-style-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .subheading {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .style-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .style-card {
    border: 1px solid #ddd;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    background-color: #fafafa;
  }
  
  .style-card h3 {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
  }
  
  .style-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
  }
  
  .brightness-heading {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .brightness-info {
    font-size: 13px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .why-choose-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .why-choose-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #222;
  }
  
  .intro-text,
  .closing-text {
    max-width: 1000px;
    margin: 0 auto 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  
  .intro-text a {
    color: #007acc;
    text-decoration: underline;
  }
  
  .features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .feature-card {
    background: url('your-background-image.jpg') center center/cover no-repeat;
    background-color: #1e1e1e;
    color: #fff;
    width: 300px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: left;
  }
  
  .feature-card .icon {
    font-size: 24px;
    margin-bottom: 10px;
    margin-left: 130px;
  }
  
  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  
  
  /* ///Consult to export */


.cta-section {
    background-color: #f8f8f8;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  
  
  }
  
  .cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-text h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px;
  }
  
  .cta-text p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }
  
  .cta-button {
    background-color: #f58220;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e57000;
  }


  .faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
  }
  
  .faq-icon {
    font-weight: bold;
    font-size: 20px;
    color: #555;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 14px;
    color: #444;
  }
  
  .faq-answer p {
    padding: 0 0 15px;
  }
  
  