/* General Styles */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 200px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between ;
    align-items: center;
    z-index: 1000;
}

/* Logo */
.nav .logo {
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

/* Navigation Links */
.nav .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav .nav-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.2s linear;
}

.nav.openSearch .nav-links a {
    opacity: 0;
    pointer-events: none;
}

/* Search Box */
.nav .search-box {
    position: absolute;
    right: 250px;
    height: 45px;
    max-width: 555px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s linear;
}

.nav.openSearch .search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 6px;
    background-color: #f8f8f8;
    padding: 0 15px 0 45px;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}

/* Search Icon */
.nav .search-icon {
    color: #333;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile View - Adjustments for Responsive Design */
.nav .navOpenBtn,
.nav .navCloseBtn {
    display: none;
}

@media screen and (max-width: 1160px) {
    .nav {
        padding: 15px 100px;
    }

    .nav .search-box {
        right: 150px;
    }
}

@media screen and (max-width: 950px) {
    .nav {
        padding: 15px 50px;
    }

    .nav .search-box {
        right: 100px;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    /* Toggle Button (Mobile) */
    .nav .navOpenBtn,
    .nav .navCloseBtn {
        display: block;
        color: #333;
        font-size: 24px;
        cursor: pointer;
    }

    /* Navigation Links */
    .nav .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        max-width: 280px;
        width: 100%;
        padding-top: 100px;
        gap: 30px;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 100;
    }

    .nav.openNav .nav-links {
        left: 0;
    }

    /* Search Box - Mobile */
    .nav .search-box {
        top: calc(100% + 10px);
        max-width: calc(100% - 20px);
        right: 50%;
        transform: translateX(50%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav {
        padding: 15px 20px;
    }
}

/* Hero Section */
.hero-section img {
    max-height: 500px;
    object-fit: cover;
}

.hero-text {
    background: rgba(0, 0, 0, 0.6);
    padding: 35px;
    border-radius: 20px;
}

/* Section Titles */
.section-title {
    color: #333;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Services Section */
.service-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 15px;
    text-align: center;
}

/* Contact Section */
.contact-info {
    background: #f8f9fa;
    border-top: 2px solid #ddd;
}

.contact-info p {
    font-size: 1rem;
}

/* Footer */
footer {
    font-size: 0.9rem;
    background: #343a40;
    color: #fff;
}

/* Hover shadow class */
.hover-shadow:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-text p {
        font-size: 0.7rem;
    }
    .service-img {
        height: 150px;
    }
    .navbar-light .navbar-brand {
        font-size: 1.1rem;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 0.8rem;
    }
}

/* Wall, Partition, Ceiling, Roofing Panels Section */
#panels {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#panels .section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

#panels p.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

#panels ul {
    list-style-type: none;
    padding-left: 0;
}

#panels ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

#panels img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Layout for Panels Section */
@media (max-width: 768px) {
    #panels .row {
        flex-direction: column;
    }
}

/* Manufacturing Capabilities Section */
#manufacturing-capabilities {
    background-color: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

#manufacturing-capabilities .section-title {
    font-weight: bold;
    font-size: 2rem;
    color: #333;
}

#manufacturing-capabilities p {
    font-size: 1rem;
    color: #555;
    text-align: justify;
}

#manufacturing-capabilities img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Layout for Manufacturing Section */
@media (max-width: 767px) {
    #manufacturing-capabilities .row {
        flex-direction: column-reverse;
    }
    
    #manufacturing-capabilities img {
        max-height: 250px;
    }
}

/* Thermal Insulation Table Styling */
#thermal-insulation {
    background-color: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

#thermal-insulation .section-title {
    font-weight: bold;
    font-size: 2rem;
    color: #333;
}

.table-responsive {
    max-width: 100%;
    overflow-x: auto;
}

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

table th, table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background-color: #0d6efd;
    color: white;
    font-size: 1.1rem;
}

table td {
    background-color: #fff;
    font-size: 1rem;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #e9ecef;
}

/* Other Products Section Styling */
#other-products {
    background-color: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

#other-products .section-title {
    font-weight: bold;
    font-size: 2rem;
    color: #333;
}

.product-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-title {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.product-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.product-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

/* Responsive Layout for Product Section */
@media (max-width: 768px) {
    .product-box {
        margin-bottom: 30px;
    }
}

/* General Section Styles */
#contact {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
}

.lead {
    font-size: 1.25rem;
    color: #495057;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
#location h2 {
    font-weight: 600;
    color: #333;
  }
  