/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    width: 100vw;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Light Theme */

/* Dark Theme */
/* Dark Theme */
.theme-dark {
    --bg-color: #000000;
    --text-color: #ffffff;
    --navbar-bg: #042f3a69;
    --navbar-bg-small: #042f3a;
    --navbar-shadow: #00404e;
    --link-color: #ffffff;
    --link-hover: #ffcc00;
    --cta-bg: #ffcc00;
    --cta-hover-bg: #000000;
    --cta-hover-text: #000000;

    /* Additional colors */
    --secondary-bg: #121212;
    /* Deeper background for sections */
    --border-color: #333333;
    /* Subtle borders for elements */
    --button-bg: #1f1f1f;
    /* Background for buttons */
    --button-hover-bg: #333333;
    /* Button hover background */
    --text-muted: #888888;
    /* Muted text color */
    --heading-color: #f2f2f2;
    /* Lighter color for headings */
    --card-bg: #1e1e1e;
    /* Background for cards/portfolio items */
    --card-shadow: rgba(0, 0, 0, 0.6);
    /* Subtle shadow for cards */
    --image-border: #444444;
    /* Image border color */
}

/* Light Theme */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --navbar-bg: #c0f0e4;
    --navbar-bg-small: #a5fce6;
    --navbar-shadow: #010202;
    --link-color: #000000;
    --link-hover: #01471f;
    --cta-bg: #00796b;
    --cta-hover-bg: #65ffe5;
    --cta-hover-text: #ffffff;

    /* Additional colors */
    --secondary-bg: #f4f4f4;
    /* Light grey background for sections */
    --border-color: #cccccc;
    /* Light borders */
    --button-bg: #e0f7fa;
    /* Light background for buttons */
    --button-hover-bg: #b2ebf2;
    /* Button hover background */
    --text-muted: #666666;
    /* Muted text color */
    --heading-color: #000000;
    /* Strong heading color */
    --card-bg: #f9f9f9;
    /* Light background for cards/portfolio items */
    --card-shadow: rgba(0, 0, 0, 0.1);
    /* Subtle shadow for cards */
    --image-border: #dddddd;
    /* Image border color */
}


/* Custom Scrollbar for Dark Theme */
::-webkit-scrollbar {
    width: 7px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #19242f;
    /* Track background color matching your dark theme */
}

::-webkit-scrollbar-thumb {
    background: var(--cta-bg);
    /* Scrollbar handle color for visibility and contrast */
    border-radius: 60px;
    /* Rounded corners for the scrollbar handle */
}

::-webkit-scrollbar-thumb:hover {
    background: #e0b800;
    /* Slightly lighter handle color on hover */
}

/* Firefox scrollbar styling */


/* Common Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100%;
    overflow-x: hidden;
}

.container {
    overflow-x: hidden;
    z-index: 3;

}

/* Navbar Styles */

nav.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1.5rem;
    background-color: var(--navbar-bg);
    position: sticky;
    backdrop-filter: blur(3px);
    box-shadow: 2px 2px 10px var(--navbar-shadow);
    top: 0;
    z-index: 1000;
    /* Ensure navbar is above other content */
    width: 100%;

}

.navbar-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: white;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.navbar-links li {
    margin-left: 2rem;
}

.navbar-links a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.5rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 200;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--link-hover);
}

.navbar-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--link-hover);
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar-links a::before {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff59;
    transition: width 0.7s;
    position: absolute;
    height: 30px;
    top: 10;
    left: 0;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

.navbar-links a:hover::before,
.navbar-links a.active::before {
    width: 100%;
}

.cta-button {
    background-color: var(--cta-bg);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-transform: none;
}

.cta-button:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover-text);
}

/* Mobile Styles */
.navbar-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--cta-bg);
    z-index: 1001;
    /* Ensure toggle button is above other content */
}

.themeToggle {
    font-size: 2rem;
    cursor: pointer;
    color: var(--cta-bg);
    z-index: 1001;
    /* Ensure theme toggle button is above other content */
    margin-right: 20px;
}


