:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --footer-bg: #1a252f;
    --footer-text: #ecf0f1;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Header & Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.btn-contact {
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../Image Assets/Index/hero section.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* --- Services Section --- */
.services-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- About Preview --- */
.about-preview {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* --- Footer --- */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.area-list {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* --- Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-preview {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }
}

/* --- Services Page Specifics --- */
.services-hero {
    height: 60vh;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../Image Assets/Services/hero section.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-detail-section {
    padding: 6rem 5%;
}

.service-detail-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-detail-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* --- Before/After Slider --- */
.comparison-container {
    flex: 1;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.img-before {
    z-index: 1;
    width: 100%; /* Changed from 50% to 100% for clip-path logic */
    /* border-right: 3px solid white; */ /* Removed border as it would be clipped */
    background-color: #ddd; /* Placeholder color */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    overflow: hidden;
    clip-path: inset(0 50% 0 0); /* Initial clip state */
}

.img-after {
    z-index: 0;
    background-color: #eee; /* Placeholder color */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
}

/* Labels for placeholders */
.img-before::after { content: "BEFORE"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.5; }
.img-after::after { content: "AFTER"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.5; }


.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    z-index: 2;
    cursor: ew-resize;
    transform: translate(-50%, calc(200px - 20px)); /* Center vertically roughly */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical line for the slider */
.slider-handle::after {
    content: "";
    position: absolute;
    top: -1000px;
    bottom: -1000px;
    left: 50%;
    width: 3px;
    background: white;
    transform: translateX(-50%);
    z-index: -1;
}

.slider-handle::before {
    content: "↔";
    color: var(--primary-color);
    font-weight: bold;
    z-index: 1;
}

@media (max-width: 768px) {
    .service-detail-row, .service-detail-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-container {
        height: 300px;
    }
}

/* --- Page Headers (Generic) --- */
.page-hero {
    height: 50vh;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), #2c3e50; /* Fallback/Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* --- Contact Page --- */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 0 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    min-width: 30px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* --- FAQ Page --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 5rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Arbitrary large height */
    padding-bottom: 1.5rem;
}

/* --- About Page --- */
.about-section {
    padding: 0 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Policies Page --- */
.policies-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5% 5rem;
    display: flex;
    gap: 3rem;
}

.policy-nav {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.policy-link {
    display: block;
    padding: 0.8rem 1rem;
    color: #666;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.policy-link:hover, .policy-link.active {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    font-weight: 600;
}

.policy-content {
    flex: 1;
}

.policy-section {
    margin-bottom: 4rem;
    scroll-margin-top: 120px; /* Offset for fixed header */
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.policy-section p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .policies-container {
        flex-direction: column;
    }
    
    .policy-nav {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* --- How It Works Section --- */
.how-it-works-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    position: relative;
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card p {
    position: relative;
    z-index: 1;
    color: #666;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.testimonials-section .section-title h2 {
    color: white;
}

.testimonials-section .section-title p {
    color: #bdc3c7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    font-weight: bold;
    color: var(--secondary-color);
}

/* --- Packages Section --- */
.packages-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 1;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.package-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.package-card ul {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
}

.package-card ul li {
    margin-bottom: 0.5rem;
    list-style: disc;
    color: #666;
}

/* --- Safety Section --- */
.safety-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 5%;
    margin-bottom: 4rem;
    border-radius: 10px;
}

.safety-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.safety-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.safety-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.safety-list li {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* --- Team Section --- */
.team-section {
    margin-top: 6rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.member-photo {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover; /* Added for img tag support */
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--secondary-color);
    font-weight: 500;
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* --- Google Rating Badge --- */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-logo {
    font-weight: bold;
    color: #4285F4; /* Google Blue */
    font-size: 1.2rem;
}

.rating-score {
    font-weight: bold;
    color: #333;
}

.google-rating .stars {
    color: #f1c40f;
    font-size: 1rem;
    margin-bottom: 0;
}

.review-count {
    color: #777;
    font-size: 0.9rem;
}

/* --- Map Section --- */
.map-section {
    width: 100%;
    height: 450px;
    background-color: #eee;
}

/* --- Portfolio Section --- */
.portfolio-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: white;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}