body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Nav Section Starts */

    /* Nav Menu */
    header {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        line-height: 1.5;
        position: sticky;
        top: 0;
        z-index: 50;
        width: 100%;
        background-color: white;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .header-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
    }
    
    .logoo {
        flex-shrink: 0;
    }
    
    .logoo img {
        height: 60px;
    }
    
    /* Desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    @media (min-width: 768px) {
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        color: #374151;
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
        font: inherit;
        color: inherit;
    }


    
    .nav-button:hover {
        color: #111827;
    }
    
    .nav-link {
        color: #374151;
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
    }
    
    .nav-link:hover {
        color: #111827;
    }
    
    .chevron-icon {
        margin-left: 0.25rem;
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
    }
    
    .rotate {
        transform: rotate(180deg);
    }
    
    .dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 0.5rem;
        width: 12rem;
        border-radius: 0.375rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 10;
        display: none;
        text-decoration: none;
    }
    
    .dropdown.active {
        display: block;
    }
    
    .dropdown-item {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        color: #000;
        text-decoration: none;
    }
    
    .dropdown-item:hover {
        background-color: #214150;
        color: #fff;
        border-radius: 0.375rem;
    }
    
    /* CTA buttons */
    .ctaa-buttons {
        display: none;
    }
    
    @media (min-width: 768px) {
        .ctaa-buttons {
            display: flex;
            gap: 1rem;
        }
    }
    
    .btnn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 0.375rem;
        transition: all 0.2s;
        text-decoration: none;
    }
    
    .btnn-outline {
        border: 1px solid #821928;
        color: #000;
        background-color: white;
    }
    
    .btnn-outline:hover {
        background-color: #eff6ff;
    }
    
    .btnn-primary {
        border: 1px solid transparent;
        color: white;
        background-color: #821928;
    }
    
    .btnn-primary:hover {
        background-color: #214150;
    }
    
    /* Mobile menu button */
    .mobile-menu-button {
        all: unset; /* Removes default button styles */
        display: flex;
        padding: 0.5rem;
        color: #374151;
    }
    
    @media (min-width: 768px) {
        .mobile-menu-button {
            display: none;
        }
    }
    
    .mobile-menu-button:hover {
        color: #111827;
        background-color: #f3f4f6;
        border-radius: 0.375rem;
    }
    
    .mobile-menu-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Mobile menu */
    .mobile-menu {
        display: none;
        padding: 0.5rem;
        background-color: white;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-nav-item {
        margin-bottom: 0.25rem;
    }
    
    .mobile-nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 0.375rem;
    }
    
    .mobile-nav-button:hover {
        background-color: transparent;
        color: #111827;
    }
    
    .mobile-nav-link {
        display: block;
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 0.375rem;
        text-decoration: none;
    }
    
    .mobile-nav-link:hover {
        background-color: #f3f4f6;
        color: #111827;
    }
    
    .mobile-dropdown {
        padding-left: 1rem;
        margin-top: 0.25rem;
        display: none;
    }
    
    .mobile-dropdown.active {
        display: block;
    }
    
    .mobile-dropdown-item {
        display: block;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        color: #4b5563;
        border-radius: 0.375rem;
    }
    
    .mobile-dropdown-item:hover {
        background-color: #f3f4f6;
        color: #111827;
    }
    
    .mobile-cta {
        padding: 1rem 0.75rem;
        margin-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .mobile-cta .btnn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
  
    /*Nav Section Ends */





/* Hero Image Section Starts */

.image-section {
    position: relative;
    width: 100%;
    height: auto; /* Full viewport height */
    overflow: hidden; /* Ensure no overflow */
}

.image-section img {
    width: 100%; /* Fixed width to maintain size consistency */
    height: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Ensures it doesn't overflow on smaller screens */
}

/* Ensure the image size remains fixed on mobile */
@media (max-width: 1200px) {
    .image-section img {
        width: 1200px; /* Fixed width, even on mobile */
        height: auto;
    }
}

/* Hero Image Section Ends */

/* INFO 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;
    }
}

/* INFO Section Ends */

/* Mesh doors section Starts */

    /* Mesh doors section */
    .mesh-doors-section {
        max-width: 1800px;
        margin: 0 auto;
        padding: 80px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        color: #333;
        line-height: 1.6;
      }
  
      /* Left content */
      .mesh-doors-content {
        flex: 1;
        animation: fadeInLeft 0.8s ease-out;
      }
  
      .mesh-doors-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 16px;
        line-height: 1.2;
      }
  
      .mesh-doors-content p {
        font-size: 1.125rem;
        color: #4a5568;
        margin-bottom: 24px;
        max-width: 540px;
      }
  
      .cta-button {
        display: inline-block;
        background-color: #821928;
        color: white;
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        font-size: 1rem;
      }
  
      .cta-button:hover {
        background-color: #214150;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(49, 130, 206, 0.2);
      }
  
      .free-trial {
        display: inline-block;
        margin-left: 16px;
        font-size: 0.875rem;
        color: #718096;
      }
  
      /* Right content - product display */
      .mesh-doors-display {
        flex: 1;
        position: relative;
        animation: fadeInRight 0.8s ease-out;
      }
  
      .product-showcase {
        background-color: #e2e8f0;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        position: relative;
      }
  
      .main-product {
        width: 100%;
        height: auto;
        display: block;
      }
  
      .product-controls {
        padding: 16px;
        background-color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      
      /* Feature highlights */
      .feature-highlights {
        margin-top: 24px;
      }
  
      .feature {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
      }
  
      .feature-icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        color: #821928;
      }
  
      /* Animations */
      @keyframes fadeInLeft {
        from {
          opacity: 0;
          transform: translateX(-30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
  
      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translateX(30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
  
      /* Responsive styles */
      @media (max-width: 992px) {
        .mesh-doors-section {
          flex-direction: column;
          padding: 60px 20px;
        }
  
        .mesh-doors-content, 
        .mesh-doors-display {
          width: 100%;
        }
  
        .mesh-doors-content {
          margin-bottom: 40px;
        }
      }
  
      @media (max-width: 768px) {
        .mesh-doors-content h2 {
          font-size: 2rem;
        }
  
        .mesh-doors-content p {
          font-size: 1rem;
        }
  
        .product-controls {
          flex-direction: column;
          gap: 16px;
          align-items: flex-start;
        }
      }
  
      @media (max-width: 480px) {
        .mesh-doors-section {
          padding: 40px 16px;
        }
  
        .mesh-doors-content h2 {
          font-size: 1.75rem;
        }
  
        .cta-button {
          width: 100%;
          text-align: center;
        }
  
        .free-trial {
          display: block;
          margin-left: 0;
          margin-top: 8px;
          text-align: center;
        }
      }

/* Mesh doors section Ends */

/* wood Section 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 Section Ends */



/* Stronger Section Start */

.hhero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.image-container {
    flex: 1;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cricket-image {
    max-width: 100%;
    height: auto;
    animation: fadeIn 2s ease-in-out, floatAnimation 4s ease-in-out infinite alternate;
}

.text-container {
    flex: 1;
    padding-left: 2rem;
    animation: slideIn 1.2s ease-out 0.5s both;
}

.text-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.text-container h1 strong {
    display: block;
    font-size: 4rem;
    color: #222;
    position: relative;
    animation: emphasize 2s ease-in-out infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes emphasize {
    from {
        transform: scale(1);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    to {
        transform: scale(1.05);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hhero-section {
        flex-direction: column;
        padding: 1rem;
    }

    .image-container {
        margin-bottom: 2rem;
        width: 100%;
    }

    .cricket-image {
        max-width: 80%;
    }

    .text-container {
        padding-left: 0;
        text-align: center;
    }

    .text-container h1 {
        font-size: 2.5rem;
    }

    .text-container h1 strong {
        font-size: 3rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .cricket-image {
        max-width: 90%;
    }

    .text-container h1 {
        font-size: 2rem;
    }

    .text-container h1 strong {
        font-size: 2.5rem;
    }
}

/* Stronger 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 */