:root {
    --primary-green: #2e7d32;
    --light-green: #e8f5e9;
    --dark-text: #2c3e50;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color:#ccc;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo span {
    color: var(--dark-text);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f8f1 100%);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-green);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--light-green);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* Services */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--light-green);
    border-radius: 15px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--primary-green);
    color: var(--white);
}

/* Stats Section */
.stats {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
}

/* Contact */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact-box {
    background: #f9f9f9;
    padding: 60px;
    border-radius: 20px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1;
    }
    nav ul {
        display: none;
    }
}



/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-green);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
}



/* Contact Form */
.contact-form-section {
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-green);
}

.contact-form-section .btn-primary {
    width: 100%;
    cursor: pointer;
    border: none;
}














/* Portfolio Grid Setup */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Individual Card Styling */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0eee0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.12);
    border-color: #2e7d32;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    font-size: 1.25rem;
    color: #2e7d32;
    margin-bottom: 12px;
}

.project-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Button Hover Animation */
.btn-project {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: auto; /* Keeps button at bottom of card */
}

.btn-project:hover {
    background-color: #2e7d32;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Section Title Styling */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}












.skill-icon {
    background-color: #e6f5ea; /* Your primary green */
    width: 100%;               /* Full width of the screen */
    margin: 0;                 /* Removes any outside spacing */
    padding: 30px 0;           /* Vertical padding only (top/bottom) */
    overflow: hidden;          /* Prevents any horizontal scroll issues */
}

.icon-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-around; /* Evenly distributes icons across the full width */
    align-items: center;
    flex-wrap: nowrap;
}

.icon-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-item img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Ensure icons don't touch each other on very small screens */
@media (max-width: 480px) {
    .icon-item img {
        height: 35px;
        width: 35px;
    }
}












.cosmetic-salon-gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Gallery Grid using Masonry Style */
.gallery-grid {
    column-count: 3; /* 3 columns on desktop */
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    margin-bottom: 20px; /* Space between rows */
    border-radius: 12px;
    overflow: hidden;
    break-inside: avoid; /* Prevents image from splitting between columns */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Professional Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.8); /* Primary Green with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2; /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1; /* 1 column on mobile phones */
    }
}

