:root {
    --primary-color: #C7A82B;
    --secondary-color: #1B1B1B;
    --text-color: #333333;
    --light-color: #f8f9fa;
    --accent-color: #8D7A22;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('images/1.jpeg') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-text .lead {
    font-size: 1.5rem;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Value Cards */
.value-card {
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
}

.value-card:hover {
    transform: translateY(-10px);
}

/* Service Sections */
.service-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-section:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Hexagon Image Containers */
.service-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hexagon-container {
    width: 100%;
    max-width: 350px;
}

.hexagon {
    position: relative;
    width: 100%;
    padding-bottom: 86.6%;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Clients Section */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.client-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.client-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-card h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.client-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--light-color);
    height: 100%;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0;
    color: #666;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
}

footer p {
    color: #ccc;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .service-image-container {
        margin-top: 2rem;
    }
    
    .service-section .row.flex-row-reverse .service-image-container {
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .hero-text .lead {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hero {
        text-align: center;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .client-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}