body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Nav Section Starts */

header.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logoo img {
  height: 60px;
  animation: logoFadeIn 1s ease-out forwards;
}

/* Logo animation */
@keyframes logoFadeIn {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.logoo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Desktop navigation */
.desktop-nav {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
      display: flex;
      gap: 2.5rem;
  }
}

.nav-item {
  position: relative;
}

.nav-button {
  all: unset; /* Removes default button styles */
  display: flex;
  align-items: center;
  color: #374151;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

/* Underline animation for nav items */
.nav-button::after,
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #821928;
  transition: width 0.3s ease;
}

.nav-button:hover::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-button:hover {
  color: #111827;
}

.nav-link {
  color: #374151;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #111827;
}

.chevron-icon {
  margin-left: 0.5rem;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.75rem;
  min-width: 14rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  animation: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: dropdownSlide 0.4s ease-out forwards;
}

/* Dropdown slide-in animation */
@keyframes dropdownSlide {
  0% {
      opacity: 0;
      transform: translateY(10px);
  }
  80% {
      opacity: 1;
      transform: translateY(-2px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #1f2937;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #214150;
  color: white;
  border-radius: 4px;
  transform: translateX(5px);
}

/* Sub-dropdown styles */
.sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 14rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.sub-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  animation: dropdownSlide 0.4s ease-out forwards;
}

/* CTA buttons */
.ncta-buttons {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .ncta-buttons {
      display: flex;
      gap: 1.25rem;
  }
}

.nbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nbtn-outline {
  border: 1px solid #821928;
  color: #821928;
  background-color: white;
}

.nbtn-outline:hover {
  background-color: #821928;
  color: white;
  transform: scale(1.05);
}

.nbtn-primary {
  border: 1px solid transparent;
  color: white;
  background-color: #821928;
}

.nbtn-primary:hover {
  background-color: #214150;
  transform: scale(1.05);
}

/* Mobile menu button */
.mobile-menu-button {
  all: unset; /* Removes default button styles */
  display: flex;
  padding: 0.75rem;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
      display: none;
  }
}

.mobile-menu-button:hover {
  color: #111827;
  background-color: #f3f4f6;
  transform: scale(1.1);
}

.mobile-menu-icon {
  width: 28px;
  height: 28px;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.5s ease-in-out;
}

.mobile-menu.active {
  max-height: 100vh;
  padding-bottom: 1rem;
  animation: mobileMenuSlide 0.5s ease-out forwards;
}

