:root {
    --primary-orange: #ff6b35;
    --dark-orange: #e55a2b;
    --black: #1a1a1a;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--off-white);
    color: var(--black);
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-orange);
    object-fit: cover;
    margin-bottom: 20px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-height: 100%;
}

.rating {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
}

.expertise-tag {
    background-color: var(--light-gray);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 25px;
    margin: 5px;
    display: inline-block;
    font-size: 0.9rem;
    border: 2px solid var(--primary-orange);
}
/* Navbar shadow enhancement */
.navbar {
    box-shadow: 0 4px 18px rgba(255, 107, 53, 0.12), 0 1.5px 4px rgba(0,0,0,0.08);
    z-index: 100;
}

/* Navbar link hover and active styles */
.navbar-nav .nav-link {
    color: #222;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    background: none;
}
.navbar-nav .nav-link.active {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    background: none;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    border-color: var(--primary-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 0 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 300px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.transformation-card {
background: white;
border-radius: 15px;
overflow: hidden;
margin: 0 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
min-width: 280px;
transition: transform 0.3s ease;
height: auto;
display: flex;
flex-direction: column;
}

.transformation-card:hover {
    transform: translateY(-5px);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
}

.before-img, .after-img {
    background: linear-gradient(45deg, #ddd, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: bold;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.before-img::before {
    content: 'BEFORE';
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1a1a1a; /* solid black */
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
    opacity: 0.97; /* very little transparency */
}

.after-img::before {
    content: 'AFTER';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35; /* solid orange */
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
    opacity: 0.97; /* very little transparency */
}

.scrollable-container {
    overflow-x: auto;
    padding: 20px 0;
}

.scrollable-content {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.contact-overlay {
    position: fixed;
    top: 90%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background-color: #25d366;
}

.phone-btn {
    background-color: var(--primary-orange);
}

.stats-section {
    background: var(--black);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

.services-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.services-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-overlay {
        right: 10px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
}

.footer {
    background: var(--black);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-orange);
}

.gallery-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1; /* Keeps images square regardless of size */
}

.gallery-img:hover {
    transform: scale(1.05);
}

