body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #e6c068; /* Gold text color */
}

header {
    background-color: #000000; /* Black */
    color: #e6c068; /* Gold */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

header .logo img {
    height: 300px; /* Adjust logo size */
    margin-bottom: 10px;
}

header .sub-logo {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
    color: #e6c068; /* Gold color for emphasis */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #e6c068; /* Gold */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffffff; /* White on hover */
}

.hero {
    background-color: #000000; /* Black */
    color: #e6c068; /* Gold */
    text-align: center;
    padding: 80px 20px;
 border-top: 5px solid #e6c068; /* Gold line above the hero section */
    border-bottom: 5px solid #e6c068; /* Gold accent */
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #e6c068; /* Gold */
    color: #000000; /* Black */
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #c0a054; /* Darker Gold on hover */
    transform: translateY(-2px);
}

.video-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #1a1a1a; /* Dark Gray */
}

video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials {
    background-color: #2a2a2a; /* Darker Gray */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial {
    background-color: #3a3a3a; /* Lighter Dark Gray */
    border-left: 5px solid #e6c068; /* Gold accent */
    padding: 20px;
    margin: 15px 0;
    width: 90%;
    border-radius: 10px;
    font-style: italic;
    transition: transform 0.3s;
    color: #e6c068; /* Gold */
}

.testimonial:hover {
    transform: translateY(-3px);
}

.services {
    padding: 40px 20px;
    text-align: center;
    background-color: #000000; /* Black */
}

.service-card {
    background-color: #1a1a1a; /* Dark Gray */
    color: #e6c068; /* Gold */
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    display: inline-block;
    width: calc(25% - 40px);
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    background-color: #333333; /* Even darker gray on hover */
    transform: translateY(-3px);
}

.contact-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #000000; /* Black */
}

.contact-button, .location-button {
    display: inline-block;
    background-color: #e6c068; /* Gold */
    color: #000000; /* Black */
    padding: 12px 30px;
    margin: 15px;
    text-decoration: none;
    border-radius:    25px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover, .location-button:hover {
    background-color: #c0a054; /* Darker Gold on hover */
    transform: translateY(-2px);
}

.image-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #1a1a1a; /* Dark Gray */
}

.image-section h2 {
    margin-bottom: 20px;
    color: #e6c068; /* Gold */
}

.image-box {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
}

.image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 2px solid #e6c068; /* Gold border */
    transition: transform 0.3s;
}

.image:hover {
    transform: scale(1.05);
}

footer {
    background-color: #000000; /* Black */
    color: #e6c068; /* Gold */
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer .social-media {
    margin-bottom: 10px;
}

footer .social-media a {
    color: #e6c068; /* Gold */
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

footer .social-media a:hover {
    color: #ffffff; /* White on hover */
}

footer p {
    font-size: 14px;
    margin: 0;
}

/* Add golden line after each section */
section {
    border-bottom: 5px solid #e6c068; /* Gold line */
}



