:root {
    --primary-color: #0f172a;
    /* Dark Navy */
    --secondary-color: #334155;
    /* Slate */
    --accent-color: #fbbf24;
    /* Amber Gold */
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --white: #ffffff;

    .navbar {
        background-color: var(--white);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        transition: var(--transition);
    }

    .navbar-brand {
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--primary-color);
        letter-spacing: 1px;
    }

    .navbar-brand span {
        color: var(--accent-color);
    }

    .nav-link {
        color: var(--secondary-color);
        font-weight: 500;
        margin-left: 15px;
        transition: var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    .btn-primary-custom {
        background-color: var(--primary-color);
        color: var(--white);
        border: none;
        padding: 10px 25px;
        border-radius: 5px;
        font-weight: 600;
        transition: var(--transition);
    }

    .btn-primary-custom:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1951&q=80');
        background-size: cover;
        background-position: center;
        height: 90vh;
        display: flex;
        align-items: center;
        color: var(--white);
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        animation: fadeInUp 1.2s ease;
    }

    /* About Section */
    .about-section {
        padding: 80px 0;
        background-color: var(--white);
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--accent-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .about-card {
        padding: 30px;
        background: var(--bg-light);
        border-radius: 10px;
        height: 100%;
        transition: var(--transition);
        border-left: 4px solid var(--accent-color);
    }

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Services Preview */
    .services-preview {
        padding: 80px 0;
        background-color: var(--bg-light);
    }

    .service-card {
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        height: 100%;
        text-align: center;
        padding: 30px 20px;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        font-size: 3rem;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    /* Footer */
    footer {
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 60px 0 20px;
    }

    .footer-widget h4 {
        color: var(--white);
        margin-bottom: 25px;
        font-size: 1.2rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .contact-info li {
        display: flex;
        margin-bottom: 15px;
        color: #cbd5e1;
    }

    .contact-info i {
        margin-right: 10px;
        color: var(--accent-color);
        margin-top: 5px;
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 50px;
        padding-top: 20px;
        text-align: center;
        font-size: 0.9rem;
        color: #94a3b8;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }
    }

    /* Gallery Styles */
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay h5 {
        color: var(--white);
        margin: 0;
        transform: translateY(10px);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay h5 {
        transform: translateY(0);
    }

    .logo {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
    }

    .logo-img {
        height: 60px;
        width: auto;
    }

    .logo-text {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.1;
        color: var(--primary-color);
        text-decoration: none;
    }

    .logo-top {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 42px;
        letter-spacing: 2px;
    }

    .logo-bottom {
        font-family: 'Playfair Display', serif;
        font-size: 30px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }
}