body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
}

.logo {
    max-width: 140px;
    height: auto;
    display: block;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 0;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: #000;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section - Image Only */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}



.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}





.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    visibility: hidden;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    transform: scale(1);
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 5;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.slider-prev:focus,
.slider-next:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
    pointer-events: none;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slider-dot.active {
    background: white;
    border-color: white;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.5);
}

.slider-dot:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}



.hero-slide-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}





section {
    /*max-width: 1200px;*/
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.8px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000, #333, #000);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

/* Masonry layout variations - different sizes */
.portfolio-item:nth-child(3n+1) {
    grid-row: span 2;
    grid-column: span 1;
}

.portfolio-item:nth-child(3n+2) {
    grid-row: span 1;
    grid-column: span 1;
}

.portfolio-item:nth-child(3n+3) {
    grid-row: span 2;
    grid-column: span 1;
}

.portfolio-item:nth-child(6n+1) {
    grid-row: span 3;
    grid-column: span 1;
}

.portfolio-item:nth-child(8n+1) {
    grid-row: span 2;
    grid-column: span 2;
}

.portfolio-item:nth-child(10n+1) {
    grid-row: span 1;
    grid-column: span 2;
}

.portfolio-item-content {
    padding: 1.5rem;
}

.portfolio-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.portfolio-item .service-category {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.portfolio-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000, #333);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.5);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.testimonial-content {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    color: #000;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        padding: 0;
        min-height: 100vh;
    }
    
    .hero-visual {
        height: 100vh;
    }
    
    .hero-slide-image {
        border-radius: 0;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    

    

    
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    nav {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
    
    section {
        margin: 40px auto;
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        grid-auto-rows: 180px;
    }
    
    .portfolio-item:nth-child(3n+1),
    .portfolio-item:nth-child(3n+2),
    .portfolio-item:nth-child(3n+3),
    .portfolio-item:nth-child(6n+1),
    .portfolio-item:nth-child(8n+1),
    .portfolio-item:nth-child(10n+1) {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-filters {
        gap: 0.6rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        padding: 0;
    }
    
    .hero-visual {
        height: 100vh;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .slider-dots {
        bottom: 0.8rem;
        gap: 0.6rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    

    

    
    .header-container {
        padding: 0 16px;
    }
    
    nav {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    section {
        padding: 30px 16px;
        margin: 30px auto;
        border-radius: 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.8rem;
        grid-auto-rows: 150px;
    }
    
    .portfolio-item:nth-child(3n+1),
    .portfolio-item:nth-child(3n+2),
    .portfolio-item:nth-child(3n+3),
    .portfolio-item:nth-child(6n+1),
    .portfolio-item:nth-child(8n+1),
    .portfolio-item:nth-child(10n+1) {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .about-section {
        padding: 80px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .image-decoration {
        width: 320px;
        height: 320px;
    }
    
    .decoration-line {
        width: 240px;
        height: 240px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .main-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .portfolio-item-content {
        padding: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* About Section - Enhanced Attractive Design */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0,0,0,0.01) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    /*margin-bottom: 3rem;*/
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    gap: 1rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    border-radius: 1px;
}

.divider-icon {
    font-size: 1.5rem;
    animation: cameraShake 3s ease-in-out infinite;
}

@keyframes cameraShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.2);
}

.profile-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.1);
}

.image-container:hover .profile-image {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: -1;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #000, #333);
    border-radius: 50%;
    animation: floatDot 4s ease-in-out infinite;
}

.decoration-dot:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-dot:nth-child(3) {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.decoration-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(0,0,0,0.1);
    border-radius: 50%;
    animation: rotateLine 20s linear infinite;
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateLine {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-text {
    text-align: left;
}

.text-content {
    position: relative;
    margin-bottom: 2rem;
}

.quote-mark {
    font-size: 4rem;
    color: #000;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
    animation: quoteFloat 3s ease-in-out infinite;
}

.quote-mark:last-child {
    top: auto;
    left: auto;
    bottom: -40px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.main-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    font-weight: 400;
    position: relative;
}

.highlights {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,249,250,0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000, #333, #000);
    border-radius: 20px 20px 0 0;
}

.highlights-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlights h3 {
    font-size: 1.4rem;
    color: #000;
    margin: 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.highlights-icon {
    font-size: 1.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.8; }
}

.highlights-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 16px;
    color: white;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Additional improvements */
.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item-content {
    padding: 1.5rem;
}

.portfolio-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.portfolio-item .service-category {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.portfolio-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact section improvements with SVG icons */
.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #666;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon:hover {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Social media icons styling */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Service icon styling */
.service-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card:hover .service-icon {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

/* Enhanced portfolio styling to match D Third Eye Studio */
.portfolio-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 100px 40px;
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000;
}

.section-subtitles {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Enhanced filter buttons - Multi-row layout */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    white-space: nowrap;
    min-width: fit-content;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Enhanced portfolio grid - Image only */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.portfolio-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Masonry layout variations - different sizes */
.portfolio-item:nth-child(3n+1) {
    grid-row: span 2;
    grid-column: span 1;
}

.portfolio-item:nth-child(3n+2) {
    grid-row: span 1;
    grid-column: span 1;
}

.portfolio-item:nth-child(3n+3) {
    grid-row: span 2;
    grid-column: span 1;
}

.portfolio-item:nth-child(6n+1) {
    grid-row: span 3;
    grid-column: span 1;
}

.portfolio-item:nth-child(8n+1) {
    grid-row: span 2;
    grid-column: span 2;
}

.portfolio-item:nth-child(10n+1) {
    grid-row: span 1;
    grid-column: span 2;
}

/* Enhanced overlay effect for image-only items */
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* Loading animation for portfolio items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        grid-auto-rows: 200px;
    }
    
    /* Reset masonry variations on mobile to prevent overlapping */
    .portfolio-item:nth-child(3n+1),
    .portfolio-item:nth-child(3n+2),
    .portfolio-item:nth-child(3n+3),
    .portfolio-item:nth-child(6n+1),
    .portfolio-item:nth-child(8n+1),
    .portfolio-item:nth-child(10n+1) {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .portfolio-filters {
        gap: 1rem;
        margin-bottom: 4rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        grid-auto-rows: 180px;
    }
    
    /* Reset masonry variations on small mobile */
    .portfolio-item:nth-child(3n+1),
    .portfolio-item:nth-child(3n+2),
    .portfolio-item:nth-child(3n+3),
    .portfolio-item:nth-child(6n+1),
    .portfolio-item:nth-child(8n+1),
    .portfolio-item:nth-child(10n+1) {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .portfolio-filters {
        gap: 0.8rem;
    }
    
    .about-section {
        padding: 60px 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .image-decoration {
        width: 280px;
        height: 280px;
    }
    
    .decoration-line {
        width: 200px;
        height: 200px;
    }
    
    .quote-mark {
        font-size: 2.5rem;
        top: -15px;
        left: -15px;
    }
    
    .quote-mark:last-child {
        bottom: -30px;
        right: -15px;
    }
    
    .main-text {
        font-size: 1.1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .highlights {
        padding: 1.5rem;
    }
    
    .about-stats {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.divider-icon {
    font-size: 1.5rem;
    color: #007bff;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
    border-left: 4px solid #28a745;
    font-weight: 500;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
    border-left: 4px solid #dc3545;
    font-weight: 500;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.contact-info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-detail-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: #6c757d;
    line-height: 1.5;
}

.contact-detail-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.social-links-section {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.social-links-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    color: white;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 100px 0 60px;
    }
    
    .contact-page-container {
        padding: 0 1rem;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-detail-item {
        padding: 1rem;
    }
    
    .contact-detail-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding: 80px 0 40px;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-detail-icon {
        align-self: center;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

    