/* Hero section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    /* border: solid; */
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Ensure videos are below the image initially */
    opacity: 0;
    /* Start with videos hidden */
    object-fit: cover;
    transition: opacity 1.5s ease-in-out;
}

#video2 {
    opacity: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Ensure the image is above the videos initially */
    display: block;
    /* Ensure the image is visible by default */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0000005d;
    /* Semi-transparent overlay */
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    /* border: solid red; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-headline {
    font-size: 6rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: -2px 2px 3px black;
    position: relative;
    z-index: 9;
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px black;
    color: white;
    font-weight: 550;
}

.hero-text {
    position: relative;
    text-align: center;
    color: #ffffff;
    width: 100%;
    height: 60%;
    /* border: solid blue; */
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    display: none;
    /* border: solid; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Initially hidden */
}

.hero-slide.active {
    display: flex;
    opacity: 1;
}

.hero-headline {
    font-size: 6rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: -2px 2px 3px black;
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px black;
    font-weight: 550;
}


.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #ffffff00;
    background-color: #00000000;
    /* Change this to a contrasting color if needed */
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    /* z-index: 30000; */
}

.hero-cta:hover {
    background-color: #ffffff;
    /* Darker shade on hover */
}

.hero-arrow {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-arrow i {
    font-size: 2rem;
    color: #ffffff;
    animation: bounce 1s infinite;
}

/* Animation for the arrow */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* About section styles */
/* About Section */
.about-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;

}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    padding: 1rem;
    max-width: 600px;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--cta-bg);
    /* Theme-based call-to-action color */
    text-shadow: 2px 2px 3px var(--navbar-shadow);
    /* Theme shadow color */
}

.about-description,
.about-mission {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 1px var(--navbar-shadow);
    /* Theme shadow color */
}

.about-cta {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: var(--link-color);
    /* Theme-based CTA hover text */
    background-color: var(--cta-bg);
    /* Theme-based CTA background */
    text-decoration: none;
    border: solid 1px transparent;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.about-cta:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover);
    border: solid 1px var(--cta-bg);
    /* Theme hover background */
}

.about-visuals {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    max-width: 600px;
}

.about-image-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.about-image {
    width: 48%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Services section */
/* Banner Section */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    background-color: var(--navbar-bg);
    overflow-x: hidden;
    margin-bottom: 10px;
}

/* Left Image Section */
.banner-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Content Section */
/* Banner Content */
.banner-content {
    flex: 1;
    margin-left: 2rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 700px;
    /* Increased width for more detailed content */
}

/* Title */
.banner-title {
    font-size: 3.5rem;
    /* Bold and impactful */
    font-weight: 700;
    /* Strong emphasis */
    margin-bottom: 1.5rem;
    color: var(--cta-bg);
    text-shadow: 3px 3px 12px #0000004d;
    /* More defined shadow */
    line-height: 1.2;
}

/* Description */
.banner-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    /* Improved spacing for readability */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for readability */
    padding-right: 1rem;
    text-align: left;
    /* Prevent text from touching the edge */
}

/* CTA Button */
.banner-cta {
    background-color: var(--cta-bg);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 5px;
    text-transform: uppercase;
    width: 30%;
    font-weight: 600;
    /* Emphasis on the button text */
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    border: solid 1px transparent;
    /* Ensures padding is applied properly */
}

.banner-cta:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover);
    border: solid 1px var(--cta-bg);
    transform: scale(1.05);
    /* Enlarges the button slightly on hover */
}

/* Fabrication Section */
.fabrication {
    padding: 6rem 2rem;
    background: url('./images/fabricationSec.jpg') no-repeat center center/cover;
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* border: solid; */
    margin-bottom: 20px;
}

.fabrication-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.fabrication-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cta-bg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.fabrication-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 1px #ffffff4d;
}

.fabrication-cta {
    background-color: var(--cta-bg);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    border: solid 3px transparent;
}

.fabrication-cta:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover);
    border: solid 3px var(--cta-bg);
    transform: scale(1.05);
}