/* Mobile menu slide animation */
@keyframes mobileMenuSlide {
  0% {
      opacity: 0;
      transform: translateY(-10px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }

.mobile-nav-button {
  all: unset; /* Removes default button styles */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-button:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-dropdown {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-dropdown.active {
  max-height: 1000px;
  animation: dropdownSlide 0.4s ease-out forwards;
}

.mobile-dropdown-item {
  text-decoration: none;
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #4b5563;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-sub-dropdown {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-sub-dropdown.active {
  max-height: 1000px;
  animation: dropdownSlide 0.4s ease-out forwards;
}

.mobile-cta {
  padding: 1.5rem 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.4s;
  text-decoration: none;
}

.mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta .nbtn {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dropdown, .sub-dropdown {
      position: static;
      width: 100%;
      box-shadow: none;
      border: none;
      margin-top: 0;
      transform: none;
      opacity: 1;
      visibility: visible;
      display: none;
  }
  
  .dropdown.active, .sub-dropdown.active {
      display: block;
  }
  
  .sub-dropdown {
      padding-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
      height: 64px;
  }
  
  .logoo img {
      height: 48px;
  }
  
  .header-container {
      padding: 0 1rem;
  }
}

  /*Nav Section Ends */

  /*  Image Slide Section Starts */

.slider {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide img {
      width: 100%;
      height: auto;
  }
}

/*  Image Slide Section Ends */

/* Image Section Starts */

.image-section {
    text-align: center;
    padding: 20px;
    background-color: transparent;
}

.image-section img {
    max-width: 100%; /* Ensures the image scales down on smaller screens */
    height: auto; /* Maintains aspect ratio */
    width: 2000px;
    align-items: center; /* Set a fixed width for consistency */
    
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .image-section img {
        width: 1900px; /* Fixed width for mobile as well */
        height: 200px; /* Maintains aspect ratio */
    }
}

/* Image Section Ends */

/* Wooden door section Starts */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        padding: 40px 20px;
    }
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .logo-container {
        position: absolute;
        top: 30px;
        right: 50px;
        margin-bottom: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo-icon {
    width: 10px;
    height: 40px;
    margin-right: 10px;
    background: repeating-linear-gradient(45deg, #333, #333 3px, #fff 3px, #fff 6px);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
}

/* Image section */
.iimage-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.iimage-section:hover {
    transform: scale(1.02);
}

.door-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.iimage-section:hover .door-image {
    transform: scale(1.05);
}

/* Content section */
.content-section {
    flex: 1;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .content-section {
        padding: 0 0 0 40px;
    }
}

.title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .title {
        font-size: 32px;
    }
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Features section */
.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .features-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6f2ff;
    border-radius: 50%;
    margin-bottom: 10px;
    color: transparent;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature:hover .feature-icon {
    background-color: transparent;
    color: #fff;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0055aa;
    transform: translateY(-2px);
}

/* Door animation */
.door-container {
    position: relative;
    perspective: 1000px;
    margin: 20px 0;
}

.door {
    width: 100%;
    height: 400px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform-origin: left;
    transition: transform 1.5s ease;
    position: relative;
}

.door:hover {
    transform: rotateY(-30deg);
}

.door-handle {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 40px;
    background-color: #999;
    border-radius: 4px;
}

.door-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 10px solid #eee;
    pointer-events: none;
}

/* Wooden door section Ends */

/* Premium Door Section Starts */

.premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
            color: #333;
            line-height: 1.6;
}

/* Door Texter Section */
.door-texter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.door-description {
    flex: 1;
    min-width: 300px;
}

.door-description p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.door-specs {
    flex: 1;
    min-width: 300px;
}

.door-specs h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.door-specs p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .door-texter-section {
        flex-direction: column;
        gap: 30px;
    }

}

/* Premium Door Section */

/* Wood Starts */



.wood-container {
  max-width: 1500px;
  margin: 0 auto;
}

.product-specs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.sectionn {
  flex: 1;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;

}

.wood-grid, .powder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;

}

.wood-option, .powder-option {
  display: flex;
  flex-direction: column;
}

.wood-sample {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
}

.powder-sample {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
}

.option-name {
  font-size: 0.8rem;
}

.sizes-list {
  list-style: none;
}

.sizes-list li {
  margin-bottom: 8px;
  color: #555;
}

.testing-list {
  list-style: disc;
  padding-left: 20px;
}

.testing-list li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.models {
  margin-top: 20px;
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

/* Natural Teak */
.natural-teak {
  background-color: #C68E55;
}

/* Modern Walnut */
.modern-walnut {
  background-color: #8B5A2B;
}

/* Dark Mahogany */
.dark-mahogany {
  background-color: #4E2B15;
}

/* Moorish Teak */
.moorish-teak {
  background-color: #6B4226;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-specs {
      flex-direction: column;
  }
  h2 {
      margin-left: 10px;
  }
  .wood-grid {
      margin-left: 100px;
  } 
  .powder-grid {
      margin-left: 100px;
  }  

  .testing-list {
      margin-left: 10px;
  }
  
  .testing-list li {
         margin-left: 5 px;
  }
  .models {
      margin-left: 30px;
  }
  
}




/* Wood Starts Ends */

/* LX Series Section Starts */

.lx-container {
    font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}
.lx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  animation: fadeIn 1s ease-in;
}
.text-section, .lx-image-section {
  flex: 1;
  padding: 20px;
}
.text-section {
  text-align: left;
}
.lx-image-section img {
  max-width: 100%;
  height: auto;
}
.lxfeatures {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 20px;
}
.lxfeature {
  display: flex;
  align-items: center;
}
.lxfeature img {
  width: 40px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .lx-header {
    flex-direction: column;
    text-align: center;
  }
  .lxfeatures {
    flex-direction: column;
    align-items: center;
  }
  .lxfeature {
    margin: 10px 0;
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* LX Series Section End's */

/* LX Image Section Starts */


.gallery-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .image-card img {
      height: 500px; /* Maintain same height on tablet */
  }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .image-card img {
      height: 500px; /* Maintain same height on mobile */
  }
}

/* LX Image Section end's */

/* Progaurd Section Starts */


.info-section {
    padding: 60px 20px;
    background-color: #fff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-content {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.info-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}

.info-content p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
}

.learn-more {
    display: inline-block;
    padding: 12px 24px;
    background-color: #821928;
    color: #fff;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: #214150;
}

.disclosures {
    display: block;
    font-size: 0.9em;
    color: #0073aa;
    text-decoration: none;
    margin-top: 10px;
}

.disclosures:hover {
    text-decoration: underline;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        text-align: center;
    }

    .info-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .info-content h1 {
        font-size: 2em;
    }

    .info-content p {
        font-size: 1em;
    }

    .learn-more {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .disclosures {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 40px 10px;
    }

    .info-content h1 {
        font-size: 1.5em;
    }

    .info-content p {
        font-size: 0.9em;
    }

    .learn-more {
        padding: 8px 16px;
        font-size: 0.8em;
    }

    .disclosures {
        font-size: 0.7em;
    }
}



/* Progaurd Section End's */

/* Thermo Section Starts*/


        /* Thermo Section Styles */
        .thermo-container {
          background-color: #fff;
          color: #000;
          max-width: 1500px;
          margin: 0 auto;
          padding: 0 15px;
      }

      .thermo-section {
          padding: 40px 0;
          opacity: 0;
          transform: translateY(20px);
          transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .thermo-section.visible {
          opacity: 1;
          transform: translateY(0);
      }

      .thermo-grid {
          display: grid;
          grid-template-columns: 1fr;
          gap: 30px;
      }

      @media (min-width: 992px) {
          .thermo-grid {
              grid-template-columns: 1fr 1fr;
              align-items: center;
          }
      }

      /* Content Styles */
      .thermo-content {
          display: flex;
          flex-direction: column;
          gap: 15px;
          padding: 20px 0;
      }

      .thermo-title {
          font-size: clamp(2rem, 5vw, 3.2rem);
          font-weight: 900;
          line-height: 1.1;
          margin: 0;
          opacity: 0;
          transform: translateY(15px);
          transition: opacity 0.6s ease, transform 0.6s ease;
          transition-delay: 0.2s;
      }

      .thermo-title span {
          font-weight: 400;
      }

      .thermo-subtitle {
          font-size: clamp(1.5rem, 3vw, 1.8rem);
          font-weight: 700;
          margin: 0;
          opacity: 0;
          transform: translateY(15px);
          transition: opacity 0.6s ease, transform 0.6s ease;
          transition-delay: 0.3s;
      }

      .thermo-model {
          font-size: clamp(1.2rem, 2.5vw, 1.5rem);
          font-weight: 500;
          margin: 10px 0 0;
          opacity: 0;
          transform: translateY(15px);
          transition: opacity 0.6s ease, transform 0.6s ease;
          transition-delay: 0.4s;
      }

      .thermo-tagline {
          font-size: clamp(0.9rem, 2vw, 1.1rem);
          font-weight: 600;
          text-transform: uppercase;
          margin: 10px 0 0;
          opacity: 0;
          transform: translateY(15px);
          transition: opacity 0.6s ease, transform 0.6s ease;
          transition-delay: 0.5s;
      }

      .thermo-description {
          font-size: clamp(0.9rem, 1.8vw, 1rem);
          line-height: 1.6;
          color: #333;
          margin: 10px 0 0;
          opacity: 0;
          transform: translateY(15px);
          transition: opacity 0.6s ease, transform 0.6s ease;
          transition-delay: 0.6s;
      }

      /* Feature Icons */
      .feature-icons {
          display: flex;
          gap: 15px;
          flex-wrap: wrap;
          margin-top: 20px;
          opacity: 0;
          transform: translateY(15px);
          transition: opacity 0.6s ease, transform 0.6s ease;
          transition-delay: 0.7s;
      }

      .tfeature-icon {
          display: flex;
          flex-direction: column;
          align-items: center;
          width: 70px;
          transition: transform 0.3s ease;
      }

      .tfeature-icon:hover {
          transform: scale(1.05);
      }

      .tfeature-icon img {
          width: 60px;
          height: 60px;
          object-fit: contain;
      }

      .tfeature-icon-name {
          font-size: clamp(0.75rem, 1.5vw, 0.85rem);
          font-weight: 500;
          color: #333;
          text-align: center;
          margin-top: 6px;
          max-width: 90px;
          line-height: 1.2;
      }

      /* Image Styles */
      .thermo-image-container {
          position: relative;
          height: clamp(300px, 50vw, 500px);
          border-radius: 5px;
          overflow: hidden;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          opacity: 0;
          transform: scale(0.95);
          transition: opacity 0.8s ease, transform 0.8s ease;
          transition-delay: 0.4s;
      }

      .thermo-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      /* Animation Classes */
      .visible .thermo-title,
      .visible .thermo-subtitle,
      .visible .thermo-model,
      .visible .thermo-tagline,
      .visible .thermo-description,
      .visible .feature-icons,
      .visible .thermo-image-container {
          opacity: 1;
          transform: translateY(0) scale(1);
      }

      /* Responsive Adjustments */
      @media (max-width: 768px) {
          .thermo-section {
              padding: 30px 0;
          }

          .thermo-container {
              padding: 0 10px;
          }

          .thermo-content {
              gap: 12px;
              padding: 15px 0;
          }

          .feature-icons {
              gap: 10px;
              justify-content: center;
          }

          .tfeature-icon {
              width: 60px;
          }

          .tfeature-icon img {
              width: 50px;
              height: 50px;
          }
      }

      @media (max-width: 480px) {
          .thermo-image-container {
              height: 250px;
          }

          .thermo-content {
              gap: 10px;
          }

          .feature-icons {
              margin-top: 15px;
          }
      }




/* Thermo Section Ends */


/* Floor Section Starts */


    /* Base styles */
    :root {
        --stone-50: #fafaf9;
        --stone-100: #f5f5f4;
        --stone-200: #e7e5e4;
        --stone-400: #a8a29e;
        --stone-500: #78716c;
        --stone-600: #57534e;
        --stone-700: #44403c;
      }
      
      body {
        font-family: Arial, Helvetica, sans-serif;
        margin: 0;
        padding: 0;
        color: #333;
        background-color: #fff;
        line-height: 1.6;
      }
      
      /* Layout */
      .min-h-screen {
        min-height: 100vh;
      }
      
      .max-w-7xl {
        max-width: 80rem;
      }
      
      .mx-auto {
        margin-left: auto;
        margin-right: auto;
      }
      
      .p-8 {
        padding: 2rem;
      }
      
      .mb-8 {
        margin-bottom: 2rem;
      }
      
      .mb-6 {
        margin-bottom: 1.5rem;
      }
      
      .mb-2 {
        margin-bottom: 0.5rem;
      }
      
      .mt-4 {
        margin-top: 1rem;
      }
      
      /* Typography */
      .text-5xl {
        font-size: 3rem;
        line-height: 1;
      }
      
      .text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
      }
      
      .font-light {
        font-weight: 300;
      }
      
      .font-serif {
        font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
      }
      
      .italic {
        font-style: italic;
      }
      
      .text-stone-400 {
        color: var(--stone-400);
      }
      
      .text-stone-600 {
        color: var(--stone-600);
      }
      
      .text-stone-700 {
        color: var(--stone-700);
      }
      
      /* Components */
      .flex {
        display: flex;
      }
      
      .flex-col {
        flex-direction: column;
      }
      
      .items-center {
        align-items: center;
      }
      
      .gap-2 {
        gap: 0.5rem;
      }
      
      .w-full {
        width: 100%;
      }
      
      .max-w-2xl {
        max-width: 42rem;
      }
      
      .rounded-lg {
        border-radius: 0.5rem;
      }
      
      .overflow-hidden {
        overflow: hidden;
      }
      
      .overflow-x-auto {
        overflow-x: auto;
      }
      
      .bg-stone-50 {
        background-color: var(--stone-50);
      }
      
      .bg-stone-100 {
        background-color: var(--stone-100);
      }
      
      /* Button */
      button {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--stone-700);
        padding: 0;
        font-size: 1rem;
      }
      
      button:hover {
        color: var(--stone-500);
      }
      
      /* Table */
      table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.875rem;
      }
      
      th, td {
        border: 1px solid var(--stone-200);
        padding: 0.5rem 1rem;
      }
      
      th {
        background-color: var(--stone-100);
        font-weight: 500;
        text-align: left;
      }
      
      td.text-center {
        text-align: center;
      }
      
      /* Toggle animation */
      .details-container {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        padding: 0;
      }
      
      .details-container.open {
        max-height: 2000px;
        opacity: 1;
        padding: 1rem;
      }
      
      /* Responsive */
      @media (min-width: 768px) {
        .p-8 {
          padding: 4rem;
        }
        
        .text-5xl {
          font-size: 3.75rem;
        }
        
        .text-lg {
          font-size: 1.25rem;
        }
        
        .flex-md-row {
          flex-direction: row;
        }
        
        .w-md-half {
          width: 50%;
        }
        
        .pr-md-8 {
          padding-right: 2rem;
        }
        
        .mb-md-0 {
          margin-bottom: 0;
        }
      }

  
