

/* Responsive Grid Adjustment */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}/* Services Section Enhancement */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 0 auto 20px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.4rem;
}

.service-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.service-link:hover {
    color: #fff;
    letter-spacing: 1px;
}

/* Responsive Grid Adjustment */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: #007bff; /* Accent Blue */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1603584173870-7f309f8a61c7?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.btn-quote {
    background: #fff;
    color: #000 !important;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
}

/* Services */
.services {
    padding: 80px 5%;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #252525;
    padding: 40px;
    border-radius: 10px;
    border-bottom: 4px solid #007bff;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: #000;
    font-size: 0.9rem;
}
/* Hero Slider Container */
.hero-container {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out; /* Smooth transition */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1; /* Visible when active class is added */
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
/* Portfolio Section Styles */
.portfolio {
    padding: 80px 5%;
    background-color: #111; /* Slightly darker than the rest for contrast */
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect: Image Zooms Slightly */
.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Hover Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.85); /* Accent color with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay-text h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.overlay-text span {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

/* Tablet/Mobile adjustments */
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Contact Section Styles */
.contact {
    padding: 80px 5%;
    background-color: #1a1a1a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* Form Styling */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #252525;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #007bff;
}

/* Info Styling */
.contact-info .info-item {
    margin-bottom: 30px;
}

.contact-info h4 {
    color: #007bff;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info p {
    color: #ccc;
    line-height: 1.8;
}

/* Map Box */
.map-placeholder {
    width: 100%;
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px dashed #555;
    color: #888;
}

/* Responsive Tablet/Mobile */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1; /* Shows info above form on mobile */
    }
}
/* Products Section Styles */
.products {
    padding: 80px 5%;
    background-color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
}

/* Badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
}

.product-badge.sale {
    background: #e74c3c; /* Red for Sale */
}

/* Images */
.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Product Content */
.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.price {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
    margin-right: 5px;
}

/* Buttons */
.btn-add {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-add:hover {
    background: #007bff;
    color: #fff;
}