/* Portfolio Section */
.portfolio-section {
    padding: 60px 20px;
    background-color: var(--secondary-bg);
    color: var(--text-color);
    height: 100%;
    overflow-x: hidden;
    /* border: solid; */
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--cta-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.portfolio-item {
    background-color: var(--navbar-bg-small);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0px 4px 6px var(--navbar-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 8px var(--navbar-shadow);
}

.portfolio-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.portfolio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.portfolio-item img {
    height: 300px;
    max-width: 500px;
}


.portfolio-item p {
    font-size: 1rem;
    color: var(--text-color);
}

.view-more {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--cta-bg);
    color: var(--text-color);
    border: solid 1px transparent;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-more:hover {
    background-color: var(--cta-bg);
    color: white;
    border: solid 1px white;

}

/* Dark Theme for Portfolio */
.theme-dark .portfolio-item {
    background-color: var(--navbar-bg-small);
    box-shadow: 0px 4px 6px var(--navbar-shadow);
}

.theme-dark .view-more {
    background-color: var(--cta-bg);
}

.theme-dark .view-more:hover {
    background-color: var(--cta-hover-bg);
    color: var(--heading-color);
}



/* Contact Us Section */
/* Contact Us Section */
.contact-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--secondary-bg);
    /* Dark theme background */
    gap: 2rem;
}

.contact-background {
    flex: 1;
    background-image: url('./images/furniture-998265.jpg');
    /* Adjust the path to your image */
    background-size: cover;
    background-position: center;
    height: 400px;
    color: var(--text-color);
    /* White text color */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 4px 8px var(--card-shadow);
    /* Subtle shadow */
}

.background-content {
    text-align: center;
    backdrop-filter: blur(2px);
    background-color: #0000001c;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.background-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--cta-bg);
    /* Light heading color */
}

.background-content p {
    font-size: 1rem;
    color: var(--heading-color);
    font-weight: bold;
    width: 70%;
    text-shadow: 1px 1px 2px var(--cta-hover-text);
    /* Muted text color */
}

.contact-form {
    flex: 1;
    background: var(--card-bg);
    /* Dark theme card background */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--card-shadow);
    /* Subtle shadow */
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    /* Light heading color */
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
    /* White text color */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    /* Dark theme border color */
    border-radius: 4px;
    background: var(--card-bg);
    /* Dark theme background */
    color: var(--text-color);
    /* White text color */
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--cta-hover-text);
    /* Text color for button */
    background-color: var(--cta-bg);
    /* Call-to-action button background */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--text-color);
    /* Darker background for hover effect */
}


/* Footer section */
/* Footer Base Styles */
.footer {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 1.6;
}

.footer h3 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.footer p, .footer ul {
    color: var(--text-muted);
    font-size: 13px;
}

.footer a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--link-hover);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Us and Developer Info */
.footer-about,
.footer-developer {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--card-shadow);
}

.footer-developer ul {
    display: flex;
    gap: 10px;
}

