﻿/* ================= BODY & BASE ================= */
body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FAFAFA;
}

/* ================= HEADER ================= */
/*.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 16px 6%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/

/* LOGO */
/*.logo img {
    width: 150px;
    height: 80px;
    object-fit:unset;
}*/
/* ================= HEADER ================= */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white; /* Pure white - exact logo match */
    padding: 16px 6%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop */
.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        width: 140px;
        height: 70px;
        object-fit: contain;
        object-position: center;
    }



/* Tablet */
@media (max-width: 992px) {
    .logo img {
        width: 180px;
        height: 75px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo img {
        width: 160px;
        height: 65px;
    }
}



/* MENU - Rose Gold */
.nav-links {
    display: flex;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: #80632b; /* Light rose gold */
    font-weight: 600;
    font-size: 18px;
    transition: all 0.5s ease;
    position: relative;
}

    .nav-link:hover {
        color: #B76E79; /* Deeper rose gold */
        text-shadow: 0 2px 8px rgba(183, 110, 121, 0.3);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #B76E79;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #CDB79E;
    cursor: pointer;
}

/* SPACE BELOW HEADER */
.page-content {
    padding-top: 100px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 6%;
        top: 80px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        width: 200px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(205, 183, 158, 0.2);
    }

        .nav-links.active {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }
}

/* ================= SECTIONS ================= */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-gray {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F9FA 100%);
}

.section-white {
    background: #FFFFFF;
}

/* ================= HERO ================= */
.hero-section {
    background-image: url('/images/homepage.png');
    background-repeat: no-repeat;
    background-size: cover; /* Full width + height coverage */
    background-position: left center; /* Keeps left positioning */
    height: 100vh;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}


.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.hero-text {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(-100%) saturate(180%); /* Much lighter blur */
    padding: 40px 50px;
    border-radius: 30px;
    max-width: 400px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}


    .hero-text p {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #2C3E50;
    }

/* Small CTA Button */
.btn-small {
    display: inline-block !important; /* Prevents full width */
    width: auto !important; /* Natural text width */
    min-width: 160px; /* Minimum size */
    padding: 14px 30px !important; /* Smaller padding */
    font-size: 1rem; /* Slightly smaller text */
}

/* Ensure all glass buttons respect display: inline-block */
.btn-glass {
    display: inline-block;
    width: auto;
    padding: 14px 30px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

    .btn-glass:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    }


/* ================= SERVICES GRID ================= */


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glass-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

    .glass-card:hover {
        transform: translateY(-16px);
        box-shadow: 0 15px 40px rgba(183, 110, 121, 0.12);
    }

    .glass-card img {
        width: 100%;
        height: 250px;
        object-fit: fill;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .glass-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #2C3E50;
    }

    .glass-card p {
        font-size: 0.95rem;
        color: #5A6C7D;
    }

/* Responsive Grids */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= WHY CHOOSE ================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

    .why-grid .glass-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 30px 20px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(205, 183, 158, 0.15);
        transition: all 0.3s ease;
    }

        .why-grid .glass-card:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(183, 110, 121, 0.15);
        }

    .why-grid h4 {
        font-weight: 600;
        margin: 15px 0;
        color: #2C3E50;
    }

    .why-grid p {
        font-size: 0.95rem;
        color: #5A6C7D;
    }

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.premium-footer {
   /* background: linear-gradient(135deg, #1A1A1A 0%, #80632b 100%);*/
  background: #80632b ;
  color: white;
    padding: 80px 6% 40px;
    position: relative;
}

    .premium-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #80632b, transparent);
    }

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-left h4 {
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.footer-left > p {
    color: white;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    transition: color 0.3s ease;
}

    .footer-contact p:hover {
        color: #D4AF37;

    }

.footer-contact i {
    font-size: 18px;
    color: #D4AF37;
    width: 20px;
}

.footer-nav h5 {
    color: white;
    
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .footer-nav a:hover {
        color: #D4AF37;
        padding-left: 5px;
    }

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        color: #D4AF37;
        font-size: 18px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #D4AF37;
            color: white;
            transform: translateY(-2px);
        }

.footer-right p {
    color: white;
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 60px 6% 30px;
    }
}


.section-container h2 {
    text-align: center;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.7rem);
    margin-bottom: 60px;
    color: #80632b;
    position: relative;
}

    .section-container h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #D4AF37, #B8860B);
        border-radius: 2px;
    }
/* ================= ABOUT PAGE - FIXED ALIGNMENT ================= */
.about-section {
    padding: 0px;
    margin:0px;
    
}

.about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit:fill;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 120px; /* Increased from 90px */
    height: 120px; /* Increased from 90px */
    margin: 0 auto 30px; /* More bottom spacing */
    border-radius: 25px; /* Slightly larger radius */
    overflow: hidden;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4); /* Stronger shadow */
}

    .card-icon i {
        font-size: 3.5rem; /* Increased from 2.5rem - MUCH LARGER */
        color: white;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Added shadow for depth */
    }

    .card-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.philosophy-card,
.team-card,
.testimonial-card {
    text-align: center;
    padding: 40px 25px;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid rgba(212, 175, 55, 0.2);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
}

