:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --light-color: #F8F5F0;
    --dark-color: #5D2906;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: #333 !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

.btn-contact {
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1758&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.btn-hero {
    background-color: var(--accent-color);
    color: #333;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.section-title {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    margin-bottom: 3rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    background-color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.client-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

.client-role {
    color: #777;
    font-size: 0.9rem;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #2C1810;
    color: #ddd;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #aaa;
}

#devby a {
    color: var(--accent-color);
    text-decoration: none;
}
#devby a:hover {
    text-decoration:wavy;
    transition: all 0.3s;
    color: whitesmoke
    
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .nav-link {
        margin: 0.2rem 0;
    }
}

/* Hover effect on cards */
.service-card img {
    transition: 0.3s;
    cursor: zoom-in;
}
.service-card img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Modal Animation */
#modalImg {
    animation: zoom 0.4s;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 3px solid #8B4513;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}