/* Floor Section Ends */

/* Contact Section Starts */

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  background-color: #fff;
  color: #1a3c5e;
  border: 2px solid #821928;
  border-radius: 10px;
  margin: 1.5rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease;
}
.contact-section:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: #214150;
}
.contact-text {
  flex: 1;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: bold;
  overflow: hidden;
}
.contact-text h2 {
  color: #000;
  position: relative;
  display: inline-block;
  transform: translateX(-100%);
  animation: slideIn 0.8s ease forwards;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.contact-text p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: normal;
  color: #000;
  transform: translateX(-100%);
  animation: slideIn 0.8s ease forwards 0.3s;
}
.contact-button {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background-color: #821928;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  transform: scale(1);
  opacity: 0;
  animation: popIn 0.5s ease forwards 0.6s, pulse 2s infinite 1s;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 auto;
  display: block;
}
.contact-button:hover {
  background-color: #214150;
  transform: scale(1.05);
}
@keyframes slideIn {
  from {
      transform: translateX(-100%);
  }
  to {
      transform: translateX(0);
  }
}
@keyframes popIn {
  from {
      opacity: 0;
      transform: scale(0.5);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .contact-section {
      padding: 1.5rem;
      flex-direction: column;
      text-align: center;
      height: auto;
  }
  .contact-text {
      margin-bottom: 1.5rem;
  }
  .contact-button {
      width: 80%;
      max-width: 300px;
      margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .contact-section {
      padding: 1rem;
      margin: 1rem;
  }
  .contact-text h2 {
      font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
  .contact-text p {
      font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }
  .contact-button {
      width: 90%;
      padding: 0.6rem 1rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
      padding: 0.75rem;
      margin: 0.5rem;
      border-radius: 8px;
  }
  .contact-text h2 {
      font-size: clamp(1rem, 5vw, 1.5rem);
  }
  .contact-text p {
      font-size: clamp(0.7rem, 2.8vw, 0.85rem);
  }
  .contact-button {
      width: 100%;
      font-size: clamp(0.8rem, 3vw, 0.9rem);
      padding: 0.5rem 1rem;
  }
}



/* Contact Section Ends */


/* Footer Section Starts */

.footer {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #821928;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
  position: relative;
}

.footer-column ul li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #214150;
}

/* Dropdown Styles */
.ddropdown {
  position: relative;
}

.ddropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ddropdown-toggle .fa {
  font-size: 10px;
  color: #555;
  transition: transform 0.3s ease, color 0.2s ease;
}

.ddropdown:hover .ddropdown-toggle {
  color: #214150;
}

.ddropdown:hover .ddropdown-toggle .fa {
  transform: rotate(180deg);
  color: #214150;
}

.ddropdown-menu {
  display: none;
  position: relative;
  left: 0;
  background-color: #fff;
  min-width: 100%;
  border-radius: 6px;
  z-index: 10;
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ddropdown:hover .ddropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ddropdown-menu li {
  margin-bottom: 0;
  padding: 0;
}

.ddropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ddropdown-menu li a:hover {
  background-color: #f5f9ff;
  color: #214150;
}

.newsletter {
  max-width: 400px;
}

.newsletter h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-form {
  display: flex;
  position: relative;
  margin-bottom: 30px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f5f9ff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 24px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-button:hover {
  background-color: #333;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.contact-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-column p {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin-right: 50px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.copyright {
  color: #555;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #111;
  font-size: 18px;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #555;
}

@media (max-width: 992px) {
  .footer-content {
      gap: 40px;
  }
  
  .footer-column {
      flex: 0 0 calc(50% - 20px);
  }
  
  .newsletter {
      flex: 0 0 100%;
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  
  .footer-column {
      flex: 0 0 100%;
  }
  
  .contact-info {
      flex-direction: column;
      gap: 20px;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  
  .social-icons {
      justify-content: center;
  }

  .ddropdown-menu {
      position: static;
      background-color: #fafafa;
      min-width: 100%;
      border-radius: 4px;
      margin-top: 0;
      padding: 8px 0;
      opacity: 1;
      transform: none;
  }

  .ddropdown:hover .ddropdown-menu {
      display: block;
  }
}

/* Footer Section End's */