@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Reset and Browser Compatibility */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Dark theme for services page */
.theme-dark {
    background: #0f0f0f;
}
.theme-dark .breadcrumb-bar { background: #0f0f0f; border-bottom: 1px solid #1e1e1e; }
.theme-dark .breadcrumb-container { text-align: left; }
.theme-dark .breadcrumb-link,
.theme-dark .breadcrumb-sep,
.theme-dark .breadcrumb-current { color: #ffffff; }

.theme-dark .services-catalog { background: #0f0f0f; }
.theme-dark .catalog-card { background: #121212; border-color: #1e1e1e; }
.theme-dark .catalog-title { color: #ffffff; }
.theme-dark .catalog-text { color: #cfcfcf; }

.theme-dark .site-footer { background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.95)); }

/* Light theme for about page */
.theme-light {
    background: #f8f8f8;
}

.theme-light .navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.theme-light .nav-link {
    color: #333333;
}

.theme-light .nav-link:hover {
    color: #d4a574;
}

.theme-light .bar {
    background: #333333;
}

.theme-light .site-footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 30%, #e9ecef 70%, #dee2e6 100%);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

.theme-light .footer-about,
.theme-light .footer-contact-list li {
    color: #555555;
}

.theme-light .footer-heading {
    color: #333333;
}

.theme-light .footer-contact-list .label {
    color: #d4a574;
    font-weight: 600;
}

.theme-light .footer-bottom {
    color: #666666;
    border-top: 1px solid #dddddd;
}

.theme-light .footer-social .social-icon {
    color: #333333;
}

.theme-light .footer-social .social-icon:hover {
    color: #d4a574;
}

.theme-light .breadcrumb-bar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.theme-light .breadcrumb-link,
.theme-light .breadcrumb-sep,
.theme-light .breadcrumb-current {
    color: #333;
}

/* About Section */
.about-section {
    background: #f8f8f8;
    padding: 80px 0;
    min-height: 80vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.about-left {
    max-width: 600px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-underline {
    width: 60px;
    height: 4px;
    background: #f4d03f;
    margin-bottom: 30px;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.highlight {
    color: #f4d03f;
    font-weight: 600;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.about-milestone {
    margin-bottom: 40px;
}

.milestone-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.about-mission {
    margin-bottom: 50px;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.about-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: #f4d03f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.brand-line {
    width: 150px;
    height: 2px;
    background: #f4d03f;
}

.about-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.stats-card {
    background: #333333;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    min-width: 200px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-right {
        justify-content: flex-start;
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .brand-line {
        width: 100px;
    }
    
    .stats-card {
        padding: 30px 20px;
        min-width: 180px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
}

/* Portfolio Hero Section */
.portfolio-hero {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.portfolio-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.portfolio-hero-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Videos Hero Section */
.videos-hero {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.videos-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.videos-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.videos-hero-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Videos Section */
.videos-section {
    background: #0f0f0f;
    padding: 60px 0;
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-content {
    padding: 20px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-category {
    background: #f4d03f;
    color: #000000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video-date {
    color: #999999;
    font-size: 0.8rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    background: #ffffff;
    margin: 3% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-body {
    padding: 20px;
}

.video-placeholder {
    background: #f5f5f5;
    padding: 60px 20px;
    border-radius: 8px;
    color: #666;
}

.video-placeholder ul {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .videos-hero-title {
        font-size: 2.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

@media screen and (max-width: 480px) {
    .videos-hero-title {
        font-size: 2rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #d4a574, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1rem;
}

.logo-text {
    color: #d4a574;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4a574;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('image/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    transition: background-image 0.8s ease-in-out;
    overflow: hidden;
}

/* Fix for mobile/server issues */
@media screen and (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 500px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #d4a574;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    transition: opacity 0.3s ease;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #d4a574;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(212, 165, 116, 0.8);
    border-color: #d4a574;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: 2rem;
}

.nav-arrow-right {
    right: 2rem;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.indicator {
    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;
}

.indicator.active {
    background: #d4a574;
    border-color: #d4a574;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: #d4a574;
    background: rgba(212, 165, 116, 0.5);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #1a1a1a;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.service-card {
    background: transparent;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1rem;
    display: block;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: 1px;
}

.service-description {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

/* Design Categories Section */
.design-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.design-category {
    background: transparent;
    padding: 1.5rem;
    text-align: left;
    min-height: 180px;
    display: flex;
    flex-direction: column;

    /* New fixed size and typography */
    width: 410px;
    height: 385px;
    padding: 0px 60px;
    color: #555555;
    font: 13px 'Inter', sans-serif;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 1px;
}

.category-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.read-more-btn {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.read-more-btn:hover {
    color: #f4d03f;
    transform: translateX(5px);
}

.read-more-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.read-more-btn:hover::after {
    width: 100%;
}

Studio Showcase Section
.studio-showcase {
    /* Background image for studio showcase */
    background: url('image/about-bg.jpg') no-repeat center center;
    background-size: cover;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
    max-height: 800px;
}

.showcase-card {
    position: relative;
    overflow: hidden;
}

.showcase-main {
    grid-row: 1 / 3;
}

.showcase-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.showcase-card:first-child .showcase-overlay {
    justify-content: flex-start;
    align-items: center;
}

.showcase-card:hover .showcase-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.showcase-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 90%;
}

.showcase-card:first-child .showcase-content {
    text-align: left;
    max-width: 500px;
    margin-left: 3rem;
    justify-self: flex-start;
    align-self: flex-start;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #d4a574;
    text-transform: uppercase;
}

.showcase-card:first-child .showcase-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.showcase-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: #f4d03f;
    text-transform: uppercase;
    position: relative;
}

.showcase-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #d4a574, #f4d03f);
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 480px;
}

.showcase-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    background: transparent;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(45deg, #d4a574, #f4d03f);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f4d03f, #d4a574);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    color: #000;
}

/* Small showcase cards */
.showcase-card:not(.showcase-main) .showcase-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    position: relative;
    display: block;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Medium screens - tablets */
@media screen and (max-width: 1024px) {
    .services-grid,
    .design-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        height: auto;
    }

    .showcase-main {
        grid-row: auto;
        min-height: 60vh;
    }

    .showcase-card:not(.showcase-main) {
        min-height: 40vh;
    }

    .showcase-main .showcase-content {
        margin-left: 2rem;
        text-align: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.95));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu .nav-link {
        color: #333;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .nav-arrow-left {
        left: 1rem;
    }

    .nav-arrow-right {
        right: 1rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slide-indicators {
        bottom: 1rem;
        gap: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Services responsive */
    .services {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .design-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card,
    .design-category {
        padding: 1.5rem;
    }

    .showcase-main .showcase-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }

    .showcase-main .showcase-title {
        font-size: 2rem;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* Our Expertise Section */
.expertise-section {
    background: #2c2c2c;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-our {
    color: #ffffff;
}

.title-expertise {
    color: #f4d03f;
}

.expertise-description {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    background: #3a3a3a;
    border: 2px solid #f4d03f;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
    border-color: #f4d03f;
}

.expertise-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.expertise-icon svg {
    width: 32px;
    height: 32px;
}

.expertise-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.expertise-card-description {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Responsive Design for Expertise Section */
@media screen and (max-width: 1024px) {
    .expertise-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .expertise-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .expertise-section {
        padding: 60px 0;
    }
    
    .expertise-container {
        padding: 0 1.5rem;
    }
    
    .expertise-header {
        margin-bottom: 40px;
    }
    
    .expertise-title {
        font-size: 2.5rem;
    }
    
    .expertise-description {
        font-size: 1rem;
    }
    
    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-card {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 480px) {
    .expertise-title {
        font-size: 2rem;
    }
    
    .expertise-description {
        font-size: 0.9rem;
    }
    
    .expertise-card {
        padding: 20px 15px;
    }
    
    .expertise-card-title {
        font-size: 1rem;
    }
    
    .expertise-card-description {
        font-size: 0.9rem;
    }
}

/* Services Features Section */
.services-features {
    background: #1a1a1a;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #2a2a2a;
    border: 2px solid #f4d03f;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.25);
    border-color: #f4d03f;
    background: #2f2f2f;
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
    text-align: center;
    max-width: 280px;
}

/* Responsive Design for Services Features */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
    }
    
    .service-card {
        min-height: 260px;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .services-features {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 20px;
    }
    
    .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        min-height: 220px;
        padding: 20px 15px;
    }
    
    .service-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.95));
    color: #333333;
    font-family: 'Inter', 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 2rem;
    text-align: right;
}

.breadcrumb-link {
    color: #000000;
    text-decoration: none;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #000000;
}

.breadcrumb-current {
    color: #000000;
}

/* PDF Portfolio Button and Modal */
.pdf-view-btn {
    background: #f4d03f;
    color: #000000;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-view-btn:hover {
    background: #e6c236;
    transform: translateY(-2px);
}

.pdf-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.pdf-modal-content {
    background: #ffffff;
    margin: 2% auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-modal-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal-body {
    padding: 20px;
}

.pdf-modal-actions {
    margin-top: 16px;
    text-align: center;
}

.pdf-download-btn {
    background: #f4d03f;
    color: #000000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pdf-download-btn:hover {
    background: #e6c236;
    transform: translateY(-2px);
}

/* PDF Fallback Styles */
.pdf-viewer-container {
    position: relative;
}

.pdf-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.fallback-content {
    text-align: center;
    padding: 40px;
    max-width: 400px;
}

.fallback-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.fallback-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.fallback-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.fallback-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.fallback-actions .pdf-view-btn,
.fallback-actions .pdf-download-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Portfolio Lightbox Modal */
.portfolio-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 2% auto;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(244, 208, 63, 0.2);
    color: #f4d03f;
    transform: rotate(90deg);
}

.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.lightbox-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
}

.lightbox-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

.lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.lightbox-image:hover img {
    transform: scale(1.1);
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image:hover .lightbox-overlay {
    opacity: 1;
}

.lightbox-icon {
    color: #f4d03f;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .lightbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media screen and (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        padding: 20px;
        margin: 5% auto;
    }
    
    .lightbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 80px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .lightbox-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .portfolio-filters {
        justify-content: center;
    }
    
    .pdf-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .pdf-modal-body iframe {
        height: 400px;
    }
}

/* Portfolio Services Section */
.portfolio-services {
    background: #1a1a1a;
    padding: 60px 0;
}

.portfolio-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.portfolio-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-service-card {
    background: #0f0f0f;
    border: 2px solid #f4d03f;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.portfolio-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
}

.portfolio-service-card .service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.portfolio-service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    .portfolio-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .portfolio-services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-services-title {
        font-size: 2rem;
    }
}

.footer-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-about {
    color: #555555;
    line-height: 1.8;
    max-width: 560px;
}

.footer-heading {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #333333;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #dddddd;
}

.footer-contact-list li {
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
    color: #555555;
}

.footer-contact-list .label {
    color: #d4a574;
    margin-right: 8px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #dddddd;
    padding: 16px 0;
    text-align: center;
    color: #666666;
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: #0f0f0f;
    padding: 80px 0;
    min-height: 100vh;
}

/* Services Catalog */
.services-catalog {
    background: #ffffff;
    padding: 60px 0 40px 0;
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.catalog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 2px;
    text-align: center;
    overflow: hidden;
}

.catalog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f7f7f7;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.03);
}

.catalog-title {
    margin-top: 16px;
    font-size: 0.95rem;
    color: #2b2b2b;
    letter-spacing: 0.8px;
}

.catalog-text {
    padding: 10px 24px 24px 24px;
    color: #666;
    line-height: 1.7;
    font-size: 0.92rem;
}

@media screen and (max-width: 1024px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 640px) {
    .catalog-grid { grid-template-columns: 1fr; }
}

/* Clients Section */
.clients-section {
    background: #111;
    padding: 60px 0 20px 0;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-title {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: clients-scroll 25s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    width: 260px;
    height: 140px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
}

@keyframes clients-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials Section */
.testimonials-section {
    background: #151515;
    padding: 40px 0 100px 0;
    position: relative;
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.testimonials-divider {
    width: 60px;
    height: 3px;
    background: #f4d03f;
    margin: 12px auto 30px auto;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    height: auto;
    min-height: 300px;
}

.testimonial-card {
    background: #0f0f0f;
    padding: 40px 28px 28px 28px;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: none;
    box-sizing: border-box;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
    position: relative;
}

.quote-badge {
    position: absolute;
    left: 0;
    top: 0;
    background: #f4b400;
    color: #000;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    border-bottom-right-radius: 8px;
}

.testimonial-text {
    color: #eaeaea;
    line-height: 1.8;
    margin-left: 64px;
    margin-bottom: 25px;
    font-size: 1rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 64px;
    margin-top: 20px;
}

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f4d03f;
    flex-shrink: 0;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #f4d03f;
    margin: 0;
    white-space: nowrap;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(244, 208, 63, 0.2);
    border: 2px solid #f4d03f;
    color: #f4d03f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: #f4d03f;
    color: #000000;
}

.testimonial-prev {
    left: -70px;
}

.testimonial-next {
    right: -70px;
}

.testimonial-nav span {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Dots Indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #555555;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #f4d03f;
    border-color: #f4d03f;
}

.testimonial-dot:hover {
    border-color: #f4d03f;
}

@media screen and (max-width: 768px) {
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-prev {
        left: -50px;
    }
    
    .testimonial-next {
        right: -50px;
    }
    
    .testimonial-nav span {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 640px) {
    .testimonial-prev {
        left: 10px;
    }
    
    .testimonial-next {
        right: 10px;
    }
    
    .testimonial-text {
        margin-left: 32px;
        font-size: 0.95rem;
    }
    
    .testimonial-footer {
        margin-left: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .customer-photo {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .testimonial-author {
        align-self: center;
        text-align: center;
    }
    
    .quote-badge {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.filter-btn:hover {
    border-color: #f4d03f;
    color: #f4d03f;
}

.filter-btn.active {
    background: #f4d03f;
    border-color: #f4d03f;
    color: #000000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 300px;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(244, 208, 63, 0.9), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

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

/* Responsive Design for Portfolio */
@media screen and (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .portfolio-item {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-container {
        padding: 0 1.5rem;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-content p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .portfolio-item {
        height: 220px;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
}

/* Our Process Section */
.process-section {
    background: #1a1a1a;
    background-image: url('image/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

/* Team Section */
.team-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: #f4d03f;
    box-shadow: 0 14px 40px rgba(244, 208, 63, 0.18);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 18px auto;
    border: 4px solid rgba(244, 208, 63, 0.7);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    background: #111;
}

.team-name {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.team-role,
.team-org {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.team-org {
    color: #f4d03f;
    font-weight: 600;
    margin-top: 6px;
}

@media screen and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    z-index: 1;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-header {
    margin-bottom: 80px;
}

.process-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.process-divider {
    width: 60px;
    height: 3px;
    background: #f4d03f;
    margin: 0 auto;
    border-radius: 2px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 200px;
    height: 200px;
    border: 2px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 4px 10px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
}

/* Subtle golden halo around circles */
.step-circle::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 0 2px #f4d03f,
                0 0 25px rgba(244, 208, 63, 0.6),
                0 0 60px rgba(244, 208, 63, 0.4),
                0 0 110px rgba(244, 208, 63, 0.25);
    transition: box-shadow 0.3s ease;
}

.step-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    padding: 0 15px;
    transition: color 0.3s;
}

.step-circle:hover { border-color: #f4d03f; background: transparent; }
.step-circle:hover::after {
    box-shadow: 0 0 0 4px #f4d03f,
                0 0 40px rgba(244, 208, 63, 0.85),
                0 0 90px rgba(244, 208, 63, 0.55),
                0 0 140px rgba(244, 208, 63, 0.45);
}

.step-circle:hover .step-title {
    color: #f4d03f;
}

/* Remove any .step-circle-active or .step-circle-inactive background/border overrides */
.step-circle-active,
.step-circle-inactive {
    background: transparent !important;
    border-color: #666 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 4px 10px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.step-circle-active .step-title,
.step-circle-inactive .step-title {
    color: #fff !important;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #666;
    margin: 0 10px;
}

.process-step:last-child .step-line {
    display: none;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #f4d03f;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Responsive Design for Process Section */
@media screen and (max-width: 1200px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-circle {
        width: 180px;
        height: 180px;
    }
    
    .step-line {
        display: none;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }
    
    .step-circle {
        width: 160px;
        height: 160px;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .step-circle {
        width: 140px;
        height: 140px;
    }
    
    .step-title {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Social icons in footer */
.footer-social {
  margin-top: 1rem;
}
.footer-social .social-icon {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social .social-icon:hover {
  color: #d4a574;
}

