* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Crucial for responsive sizing */
    font-family: 'Arial', sans-serif;
}

body {
    background: url('my\ construction.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  /* ADD THESE LINES */
    min-height: 100vh; /* Ensures the body is at least as tall as the screen */
    overflow-y: auto;  /* Allows vertical scrolling if content is long */
    overflow-x: hidden; /* Prevents awkward side-to-side scrolling */
}











.notice-wrapper {
    width: 100%;
     /* Dark red */
    overflow: hidden;
    white-space: nowrap;
}

.notice-ticker {
    display: inline-block;
    padding: 12px 0;
    color: white;
    font-weight: bold;
    font-size: 15px;
    animation: moveNotice 18s linear infinite;
}

@keyframes moveNotice {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.navbar {
    background: rgba(17, 17, 17, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    color: white;
    border-bottom: 3px solid #ffcc00; /* Industrial yellow accent */
    
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    color: #ffcc00; /* Construction yellow */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.nav-item {
    padding: 10px 15px;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}

.nav-item:hover, .active {
    background: #ffcc00;
}

.nav-item:hover a, .active a {
    color: #111;
}

/* RESPONSIVE STYLES */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

















.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-float img { width: 25px; }


.line {
    width: 25px;
    height: 3px;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex; /* Show on mobile */
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        height: 100vh;
        background: #111;
        flex-direction: column;
        width: 70%;
        transform: translateX(100%);
        transition: 0.5s ease-in;
        padding-top: 50px;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0); /* Slides menu in */
    }

    .nav-item {
        text-align: center;
        width: 100%;
    }
}



/* Container to provide spacing from the edges */
.content-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

/* Big Heading Style */
h1 {
    font-size: 3rem;
    color: #ffcc00; /* Construction Yellow */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 30px;
    text-align: center;
}

/* The Box that makes text readable over images */
.glass-card {
    background: rgba(0, 0, 0, 0.75); /* Dark transparent background */
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #ffcc00;
    
      background: var(--bg-overlay);
    color: var(--text-color);
}

h2 {
    color: #ffcc00;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

p {
    color: #f0f0f0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

ul {
    color: #f0f0f0;
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

strong {
    color: #ffcc00;
}

a {
    color: #ffcc00;
    text-decoration: underline;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    h1 { font-size: 2rem; }
    .glass-card { padding: 20px; }
}






.quote-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.custom-quote {
    position: relative;
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    padding: 30px 50px;
    background: rgba(255, 204, 0, 0.1); /* Very faint yellow tint */
    border-top: 2px solid #ffcc00;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
}

/* Decorative Large Quote Marks */
.custom-quote::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 5rem;
    color: #ffcc00;
    font-family: serif;
    opacity: 0.5;
}

.custom-quote span {
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: bold;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive adjustment for mobile */
@media screen and (max-width: 768px) {
    .custom-quote {
        font-size: 1.4rem;
        padding: 20px 30px;
    }
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffcc00;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #444;
    color: white;
    border-radius: 5px;
}

.submit-btn {
    background: #ffcc00;
    color: #111;
    
    border: none;
    border-radius: 5px;
    font-weight: 800;
    cursor: pointer;
   
     width: 100%; /* Changed from 80px to 100% for mobile ease-of-use */
    padding: 12px; /* Added padding for height */
    text-transform: uppercase;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e6b800;
}





























/* --- SETTINGS DROPDOWN --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #111;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 1002;
    border-top: 2px solid #ffcc00;
    top: 100%; /* Positions it right under the nav item */
    right: 0;
}

.dropdown-content a {
color: #ffffff; 
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ffcc00;
    color: #131111;
}

/* The Magic: Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- FOOTER STYLES --- */
.footer {
    background: rgba(17, 17, 17, 0.98);
    color: white;
    padding: 50px 0 20px 0;
    border-top: 3px solid #ffcc00;
    margin-top: 50px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 span, .footer-section h4 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

/* Ensure footer works on Mobile */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .dropdown-content {
        position: static; /* Stack inside the mobile menu */
        width: 100%;
    }
}










/* Navbar Button */
.login-trigger-btn {
    background: #ffcc00;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

/* Modal Background */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal-card {
    width: 90%;
    max-width: 400px;
    position: relative;
    padding: 40px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #ffcc00;
    cursor: pointer;
}

/* Tab Logic */
.form-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
 
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
    padding-bottom: 5px;
}

.tab-btn.active {
    border-bottom: 2px solid #ffcc00;
    color: #ffcc00;
}

.auth-form {
    display: none; /* Hidden forms */
}

.auth-form.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 5px solid #444;
    color: white;
}

.submit-btn {
    border: 4px ;
}
































/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px;
    margin-top: 20px;
}

.map-container {
    margin: 20px 0;
    border: 2px solid #ffcc00;
    border-radius: 10px;
    overflow: hidden;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #f0f0f0;
}

.contact-info strong {
    color: #ffcc00;
}

/* Form Styling (Already discussed but optimized here) */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffcc00;
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus, textarea:focus {
    border-color: #ffcc00;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    background: #ffcc00;
    color: #111;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Mobile Responsive Grid */
@media screen and (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }
}
/* Theme Button Styling */
.theme-btn {
    background: var(--yellow);
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}


























/* THEME VARIABLES */
:root {
    --bg-overlay: rgba(0, 0, 0, 0.75); /* Dark Mode Card */
    --text-color: #ffffff;
    --nav-bg: rgba(17, 17, 17, 0.95);
    --input-bg: rgba(255, 255, 255, 0.05);
    --yellow: #ffcc00;
}

/* LIGHT MODE OVERRIDES */
[data-theme="light"] {
    --bg-overlay: rgba(255, 255, 255, 0.9); /* Light Mode Card */
    --text-color: #111111;
    --nav-bg: rgba(240, 240, 240, 0.98);
    --input-bg: rgba(0, 0, 0, 0.05);
}