.about-intro {
    max-width: 850px;
    margin: 0 auto 100px;
    text-align: center;
}

    .about-intro p {
        font-size: 1.25rem;
        line-height: 1.8;
        color: #2C3E50;
        margin-bottom: 30px;
    }

@media (max-width: 768px) {
    .card-icon {
        width: 100px;
        height: 100px;
    }

        .card-icon i {
            font-size: 2.8rem;
        }
}


.page-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: none;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin: 100px 0 60px;
    color: #80632b;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #D4AF37, #B8860B);
        border-radius: 2px;
    }

/* Responsive */
@media (max-width: 992px) {
    .about-hero {
        height: 400px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-hero {
        height: 300px;
        border-radius: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.about-hero-row {
    padding:0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

.hero-image-left {
    position: relative;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-content-right {
    padding: 0px;
}

    .hero-content-right .page-title {
        margin-bottom: 30px;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-content-right .about-intro p {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: left;
        max-width: 500px;
    }


@media (max-width: 768px) {

    .about-hero-row {
        grid-template-columns: 1fr; /* Make it single column */
        gap: 30px;
        padding: 20px;
    }

    .hero-main-img {
        width: 100%; /* Make image responsive */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%;
    }

    .hero-content-right {
        text-align: center;
    }
}

.btn-glass {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    width:100px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

    .btn-glass:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    }

/* Responsive */
@media (max-width: 992px) {
    .about-hero-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content-right .about-intro p {
        text-align: center;
        margin: 0 auto 25px;
    }

    .hero-main-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-main-img {
        height: 280px;
    }
}

/* ================= CONTACT PAGE ================= */
.contact-section {
    padding: 0px;
}

.contact-hero {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin: 10px;
    color: #80632b !important;
    position: relative;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #2C3E50;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.contact-info h3,
.contact-form-card h3 {
    color: #80632b;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

    .contact-item i {
        font-size: 1.5rem;
        color: #D4AF37;
        width: 30px;
        margin-top: 2px;
    }

    .contact-item strong {
        display: block;
        color: #2C3E50;
        margin-bottom: 5px;
    }

    .contact-item p {
        margin: 0;
        color: #5A6C7D;
    }

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4AF37;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #D4AF37;
            color: white;
            transform: translateY(-2px);
        }

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #D4AF37;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }

.contact-form textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-glass {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

    .btn-glass:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    }

.contact-map {
    margin-top: 60px;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-success {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.2));
    color: #D4AF37;
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ================= FAQ PAGE ================= */

.faq-section {
    padding: 0px;
    background: #f8f9fa;
}

/* HERO */

.faq-hero {
    text-align: center;
    margin-bottom: 20px;
}

    .faq-hero h1 {
        font-size: 40px;
        margin-bottom: 15px;
        color: #2C3E50;
    }

.faq-subtitle {
    font-size: 18px;
    color: #5A6C7D;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ACCORDION */

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* FAQ ITEM */

.faq-item {
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

    .faq-item:hover {
        box-shadow: 0 12px 40px rgba(212,175,55,0.15);
    }

/* QUESTION */

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,#f8f9fa,#ffffff);
}

    .faq-question h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #2C3E50;
    }

    .faq-question i {
        font-size: 18px;
        color: #D4AF37;
        transition: transform .3s ease;
    }

/* ACTIVE ICON ROTATE */

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    color: #5A6C7D;
    line-height: 1.7;
}

/* CTA SECTION */

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

    .faq-cta h3 {
        color: #80632b;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .faq-cta p {
        color: #5A6C7D;
        font-size: 18px;
        margin-bottom: 20px;
    }

/* RESPONSIVE */

@media (max-width:768px) {

    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 18px;
    }

        .faq-question h3 {
            font-size: 16px;
        }

    .faq-answer p {
        font-size: 15px;
    }
}
/* ================= PORTFOLIO PAGE ================= */
.portfolio-section {
    padding: 0px; /* Restored proper padding */
}

.portfolio-hero {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-subtitle {
    font-size: 1.25rem;
    color: #2C3E50;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #2C3E50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        color: white;
        border-color: #D4AF37;
        transform: translateY(-2px);
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
    .portfolio-item.hidden {
        display: none;
    }
   /* .portfolio-item.hidden {
        opacity: 0;
       
        transform: scale(0.9);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }*/

.portfolio-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Keeps proper proportional box this is used to fit thescreen on the image */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
    .portfolio-image:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    }

    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit:fill; /* ✅ Perfect fit - fills frame without distortion */
        object-position: center; /* ✅ Centers image */
    }

/*.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}*/
.image-overlay {
    position: absolute;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */
    background: linear-gradient( to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), rgba(0,0,0,0.3) );
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* content stays at bottom */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-image:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.image-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.portfolio-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .portfolio-cta h3 {
        color: #80632b;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .portfolio-cta p {
        color: #5A6C7D;
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

/* Responsive */
@media (max-width: 768px) {
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .portfolio-image {
        height: 250px;
    }
}

.portfolio-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px auto 40px;
    padding: 18px 25px;
    max-width: 800px;
    background: linear-gradient(135deg,#f8f8f8,#ffffff);
    border-left: 5px solid #c59d5f;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-size: 16px;
    color: #444;
    animation: fadeUp 0.8s ease;
}

.highlight-icon {
    font-size: 22px;
    color: #c59d5f;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}