:root {
    --primary-green: #339933;
    --primary-gray: #2E3E2E;
    --hover-green: #3FAF3F;
    --background: 255, 255, 255;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: transparent;
    color: var(--primary-gray);
    padding-top: 60px;
    overflow-x: hidden;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Takes available space */
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--primary-gray);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    margin-top: 5px;
    margin-bottom: -5px;
    width: 30%;
    max-width: 700px;
	min-width: 200px;
}

.menu {
    display: flex;
}

.menu-item {
    margin-left: 30px;
    list-style: none;
    position: relative;
}

.menu-link {
    font-family: 'Rajdhani', monospace;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: var(--primary-gray);
    letter-spacing: 1px;
    text-transform: lowercase;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: var(--hover-green);
}

.menu-link::before {
    content: "/";
    color: var(--primary-green);
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-link:hover::before {
    opacity: 1;
}

.active .menu-link {
    color: var(--primary-green);
}

.active .menu-link::before {
    opacity: 1;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gray);
    font-size: 24px;
    cursor: pointer;
}

/* Cursor effect */
.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: var(--primary-green);
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Background Video */
.video-container {
    margin-top: 10%;
    margin-left: 5%;
    position: fixed;    
    top: 0;
    left: 380px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -9999;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content Sections */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	background-color: rgba(var(--background), 0.8);
}

.heading {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 40px;
    text-align: center;
}

.heading::before {
    content: "# ";
    color: var(--primary-green);
}

/* Hero Section */
.hero {
	padding: 100px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
}

.hero-content {
	width: 100%;
    max-width: 800px;
    padding: 0px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: var(--hover-green);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
	font-size: 23px;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 15px;
    color: var(--primary-green);
}

/* Products Preview */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-category {
    text-decoration: none;
    color: var(--primary-gray);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
}

.product-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-category h3 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-green);
}

.center-button {
    text-align: center;
}

.secondary-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--primary-green);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Testimonials */
.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 18px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: var(--primary-green);
    font-weight: bold;
}

/* Page Content */
.page-header {
    background-color: rgba(46, 62, 46, 0.1);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: var(--primary-green);
}

.page-content {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Titillium Web', sans-serif;
}

textarea.form-control {
    min-height: 150px;
}

/* About Page */
.about-section {
    margin-bottom: 20px;
}

.product-section p{
	margin-bottom: 40px;
}

.about-section h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
	margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Products Page */
.product-section {
    margin-bottom: 80px;
}

.product-section h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 28px;
}

.product-section p{
	margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.product-info p {
    margin-bottom: 15px;
    color: #666;
}

.product-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.product-link:hover {
    background-color: var(--hover-green);
}

/* Footer Styles */
.site-footer {
    width: 100%;
    background-color: var(--primary-gray);
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::before {
    content: "# ";
    color: var(--primary-green);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Rajdhani', sans-serif;
}

.footer-column a:hover {
    color: var(--hover-green);
}

.footer-column a::before {
    content: "/";
    color: var(--primary-green);
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-column a:hover::before {
    opacity: 1;
}

address {
    font-style: normal;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--hover-green);
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--primary-gray);
        z-index: 999;
    }

    .menu.active {
        transform: translateY(0);
    }

    .menu-item {
        margin: 10px 0;
    }

    .mobile-toggle {
        display: block;
    }
	.hero-content {
	width: 80%;
    max-width: 600px;
    padding: 10px 0px 10px 10px;
    background-color: transparent;
    border-radius: 8px;
}
	.hero {
		padding: 20px;
	}
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .heading {
        font-size: 28px;
    }

    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links a {
        margin: 0 10px;
    }

.video-container {
        margin-top: 0; /* Remove the top margin */
        margin-left: 250px; /* Remove the left margin */
        position: fixed;
        top: auto; /* Remove the top positioning */
        bottom: 0;
        left: 0px;
        width: 100%;
        height: 80vh; /* Set a specific height, e.g. 40% of viewport height */
        overflow: hidden;
        z-index: -9999;
    }

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin-bottom: 0;
	}}

/* Add these CSS rules to ensure proper mobile menu behavior */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--primary-gray);
        z-index: 999;
    }

    .menu.active {
        transform: translateY(0) !important;
		position: fixed;
		color: var(--primary-gray);
        top: 60px;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
}

/* Ensure mobile toggle is hidden on desktop */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
    
    .menu {
        transform: none !important;
    }
}

/* Add this to your styles.css file */

/* Make contact section responsive */
.contact-section {
    width: 100%;
}

/* Replace the inline grid styles with these classes */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.service-centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-center-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

/* Improve responsive behavior */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-centers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Fix menu positioning */
    .menu {
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        position: fixed;
    }

    .menu.active {
        transform: translateY(0);
    }
    
    /* Improve video container positioning */
    .video-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        z-index: -9999;
    }
    
    /* Make form elements adjust to smaller screens */
    .form-control {
        max-width: 100%;
        width: 100%;
    }
    
    .logo img {
        width: 60%;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-content {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}