/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --gold: #d4af37;
    --black: #1a1a1a;
    --dark-grey: #262626;
    --white: #ffffff;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.gold-text { color: var(--gold); }

/* Navigation */
header {
    background: #000;
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-grey);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.hero-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 10px;
    color: var(--gold);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Services */
.services { padding: 60px 0; }
.section-title {
    text-align: left;
    margin-bottom: 40px;
    border-left: 5px solid var(--gold);
    padding-left: 15px;
}

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

.service-card {
    background: var(--white);
    color: var(--black);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    border-bottom: 5px solid var(--gold);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.service-card i {
    font-size: 40px;
    color: var(--black);
    margin-bottom: 15px;
}

.service-card h3 { font-size: 16px; font-weight: 700; }

/* Footer */
footer {
    background: #111;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

footer h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

footer p { margin-bottom: 10px; font-size: 14px; }

.copyright {
    text-align: center;
    padding-top: 40px;
    font-size: 12px;
    color: #666;
}
/* Additional Styles for Services Page */

.page-banner {
    background: #111;
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-banner h1 {
    color: var(--gold);
    font-size: 36px;
    text-transform: uppercase;
}

.services-detail {
    padding: 80px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* This makes every second item flip (Image on left) */
.service-item.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    color: var(--gold);
    margin-bottom: 20px;
}

.service-text p {
    color: #ccc;
    font-size: 18px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-item, .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }
}
/* Contact Page Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.contact-form-container h2 {
    color: var(--gold);
    margin-bottom: 30px;
}

.nadnet-form .form-group {
    margin-bottom: 20px;
}

.nadnet-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 14px;
}

.nadnet-form input, 
.nadnet-form select, 
.nadnet-form textarea {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

.nadnet-form input:focus {
    border-color: var(--gold);
    outline: none;
}

.btn-submit {
    background: var(--gold);
    color: black;
    padding: 15px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #b8962d;
}

.detail-box {
    background: #111;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid var(--gold);
}

.detail-box h3 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Slider Container */
.slider-container {
    width: 100%;
    height: 500px; /* Increased height for better visibility */
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--gold);
}

/* The Moving Wrapper */
.slider {
    display: flex;
    width: 300%; /* 3 slides = 300% */
    height: 100%;
    animation: slideAnimation 10s infinite ease-in-out;
}

/* Individual Slides */
.slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay for readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens the image */
}

.hero-content {
    position: relative; /* Brings text above the dark overlay */
    z-index: 10;
}

/* Background Images */
.slide1 { background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1200'); }
.slide2 { background-image: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?q=80&w=1200'); }
.slide3 { background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc51?q=80&w=1200'); }

/* Keyframe Animation for Sliding */
@keyframes slideAnimation {
    0%   { transform: translateX(0%); }      /* Slide 1 */
    30%  { transform: translateX(0%); }      /* Stay at Slide 1 */
    33%  { transform: translateX(-33.33%); } /* Move to Slide 2 */
    63%  { transform: translateX(-33.33%); } /* Stay at Slide 2 */
    66%  { transform: translateX(-66.66%); } /* Move to Slide 3 */
    96%  { transform: translateX(-66.66%); } /* Stay at Slide 3 */
    100% { transform: translateX(0%); }      /* Loop back to start */
}

/* Styling for Hero Content */
.hero-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 50px;
    color: var(--gold);
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    color: white;
}
/* Gold Hover Effect for Headings */
.section-title, .service-card h3, .contact-form-container h2, .detail-box h3 {
    position: relative;
    display: inline-block; /* Ensures the background fits the text size */
    padding: 5px 10px;
    color: var(--gold);
    transition: color 0.4s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

/* The Gold Sliding Cover */
.section-title::after, .service-card h3::after, .contact-form-container h2::after, .detail-box h3::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start outside the text */
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease-in-out;
    z-index: -1; /* Place it behind the text */
}

/* Hover State */
.section-title:hover, .service-card h3:hover, .contact-form-container h2:hover, .detail-box h3:hover {
    color: #000; /* Change text to black when gold background arrives */
}

.section-title:hover::after, .service-card h3:hover::after, .contact-form-container h2:hover::after, .detail-box h3:hover::after {
    left: 0; /* Slide the gold in */
}