body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}







/* === TOP BAR === */
.cs-topbar {
  background-color: #f6f6f6 !important;
  font-size: 14px;
  color: #666;
  height: 50px;
  display: flex;
  align-items: center;
}

.cs-topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
}

.cs-topbar-left span {
  margin-right: 25px;
}

.cs-topbar-left span a{
color: #999;
text-decoration: none;
}

.cs-topbar-left i {
  margin-right: 6px;
  color: #999;
}

.cs-book-btn {
  background-color: #89d0d0;
  color: white;
  padding: 16px 18px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 768px) {
  .cs-topbar {
    height: auto;
    padding: 15px 0;
  }

  .cs-topbar-left {
    display: none; /* Hides the info section on mobile */
  }

  .cs-topbar-right {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
  }

  .cs-book-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 16px;
    padding: 12px;
    background-color: #89d0d0;
    color: white;
    border: none;
    display: block;
  }
}








/* === HEADER === */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 70px;
  position: relative;
  z-index: 1000;
  margin-top: 20px;
}

/* Container */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 0; /* remove left padding */
  padding-right: 20px; /* keep right padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Header wrapper - FLEX layout */
.cs-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}




.cs-logo {
  margin-right: 10px; /* flush to left */
}

.cs-logo-img {
  height: 50px;
  width: auto;
  display: block;
}


/* Navigation section */
.cs-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Nav links */
.cs-nav-link {
  color: #444;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 5px;
  transition: color 0.3s ease;
}

.cs-nav-link:hover {
  color: #89d0d0;
  text-decoration: underline;
}

/* Dropdown container */
.cs-dropdown-container {
  position: relative;
}

.cs-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  gap: 20px;
  z-index: 999;
  white-space: nowrap;
}

.cs-dropdown-container:hover .cs-dropdown {
  display: flex;
}

.cs-dropdown-item {
  width: 140px;
  text-align: center;
}

.cs-dropdown-item img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.cs-dropdown-item img:hover {
  transform: scale(1.05);
}

.cs-dropdown-item p a{
  margin-top: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
.cs-close-btn {
  display: none;
}








@media (max-width: 768px) {
  .cs-header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .cs-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    margin-left: auto;
  }

  .cs-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
  }
.cs-close-btn {
    display: block;
  }
  

  .cs-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 999;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .cs-nav.show {
    display: flex;
  }

  .cs-nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .cs-menu-toggle {
    display: flex;
  }

  .cs-nav-link {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
  }

  .cs-nav {
    flex-direction: column;
    align-items: flex-start;
  }


    .cs-dropdown {
    display: none;
    position: relative;
    background: #fff;
    flex-direction: column;
    padding: 15px 10px;
    gap: 15px;
  }
  
  .cs-dropdown-container .cs-dropdown {
    display: none;
    position: static;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

.cs-dropdown-container:hover .cs-dropdown {
    display: flex;
  }


  .cs-dropdown-container.active .cs-dropdown {
    display: flex;
  }

  .cs-dropdown-item {
    width: 100%;
    text-align: left;
  }

  .cs-dropdown-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .cs-dropdown-item p a {
    font-size: 16px;
  }

}










/* BANNER SECTION */


.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
   z-index: -1;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.bg-img.hidden {
  opacity: 0;
}

.sleek-final-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
    height: 800px;

}



.sleek-final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  padding: 40px 0;
  gap: 50px;
}

.sleek-logo-box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 100%;
}

.sleek-logo-box img {
  width: 100%;
  height: 300px;
  display: block;
}

.sleek-form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #aeeaea;
  padding: 40px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sleek-form-card h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.sleek-form-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sleek-form-card input {
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.sleek-form-card button {
  padding: 12px;
  background-color: #99dcdc;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sleek-form-card button:hover {
  background-color: #7fcaca;
}
/* Mobile View */
@media (max-width: 768px) {
  .sleek-form-card {
    display: none;
  }

  .sleek-logo-box {
    display: block; /* Just in case */
  }
}









/*IMAGE CAROUSEL*/
/* Push dots slightly downward */
.brand-carousel-section .swiper-pagination {
  margin-top: 30px; /* You can increase this value if needed */
  position: relative;
  bottom: 0; /* or try: top: auto; */
}

.brand-carousel-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  text-align: center;
}

