/* Base Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #d4af37;
    --text-color: #f5f5f5;
    --light-gray: #e0e0e0;
    --medium-gray: #888;
    --dark-gray: #222;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--accent-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 30px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--black);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 40px;
}

.navbar {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Optional, good if .nav-links has width */
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: center;
}

.nav-links a::after {
    content: '';
    position: center;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Home Section */
.home-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://media.istockphoto.com/id/1247981150/photo/usual-day-at-barbershop-two-barbers-working-with-clients-in-the-modern-barbershop.jpg?s=612x612&w=0&k=20&c=6SSz70wIo4euk_kNwGeVT1U5KTUhovZCDdwd6rwmnmw=') 
                no-repeat center center/cover;
    background-color: #0a0a0a; /* Fallback */
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.home-content {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.home-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, #c9c9c9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 100%;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .home-section .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 50px;
    }
    
    .home-content {
        text-align: left;
    }
    
    .home-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .home-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .home-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .home-content h1 {
        font-size: 2rem;
    }
    
    .home-content p {
        font-size: 1rem;
    }
}
/* About Section */
.about-section {
    background-color: var(--light-gray);
}

.about-section p {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--accent-color);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member .position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .bio {
    margin-bottom: 20px;
    color: var(--light-gray);
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member .social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-member .social-links a:hover {
    color: var(--accent-color);
}

/* Services Section Styles */
    .services-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }

    .service-section p {
        text-align: center;
        color: var(--black);
        font-size: 1.1rem;
        margin-bottom: 30px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 40px;
        font-size: 1.1rem;
    }
    
    .services-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        padding: 10px 25px;
        margin: 0 10px;
        background: none;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .tab-btn.active {
        color: #d4af37;
    }
    
    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -11px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #d4af37;
    }
    
    .tab-btn:hover:not(.active) {
        color: #333;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }
    
    .service-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .service-info {
        padding: 20px;
    }
    
    .service-info h3 {
        margin-top: 0;
        color: #1a1a1a;
        font-size: 1.3rem;
    }
    
    .price {
        font-weight: bold;
        color: #d4af37;
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .book-btn {
        background-color: #d4af37;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
    }
    
    .book-btn:hover {
        background-color: #b6982a;
    }
    
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .services-tabs {
            flex-direction: column;
            align-items: center;
        }
        
        .tab-btn {
            margin: 5px 0;
            width: 200px;
            text-align: center;
        }
        
        .tab-btn.active::after {
            bottom: -6px;
        }
    }

/* Gallery Section */
.gallery-section {
    background-color: var(--light-gray);
}

.gallery-section p {
    text-align: center;
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .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: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay p {
    color: var(--white);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay p {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: #333;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 50px;
    }
    
    .testimonials-slider {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .testimonials-slider-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .testimonial-card-inner {
        background: rgb(182, 177, 177);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .testimonial-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 3px solid #f0cd0a;
    }
    
    .testimonial-content p {
        font-style: italic;
        color: #0c0c0c;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .testimonial-content h4 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 5px;
    }
    
    .designation {
        color: #888;
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgb(146, 145, 145);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 10;
        border: none;
        font-size: 1.2rem;
        color: #333;
    }
    
    .slider-arrow:hover {
        background: #f1f1f1;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .testimonial-card-inner {
            padding: 20px;
        }
        
        .testimonial-card img {
            width: 80px;
            height: 80px;
        }
        
        .slider-arrow {
            width: 30px;
            height: 30px;
            font-size: 1rem;
        }
    }

/* Contact Section */
.contact-section {
    background-color: rgb(105, 97, 89);
}

.contact-section p {
    text-align: center;
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--accent-color);
    color: var(--black);
}

.contact-form {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-buttons {
    display: flex;
    gap: 15px;
}

.submit-btn {
    flex: 1;
    background-color: var(--accent-color);
    color: var(--black);
}

.clear-btn {
    flex: 1;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.clear-btn:hover {
    background-color: var(--accent-color);
    color: var(--black);
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--medium-gray);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--medium-gray);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--medium-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--white);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .home-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--black);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .home-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .home-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .home-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .home-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-tabs {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}



.experience-badge {
    display: inline-flex;
    margin-bottom: 30px;
    border-left: 3px solid #d4af37;
    padding-left: 15px;
}

.experience-badge span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
}

.experience-badge span:first-child {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #d4af37;
    color: #000;
    border: 2px solid #d4af37;
}

.primary-btn:hover {
    background: transparent;
    color: #d4af37;
}

.secondary-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.secondary-btn:hover {
    background: #d4af37;
    color: #000;
}

.home-image {
    flex: 1;
    position: relative;
    max-width: 6000px;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.home-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.7), transparent);
}

.awards-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: #d4af37;
    color: #000;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.awards-badge i {
    font-size: 1.2rem;
}

/* Animation */
.animate__animated.animate__fadeInDown {
    animation-delay: 0.2s;
}

.animate__animated.animate__fadeInUp {
    animation-delay: 0.4s;
}

.home-image .animate__animated.animate__fadeIn {
    animation-delay: 0.6s;
}