.footer-developer ul li a i {
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-developer ul li a i:hover {
    color: var(--link-hover);
}

/* Newsletter Section */
.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input[type="email"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--button-bg);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.footer-newsletter input[type="email"]:focus {
    border-color: var(--link-hover);
}

.footer-newsletter .subscribe-btn {
    background-color: var(--cta-bg);
    color: var(--cta-hover-text);
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.footer-newsletter .subscribe-btn:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-bg);
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a i {
    font-size: 16px;
    margin-right: 5px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover i {
    color: var(--link-hover);
}

/* Open Hours and Location */
.footer-hours-location ul {
    list-style: none;
    padding: 0;
}

.footer-hours-location ul li {
    margin-bottom: 8px;
}

.footer-hours-location i {
    margin-right: 5px;
    font-size: 16px;
    color: var(--cta-bg);
}

.footer-hours-location a {
    color: var(--link-color);
}

.footer-hours-location a:hover {
    color: var(--link-hover);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom a {
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: var(--link-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-developer ul {
        justify-content: center;
    }
}





@media (max-width: 1200px) {

    /* Portfolio section */
    .section-title {
        font-size: 2.2rem;
    }

    .portfolio-item h3 {
        font-size: 1.4rem;
    }

    .portfolio-item img {
        height: 250px;
    }
}


@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .navbar-links {
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        /* Full viewport height */
        width: 100vw;
        /* Full viewport width */
        flex-direction: column;
        background-color: var(--navbar-bg-small);
        backdrop-filter: blur(2px);
        align-items: center;
        justify-content: flex-start;
        transform: translateX(100%);
        /* Start off-screen */
        padding: 0;
        margin-top: 70px;
        display: none;
        transition: transform 0.3s ease;
        z-index: 2000;
        /* Ensure it appears above other content */
        /* Ensure it appears above other content */
    }

    .navbar-links li {
        margin: 1rem 0;
        overflow-y: visible;

    }

    .navbar-toggle {
        display: block;
    }


    .navbar.active .navbar-links {
        transform: translateX(0);
        backdrop-filter: blur(10px);
        display: flex;
        z-index: 2000;
        overflow: visible;
    }

    /* Hero section */

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
        margin-bottom: 4rem;

    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background: #0000005d;
        /* Semi-transparent overlay */
        z-index: 3;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: white;
        position: relative;
        z-index: 9;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    .hero-cta {
        padding: 0.75rem 1.5rem;
    }

    .hero-arrow i {
        font-size: 1.5rem;
    }

    .hero-arrow {
        position: absolute;
        bottom: -3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        margin-bottom: 100px;
    }

    /* About section styling */
    .about-section {
        height: 100%;
        font-size: 15px;
    }

    .about-description {
        font-size: 17px;
    }

    .about-mission {
        font-size: 17px;

    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content,
    .about-visuals {
        max-width: 100%;
    }

    .about-image-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Services section */
    .banner {
        margin-top: 30px;
        flex-direction: column;
        height: auto;
        /* Adjust height for smaller screens */
        text-align: center;
        height: 100%;
        overflow: hidden;
    }

    .banner-image {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .banner-content {
        margin-left: 0;
        max-width: 90%;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-cta {
        width: auto;
        padding: 0.75rem 1.5rem;
    }

    /* Fabrication section */
    .fabrication {
        padding: 4rem 1rem;
    }

    .fabrication-title {
        font-size: 2rem;
    }

    .fabrication-description {
        font-size: 1rem;
    }

    /* Portfolio section */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item h3 {
        font-size: 1.3rem;
    }

    .portfolio-item img {
        height: 220px;
    }

    .view-more {
        width: 180px;
        padding: 8px 16px;
    }

    /* Contact Us Section */
    .contact-us {
        flex-direction: column;
    }

    .contact-background,
    .contact-form {
        width: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        font-size: 0.875rem;
    }

    .banner-cta {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    /* Portfolio section */
    .section-title {
        font-size: 1.8rem;
    }

    .portfolio-item h3 {
        font-size: 1.2rem;
    }

    .portfolio-item img {
        height: 200px;
    }

    .view-more {
        width: 160px;
        padding: 6px 12px;
    }

    .about-video-container {
        display:none
        
    }
}


/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1180px) {
    .navbar-links {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #022e368e;
        backdrop-filter: blur(2px);
        height: 100vh;
        /* Full viewport height */
        width: 50%;
        /* Full viewport width */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(100%);
        /* Start off-screen */
        padding: 0;
        transition: transform 0.3s ease;
        z-index: 2000;
        /* Ensure it appears above other content */
        border-left: ridge 1px;
        border-bottom: ridge 1px;
        border-radius: 10px 0 0 10px;
        /* Ensure it appears above other content */
    }

    .navbar-links li {
        margin: 1rem 0;
    }

    .navbar-toggle {
        display: flex;
    }


    .navbar.active .navbar-links {
        transform: translateX(0);
        backdrop-filter: blur(10px);
        display: flex;
        z-index: 200;
    }

    /* Hero section */
    .hero-headline {
        font-size: 4rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: white;
        position: relative;
        z-index: 9;
    }

    .hero-subheadline {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

}