.brand-carousel-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-carousel-section img {
  max-width: 140px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-carousel-section img:hover {
  transform: scale(1.05);
}

/* Small Arrows */
.swiper-button-prev.small-nav,
.swiper-button-next.small-nav {
  width: 25px;
  height: 25px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  top: 45%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 12px;
}

/* Optional: Smaller pagination dots */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}
@media (max-width: 768px) {
  .brand-carousel-section {
    padding: 20px 10px;
  }

  .brand-carousel-section img {
    max-width: 100px;
  }

  /* Reduce space for pagination */   
  .brand-carousel-section .swiper-pagination {
    margin-top: 20px;
  }

  /* Reposition arrows slightly lower */
  .swiper-button-prev.small-nav,
  .swiper-button-next.small-nav {
    top: 50%;
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 10px;
  }

  /* Smaller dots */
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
  }
}










/*YOUTUBE*/

.video-text-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 50px;
  position: relative;
  flex-wrap: wrap;
}

.video-column iframe {
  width: 570px;
  max-width: 500px;
  height: 315px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.text-column {
  max-width: 600px;
  flex: 1;
}

.heading-block h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.big-number {
  font-size: 48px;
  color: #76bcc0;
  font-weight: 800;
}

.highlight-text {
  color: #76bcc0;
  font-weight: 700;
}

.description-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* vertical line fix */
.vertical-line {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  height: 80%;
  width: 1px;
  background-color: #ccc;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

/* make sure vertical line doesn't break layout */
.video-text-layout > * {
  z-index: 2;
}
@media (max-width: 768px) {
  .video-text-layout {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .video-column iframe {
    width: 100%;
    height: 220px;
    max-width: 100%;
  }

  .text-column {
    max-width: 100%;
    text-align: center;
  }

  .heading-block h2 {
    font-size: 24px;
  }

  .big-number {
    font-size: 36px;
  }

  .description-text {
    font-size: 15px;
  }

  /* Hide vertical line on mobile */
  .vertical-line {
    display: none;
  }
}










/*WHO WE ARE*/
.who-identity-section {
  background-color: #fafafa;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.who-identity-container {
  max-width: 1200px;
  margin: 0 auto;
}

.who-identity-title {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.who-identity-subtitle {
  font-size: 16px;
  color: #444;
  margin: 10px 0 20px;
  text-align: left;
}

.who-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 10px 0 30px;
}

.who-divider span {
  width: 60px;
  height: 2px;
  background: #89d0d0;
}

.who-star {
  font-size: 16px;
  color: #89d0d0;
}

.who-identity-description {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: left;
  max-width: 800px;
}

.who-feature-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.who-feature-box {
  flex: 1 1 45%;
}

.who-feature-icon {
  height: 45px;
  margin-bottom: 10px;
}

.who-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.who-feature-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .who-identity-title,
  .who-identity-subtitle,
  .who-identity-description {
    text-align: center;
  }

  .who-divider {
    justify-content: center;
  }

  .who-feature-row {
    flex-direction: column;
    gap: 30px;
  }

  .who-feature-box {
    flex: 1 1 100%;
    text-align: center;
  }

  .who-feature-icon {
    margin: 0 auto 10px;
  }

  .who-feature-title {
    font-size: 16px;
    font-weight: 600;
  }

  .who-feature-text {
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .who-identity-container {
    padding: 0 10px;
  }
}











/*WHY CHOOSE US*/

.why-us-layout {
  padding: 70px 20px;
  text-align: center;
  background-color: #fff;
}

.why-us-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.why-us-header p {
  font-size: 16px;
  color: #555;
}

.why-us-divider span {
  display: inline-block;
  font-size: 20px;
  color: #76bcc0;
  margin: 20px auto 40px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 4px 20px;
}

.why-us-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.why-us-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 280px;
  flex: 1;
  min-width: 260px;
}

.why-us-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-us-icon {
  font-size: 28px;
  color: #76bcc0;
  margin-bottom: 15px;
}

.why-us-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why-us-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.why-us-center img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .why-us-layout {
    padding: 40px 15px;
  }

  .why-us-header h2 {
    font-size: 24px;
  }

  .why-us-header p {
    font-size: 14px;
  }

  .why-us-divider span {
    font-size: 16px;
    padding: 4px 15px;
    margin: 20px auto 30px;
  }

  .why-us-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .why-us-column {
    max-width: 100%;
    gap: 40px;
  }

  .why-us-center img {
    width: 220px;
    height: 220px;
  }

  .why-us-card h4 {
    font-size: 14px;
  }

  .why-us-card p {
    font-size: 13px;
  }

  .why-us-icon {
    font-size: 24px;
  }
}











/* ===== CALL BOX SECTION ===== */
.cascade-callbox-section {
  background-color: #8aced0;
  padding: 50px 20px;
  text-align: center;
  height: 230px;
}

.cascade-callbox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cascade-callbox-text h3 {
  font-size: 35px;
  color: white;
  margin-bottom: 10px;
  font-weight: 400;
}

.cascade-callbox-text p {
  font-size: 30px;
  color: white;
  margin: 0;
}

.cascade-callbox-btn a {
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cascade-callbox-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .cascade-callbox-section {
    padding: 40px 15px;
    height: auto;
  }

  .cascade-callbox-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .cascade-callbox-text h3 {
    font-size: 22px;
  }

  .cascade-callbox-text p {
    font-size: 18px;
  }

  .cascade-callbox-btn a {
    font-size: 18px;
    padding: 12px 24px;
    width: 100%;
    max-width: 280px;
  }
}









/*HOW IT WORKS*/
.cascade-hiw-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.cascade-hiw-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cascade-hiw-title {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.cascade-hiw-divider {
  margin-bottom: 40px;
  color: #00bfc1;
  font-size: 20px;
  position: relative;
}

.cascade-hiw-divider::before,
.cascade-hiw-divider::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 1px;
  background: #00bfc1;
  vertical-align: middle;
  margin: 0 10px;
}

.cascade-hiw-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.cascade-hiw-step {
  background: #f8f8f8;
  padding: 30px 20px;
  border-radius: 5px;
  flex: 1 1 300px;
  max-width: 360px;
  position: relative;
}

.cascade-hiw-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: #85d3d2;
  color: white;
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.cascade-hiw-icon {
  background: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 30px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #00bfc1;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.cascade-hiw-step h4 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}

.cascade-hiw-step p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.cascade-hiw-btn {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cascade-hiw-btn:hover {
  background: #00bfc1;
  color: #fff;
  border-color: #00bfc1;
}
@media (max-width: 768px) {
  .cascade-hiw-section {
    padding: 40px 15px;
  }

  .cascade-hiw-title {
    font-size: 22px;
  }

  .cascade-hiw-divider {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cascade-hiw-divider::before,
  .cascade-hiw-divider::after {
    width: 50px;
  }

  .cascade-hiw-steps {
    flex-direction: column;
    gap: 25px;
  }

  .cascade-hiw-step {
    max-width: 100%;
    padding: 25px 15px;
  }

  .cascade-hiw-ribbon {
    font-size: 12px;
    padding: 6px 12px;
  }

  .cascade-hiw-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 20px auto 15px;
  }

  .cascade-hiw-step h4 {
    font-size: 15px;
  }

  .cascade-hiw-step p {
    font-size: 13px;
  }

  .cascade-hiw-btn {
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 20px;
  }
}










/*GALLERY*/
.product-gallery-section {
  background-color: #f8f9fa; /* Optional: light background */
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: #00a3ad;
  border-radius: 5px;
  position: relative;
}

.section-divider::after {
  content: '✦';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #00a3ad;
  background: #f8f9fa;
  padding: 0 4px;
}

/* Filter Buttons */
.filter-buttons .filter-btn {
  background: transparent;
  border: none;
  font-weight: 500;
  color: #333;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

.filter-buttons .filter-btn.active,
.filter-buttons .filter-btn:hover {
  color: #00a3ad;
  border-bottom: 2px solid #00a3ad;
}
.gallery-img-box {
  width: 322px;
  height: 322px;
  overflow: hidden;
  margin: 0 auto;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-all-link {
  display: inline-block;
  font-size: 18px;
  color: #333;
  
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.view-all-link span {
  transition: transform 0.3s ease;
}

.view-all-link:hover span {
  transform: translateX(5px);
}

.view-all-link:hover {
  color: #358f91;
}
.product-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* 👈 shadow on the whole box */
  border-radius: 8px; /* Optional: smooth edges */
}

.product-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.product-box:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.product-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  padding: 15px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.product-box:hover .overlay {
  opacity: 1;
}

.overlay .product-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.overlay .product-category {
  font-size: 12px;
  color: #000;
  letter-spacing: 0.5px;
}

.overlay .link-icon {
  margin-top: 10px;
  background-color: #7ed6df;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.overlay .link-icon i {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .gallery-img-box {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1; /* Maintains square shape */
    margin: 0 auto 20px;
  }

  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .filter-buttons .filter-btn {
    font-size: 14px;
    padding: 6px 10px;
  }

  .view-all-link {
    font-size: 16px;
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .section-divider {
    width: 60px;
    height: 2px;
  }

  .section-divider::after {
    font-size: 14px;
    top: -8px;
  }
}
@media (max-width: 768px) {
  .gallery-img-box {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1; /* Maintains square shape */
    margin: 0 auto 20px;
  }

  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .filter-buttons .filter-btn {
    font-size: 14px;
    padding: 6px 10px;
  }

  .view-all-link {
    font-size: 16px;
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .section-divider {
    width: 60px;
    height: 2px;
  }

  .section-divider::after {
    font-size: 14px;
    top: -8px;
  }
}












/*PLAY BUTTON*/
.custom-feature-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.custom-play-button {
  width: 100px;
  height: 100px;
  border: 2px solid #7ec3c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
}

.play-icon {
  font-size: 28px;
  color: #7ec3c8;
}

.custom-feature-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Replace below with actual image URLs */
.icon1 { background-image: url('images/reward.png'); }
.icon2 { background-image: url('images/high-quality.png'); }
.icon3 { background-image: url('images/on-time.png'); }
.icon4 { background-image: url('images/download-file.png'); }
.icon5 { background-image: url('images/warranty.png'); }

.feature-item p {
  font-size: 16px;
  color: #5c5252;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .custom-feature-section {
    padding: 50px 15px;
  }

  .custom-play-button {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
  }

  .play-icon {
    font-size: 20px;
  }

  .custom-feature-grid {
    gap: 30px;
  }

  .feature-item {
    width: 100px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .feature-item p {
    font-size: 14px;
  }
}








  /* FOOTER SECTION */

.final-footer-wrapper {
  font-family: 'Poppins', sans-serif;
  background-color: #d6d6d6;
  color: #3a3636;
}

/* Top Section */
.final-footer-top {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 60px 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.final-footer-col {
  flex: 1 1 300px;
  max-width: 350px;
}

.final-footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.final-footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #5c5252;
  text-align: justify;
}

.final-footer-col a {
  color: #5c5252;
  text-decoration: none;
  font-size: 14px;
}

.final-footer-col ul {
  list-style: none;
  padding: 0;
}

.final-footer-col ul li {
  margin-bottom: 10px;
}
.final-footer-btn{
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: #d6d6d6;
}

.final-footer-btn:hover{
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #efefef;
  font-size: 14px;
  cursor: pointer;
}

/* Wrapper to constrain width */
.final-footer-middle-wrapper {
  background-color: #fff;
  padding: 0px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #eee;
  height: 80px;
  align-content: center;
}

/* Flex row */
.final-footer-middle-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left: Subscribe text */
.footer-news-left {
  flex: 1;
  font-size: 14px;
  text-align: left;

}

/* Center: Form */
.footer-news-center {
  flex: 1;
  display: flex;
  justify-content: center;
  font-size: 14px;
}

/* Right: Social icons */
.final-footer-socials {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.final-footer-socials a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.final-footer-socials a:hover {
  color: #00bfc1;
  font-size: 16px;
  text-decoration: none;
}
/* Footer Bottom */
.final-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 13px;
  color: #333;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #e0e0e0;
  height: 70px;
  background-color: #f5f5f5;

}

.final-footer-bottom .left p {
  margin: 0;
  color: #333;
  margin-left: 250px;
}

.final-footer-bottom .left a {
  color: #00bfc1;
  text-decoration: none;
}

.final-footer-bottom .right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-right: 250px;
}

.final-footer-bottom .right a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.final-footer-bottom .right a:hover {
  color: #00bfc1;
}
/* ------------------ Responsive Footer Fix ------------------ */
@media (max-width: 768px) {
  .final-footer-top {
  flex-direction: column;
  align-items: flex-start; /* Change from center to flex-start */
  gap: 40px;
  padding: 40px 30px 30px;
}

.final-footer-col {
  max-width: 100%;
  flex: 1 1 100%;
  text-align: left; /* Change from center to left */
}

.final-footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: left; /* Optional: ensure heading aligns left */
}

.final-footer-col p,
.final-footer-col a,
.final-footer-col ul li {
  font-size: 14px;
  line-height: 1.6;
  text-align: left; /* Change from center to left */
}

.final-footer-col ul {
  padding-left: 0;
}

.final-footer-col ul li {
  margin-bottom: 8px;
}

.final-footer-btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 14px;
  display: inline-block;
}

.final-footer-col.contact p {
  margin-bottom: 12px;
}

.final-footer-col.contact i {
  margin-right: 8px;
  color: #333;
}


 .final-footer-middle-wrapper {
    height: auto;
    padding: 20px 15px;
  }

  .final-footer-middle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-news-left,
  .footer-news-center,
  .final-footer-socials {
    flex: unset;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .footer-news-left {
    text-align: center;
  }

  .footer-news-center {
    justify-content: center;
  }

  .final-footer-socials {
    justify-content: center;
  }

  .final-footer-bottom {
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
    gap: 10px;
  }

  .final-footer-bottom .left p {
    margin-left: 0;
  }

  .final-footer-bottom .right {
    margin-right: 0;
    justify-content: center;
  }
}
   


  
  
 

  






/* ------------------ INNER PAGES MENU SECTION------------------ */

.living-room-section-unique {
  background-color: #f8f8f8;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.living-room-container-unique {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Flex */
.living-room-header-unique {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.living-room-breadcrumb-unique {
  font-size: 16px;
    color: #00bfc1;

}

.living-room-breadcrumb-unique a {
  text-decoration: none;
    color: #444;

}

.living-room-heading-unique {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}
/* Wrapper for the Living Room Gallery */
.living-room-gallery-unique {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* ensures 2nd row starts from left */
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.living-room-imgbox-unique {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  flex: 0 0 calc(33.333% - 20px); /* 3 images per row */
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.living-room-imgbox-unique img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.living-room-imgbox-unique:hover img {
  transform: scale(1.1);
}

/* Hover overlay */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 20px;
}

.living-room-imgbox-unique:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  font-weight: 500;
}

.hover-overlay span {
  font-size: 12px;
  letter-spacing: 1px;
  background: white;
  color: #333;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.hover-icon {
  margin-top: 10px;
  font-size: 18px;
  color: #00bfc1;
  background-color: white;
  padding: 8px;
  border-radius: 50%;
}


.living-room-description-unique {
  width: 100%;
  padding: 25px 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
  background-color: #f4f4f4; /* light grey background */
  box-sizing: border-box;
  margin-top: 30px;
}
.living-room-subtitle-unique {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin: 30px 0 15px;
}



@media (max-width: 767px) {
  .living-room-imgbox-unique {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .living-room-gallery-unique {
    gap: 20px;
    padding: 30px 15px;
  }

  .hover-overlay h3 {
    font-size: 18px;
  }

  .hover-overlay span {
    font-size: 10px;
  }

  .hover-icon {
    font-size: 16px;
    padding: 6px;
  }
}











/* LIGHTING SECTION */
.philips-lighting-logo-row {
  text-align: left;
  padding: 20px 0 10px 0;
}

.philips-lighting-logo {
  height: 83px;
  width: 125px;
}

.philips-lighting-heading-row {
  text-align: center;
  margin-bottom: 30px;
}

.philips-lighting-title {
  font-size: 36px;
  color: #000;
  margin: 0;
  font-family: "Raleway";
}



.philips-lighting-section {
  padding: 0px 20px;
  text-align: center;
  margin-bottom: 15px;
}

.philips-lighting-container {
  max-width: 1200px;
  margin: 0 auto;
}



.philips-lighting-grid-fixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  justify-items: center;
}

.philips-lighting-box {
  max-width: 320px;
  text-align: center;
}

.philips-lighting-box img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.philips-lighting-box h4 {
  font-size: 18px;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #606060;
}

.philips-lighting-box p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.philips-lighting-box a {
  font-size: 13px;
  color: red;
  text-decoration: none;
}

.empty-box {
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}
/* SLIDER */
.hallway-slider-unique-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hallway-slider-unique-swiper {
  width: 100%;
  height: 100%;
}

.hallway-slide-unique {
  position: relative;
  width: 100%;
  height: 100%;
}

.hallway-slide-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hallway-slide-content-unique {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
}

.hallway-slide-content-unique h2 {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
}

.hallway-slide-content-unique h2 strong {
  font-weight: 700;
}













/* LIGHTBULB SECTION */
.lightbulb-content {
  width: 100%;
  max-width: 1140px; /* matches common layout width */
  margin: 0 auto;
  padding-left: 30px;  /* add consistent left padding */
  padding-right: 30px;
  box-sizing: border-box;
}

.lightbulb-subtitle {
  font-size: 36px;
  color: #000;
  margin: 0 0 16px 0;
  text-align: left;
  font-family: "Raleway";
}

.lightbulb-description {
  font-size: 16px;
  line-height: 1.8;
  color: #606060;
  margin: 0;
  text-align: left;
  text-align: justify;
}







/* ------------------  SMART LIGHTING ------------------ */
.smart-lighting-unique-section {
  background-color: #ffffff;
  padding: 0px 20px;
}

.smart-lighting-unique-container {
  max-width: 1100px;
  margin: 0 auto;
}

.smart-lighting-unique-heading {
  font-size: 42px;
  color: #000000;
  margin-bottom: 20px;
  text-align: left; /* Align left */
    font-family: "Raleway";

}

.smart-lighting-unique-description {
  font-size: 16px;
  line-height: 1.8;
  color: #606060;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: left; /* Align left */
  text-align: justify;
}

.smart-lighting-unique-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* box */
.smart-feature-unique-section {
  background-color: #c4c4c4; /* same grey background */
  padding: 60px 20px;
  margin-bottom: 70px;
  margin-top: 40px;
}

.smart-feature-unique-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.smart-feature-unique-box {
  flex: 1 1 30%;
  padding: 10px;
  text-align: left; /* <-- This aligns everything inside the box to left */
}

.smart-feature-unique-icon {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.smart-feature-unique-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
}

.smart-feature-unique-description {
  font-size: 14px;
  color: #6f6f6f;
  line-height: 1.6;
  text-align: justify;
}










/* ------------------  FAN ------------------ */
.fan-product-showcase-section {
  width: 100%;
  background-color: #fff;
  padding: 40px 0;
}

.fan-product-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.fan-product-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}






/* ------------------  REVIWE SECTION ------------------ */

.unique-testimonial-carousel-section {
  background-color: #fff;
  padding: 60px 20px;
}

.unique-testimonial-carousel-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
  text-align: center;
}

.unique-testimonial-slide {
  display: none;
  transition: all 0.5s ease-in-out;
}

.unique-testimonial-slide.active {
  display: block;
}

.unique-testimonial-slide h3 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #222;
  font-weight: bold;
}

.unique-testimonial-slide p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.unique-testimonial-slide strong {
  display: block;
  margin-top: 10px;
  color: #111;
  font-weight: 600;
}

.unique-testimonial-stars {
  color: #f1c40f;
  font-size: 18px;
  margin-top: 5px;
}

.unique-testimonial-dots {
  margin-top: 20px;
}

.unique-testimonial-dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.unique-testimonial-dot.active {
  background-color: #00bcd4;
}

.unique-arrow {
  position: absolute;
  top: 50%;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  padding: 10px;
  background: #f3f3f3;
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
  transition: background 0.3s;
  z-index: 1;
}

.unique-arrow:hover {
  background: #ddd;
}

.unique-arrow-left {
  left: -50px; /* far left */
}

.unique-arrow-right {
  right: -50px; /* far right */
}














/*-------------- Contact Section --------------- */

.unique-contact-wrapper {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

.unique-contact-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.unique-contact-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.unique-contact-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

.unique-contact-icon-img {
  width: 40px;
  height: auto;
  margin-top: 5px;
}

.unique-contact-label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #555;
}

.unique-contact-value a {
  color: #333;                /* Set your preferred color */
  text-decoration: none;     /* Removes underline */
}

.unique-contact-value a:hover {
  color: #28a745;             /* Hover color */
}


.unique-contact-social a {
  text-decoration: none;     /* Remove underline */
  color: #333;               /* Set default icon color */
  margin-right: 10px;        /* Add spacing between icons */
  font-size: 18px;           /* Adjust size as needed */
  transition: color 0.3s;
}

.unique-contact-social a:hover {
  color: #28a745; /* or any hover color you want */
}


.unique-contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.unique-contact-section {
  padding: 50px 0;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.unique-contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.unique-contact-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.unique-contact-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.unique-contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.unique-contact-form form {
  display: flex;
  flex-direction: column;
}

.unique-contact-input,
.unique-contact-textarea {
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 14px;
  width: 100%;
}

.unique-contact-textarea {
  border-radius: 20px;
  resize: none;
  height: 150px;
}

.unique-contact-recaptcha {
  font-size: 14px;
  margin-bottom: 15px;
  color: #999;
}

.unique-contact-button {
  padding: 12px 25px;
  background-color: #6fd1d1;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
}

.unique-contact-button:hover {
  background-color: #55bcbc;
}






.pal-layout-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.pal-layout-gallery .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pal-layout-gallery .row-top .full-image {
  width: 100%;
}

.pal-layout-gallery .row-top img {
  width: 100%;
  height: auto;
  display: block;
}

.pal-layout-gallery .row-bottom {
  justify-content: space-between;
  gap: 20px;
}

.pal-layout-gallery .row-bottom .small-image {
  flex: 1 1 calc(25% - 15px); /* 4 in a row with spacing */
  max-width: calc(25% - 15px);
}

.pal-layout-gallery .row-bottom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
