/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b00;
    margin: 15px auto;
}

.btn {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: #e05f00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles - Black Background as requested */
#header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6b00;
}

/* Home Section */
#home {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    /* To account for fixed header */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

/* About Section */
#about {
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    max-height: 60px;
    /* Increased from 50px for better visibility */
    width: auto;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px 0;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        right: 20px;
        /* Position on the right side */
        top: 50%;
        transform: translateY(-50%);
    }

    /* Ensure logo stays on the left */
    #header .container {
        position: relative;
        justify-content: flex-start;
        /* Align logo to the left */
    }

    /* Make logo more visible on mobile */
    .logo img {
        max-height: 50px;
    }
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

/* Products Section */
#products {
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #333;
}

.product-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Gallery Section (New) */
#gallery {
    background-color: #f9f9f9;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gallery-category h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.gallery-category h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #ff6b00;
    margin-top: 10px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-images a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-images a:hover {
    transform: translateY(-5px);
}

.gallery-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-images a:hover img {
    transform: scale(1.05);
}

/* Services Section (New) */
#services {
    background-color: #fff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: #dee2e6;
    /* Slightly darker light gray */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
}

/* Contact Section */
#contact {
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #ff6b00;
    /* Add this line for a visible wrap */
}

.info-item i {
    font-size: 2rem;
    color: #ff6b00;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b00;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer Section */
#footer {
    background-color: #222;
    color: #fff;
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about,
.footer-links,
.footer-services,
.footer-location {
    flex: 1;
    min-width: 200px;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-location h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3:after,
.footer-links h3:after,
.footer-services h3:after,
.footer-location h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff6b00;
}

.footer-about p {
    margin-bottom: 20px;
    color: #bbb;

}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: left;
    justify-content: left;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b00;
    transform: translateY(-5px);
}

.footer-links,
.footer-services {
    text-align: left;
    align-items: flex-start;
}

.footer-links ul,
.footer-services ul {
    text-align: left;
    padding-left: 0;
}

.footer-links h3,
.footer-services h3 {
    text-align: left;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #ff6b00;
    padding-left: 5px;
}

.footer-location p {
    color: #bbb;
    margin-bottom: 10px;
}

/* .newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e05f00;
} */

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    #header {
        padding: 15px 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    nav ul li {
        margin-left: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-images {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles - Updated for Bootstrap */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    height: 56px;
    /* Minimal navbar height */
    min-height: 56px;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    overflow: visible;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.navbar-brand img {
    height: 100px;
    /* Logo exactly 100px */
    max-height: 100px;
    margin-top: -22px;
    /* Adjust to visually center if needed */
    margin-bottom: -22px;
    object-fit: contain;
    transition: height 0.3s;
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 60px;
        max-height: 60px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* Add this to styles.css */
.info-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8em;
    background: #f4f4f4;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .info-number {
        font-size: 0.85em;
        padding: 5px 8px;
        word-break: break-all;
    }
}

@media (max-width: 600px) {

    .footer-links,
    .footer-services {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .footer-links ul,
    .footer-services ul {
        padding-left: 0;
        text-align: left;
    }

    .footer-links h3,
    .footer-services h3 {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .info-item h3 {
        font-size: 1em;
    }

    .info-item p,
    .info-email {
        font-size: 0.8em;
        /* word-break: break-all; */
    }
}

/* New Phone Number Styles */
.navbar-phone {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.phone-link {
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    padding: 8px 12px;
    text-decoration: none;
}

.phone-link i {
    margin-right: 6px;
    color: #ff6b00;
    font-size: 1.2em;
}

@media (max-width: 991.98px) {
    .navbar-phone-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1050;
        display: flex;
        align-items: center;
        pointer-events: auto;
    }

    .navbar-phone-center .phone-link {
        color: #fff;
        font-weight: bold;
        font-size: 1.1em;
        padding: 8px 12px;
        text-decoration: none;
        background: transparent;
    }

    .navbar-phone-center .phone-link i {
        margin-right: 6px;
        color: #ff6b00;
        font-size: 1.2em;
    }
}

@media (min-width: 992px) {
    .navbar-phone-center {
        display: none !important;
    }
}

.info-email-flex {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 1em;
    word-break: break-all;
}

.info-email-flex span {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .info-email-flex {
        font-size: 0.8em;
        gap: 6px;
        flex-wrap: wrap;
    }

    .info-email-flex span {
        white-space: normal;
        word-break: break-all;
        font-size: 0.92em;
    }


}