/* SuisseIntl Font Face Declarations */
@font-face {
    font-family: 'SuisseIntl';
    src: url('assets/suisseintl-thin-webfont.woff2') format('woff2'),
         url('assets/suisseintl-thin-webfont.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('assets/suisseintl-light-webfont.woff2') format('woff2'),
         url('assets/suisseintl-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('assets/suisseintl-regular-webfont.woff2') format('woff2'),
         url('assets/suisseintl-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('assets/suisseintl-semibold-webfont.woff2') format('woff2'),
         url('assets/suisseintl-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'SuisseIntl', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #181818;
    color: #969696;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #181818;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.preloader-logo {
    width: 300px;
    height: 30px;
    margin-bottom: 20px;
    position: relative;
    transform-origin: center center;
    overflow: hidden;
}

.logo-svg {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.logo-group {
    opacity: 1;
}

.letter-p, .letter-o, .letter-p2, .letter-e, .letter-l, .letter-l2, .letter-e2, .letter-r, .letter-r2 {
    opacity: 0;
    transform: translateX(50px);
}

.preloader-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    opacity: 0;
    color: #fff;
    position: absolute;
    bottom: 60px;
    left: 60px;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Main Content */
.main-content {
    position: relative;
    width: calc(100% - 40px);
    height: calc(100vh - 40px);
    margin: 20px;
    border: 0px solid #181818;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: #212121;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #000000 -31.25%, rgba(0,0,0,0));
    z-index: 10;
    pointer-events: none;
}

/* Custom Cursor */

.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

.custom-cursor.hover {
    width: 70px;
    height: 70px;
    border: 0px;
    background: rgba(255, 255, 255, 0.2);
}

/* Logo Link */
.logo-link {
    text-decoration: none;
    display: block;
}

/* Logo Container */
.logo-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 200px;
    height: 20px;
    z-index: 300;
    opacity: 0;
}

.logo-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.logo-container:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

/* Client Logos */
.client-logos {
    position: fixed;
    bottom: 10px;
    right: 40px;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
}

.client-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease;
}

.client-logo.active {
    opacity: 1;
    transform: translateY(0);
}

.client-logo img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
    opacity: 0.8;
    object-fit: contain;
    height: auto;
    max-height: 120px;
}

.client-logo:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
    opacity: 1;
}

/* Information Button */
.info-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 300;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

/* Contact Button */
.contact-button {
    position: absolute;
    top: 30px;
    right: 90px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.contact-text {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    letter-spacing: 0.5px;
}

.info-button:hover {
    transform: scale(1.1);
}

.clutch-award {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 100;
}

.award-image {
    height: 140px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.award-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.contact-button:hover {
    background: rgba(0,0,0,.8);
    transform: translateY(-20px) scale(1.05);
}

.info-icon, .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.close-icon {
    opacity: 0;
    transform: rotate(180deg);
    pointer-events: none;
}

/* Contact Panel Close Button */
.contact-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    transition: all 0.3s ease;
}

.contact-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.contact-close-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.info-icon svg, .close-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}


.close-icon {
    opacity: 0;
    transform: rotate(180deg);
    pointer-events: none;
}

/* Background Video */
.background-video {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Content Text */
.content-text {
    position: fixed;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    z-index: 50;
    opacity: 0;
    transform: translateY(30px);
    text-align: left;
}

.title {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.subtitle {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #969696;
    letter-spacing: 0.01em;
}

/* Information Panel */
.info-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #181818;
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.info-panel.active {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    background: #181818;
}

/* Contact Panel */
.contact-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 400;
    overflow-y: auto;
}

.contact-panel.active {
    right: 0;
    opacity: 1;
}

.contact-content {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.contact-left {
    flex: 0 0 30%;
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    width: 30%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-right {
    flex: 1;
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    margin-left: 30%;
    overflow-y: auto;
    height: 100vh;
}

.contact-left h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-left h3 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #969696;
}

.santa-monica-icon {
    width: 80px;
    height: 80px;
    margin: 20px 0;
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.local-time {
    margin-bottom: 30px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-label {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #969696;
    display: block;
    margin-bottom: 4px;
}

.time-display {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    display: block;
}

.contacts-section {
    margin-top: 40px;
}

.contacts-section h4 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-person {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.headshot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-info {
    flex: 1;
}

.person-name {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
}

.person-title {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #969696;
    margin-bottom: 2px;
}

.person-email {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #969696;
}

.contact-info p {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #969696;
}

.contact-info p strong {
    color: #ffffff;
    font-weight: 600;
}

.maps-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    margin-bottom: 20px;
    text-decoration: none;
}

.maps-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.contact-right h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Form Styles */
.rfp-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.submit-btn:disabled {
    background: #666666;
    color: #999999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn:disabled:hover {
    background: #666666;
    transform: none;
    box-shadow: none;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Form Field Error States */
.form-group input.error,
.form-group textarea.error {
    border-bottom-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-bottom-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Success Overlay */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.success-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

.success-title {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Confetti Canvas */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Pill Selector Styles */
.pill-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.pill-option {
    padding: 8px 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: transparent;
    color: #969696;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 20px;
}

.pill-option:hover {
    border-bottom-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.pill-option.selected {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.pill-option.selected:hover {
    border-bottom-color: rgba(255, 255, 255, 1);
}


/* Main content when info panel is active */
.main-content.panel-active .content-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.main-content.panel-active .client-logos {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Logo color change when contact panel is open */
.main-content.contact-active .logo-container svg path {
    fill: #333 !important;
}

.info-content {
    font-family: 'SuisseIntl', sans-serif;
    color: #969696;
    padding: 0;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
    overflow-y: auto;
    height: 100%;
    min-height: 100vh;
}

/* Hero Section */
.info-hero {
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.info-title {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 1;
    position: relative;
}

.love-word {
    position: relative;
    display: inline-block;
}

.hearts-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    width: 100px;
    height: 40px;
}

.heart {
    position: absolute;
    color: #ff6b6b;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
}

.heart-1 {
    top: 0px;
    left: 10px;
}

.heart-2 {
    top: -10px;
    right: 15px;
}

.heart-3 {
    top: 5px;
    left: 30px;
}

.heart-4 {
    top: -5px;
    right: 5px;
}

.heart-5 {
    top: -15px;
    left: 50px;
}

.info-subtitle {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #969696;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.4);
}

.about-section h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    opacity: 1;
}

.about-section p {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #969696;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
}

/* Case Studies Section */
.case-studies {
    padding: 40px 60px 80px;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Filter Bar */
.filter-bar {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 16px 32px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-bar.active {
    opacity: 1;
    visibility: visible;
}

.filter-content {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.filter-text {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

/* Custom Select Styles */
.custom-select {
    position: relative;
    min-width: 140px;
}

.select-trigger {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
}

.select-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.select-trigger.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
}

.select-text {
    flex: 1;
    text-align: left;
}

.select-arrow {
    color: #ffffff;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.select-trigger.active .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.select-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 12px 16px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.select-option.selected {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 500;
}

.case-studies h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    opacity: 1;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.case-block {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    opacity: 1;
    transform: scale(1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
    width: 100%;
}


.case-block.hidden {
    display: none;
}

/* Load More Button Styles */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.load-more-btn {
    background: #333333;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: #555555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.case-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    background-color: #f8f8f8;
}

.case-overlay {
    display: none;
}

.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    border-radius: 0 0 12px 12px;
    z-index: 5;
    gap: 4px;
}

.client-name {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.service-type {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 6px;
    border-radius: 6px;
    border: none;
}

/* Services Section */
.services-section {
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.4);
}

.services-section h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}


.service-block {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f8f8;
}

.service-content {
    padding: 24px 20px;
}

.service-block h3 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    text-align: left;
}

.service-block p {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Service Detail Panel */
.service-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-detail-panel {
    position: fixed;
    top: 0;
    right: -85%;
    width: 85%;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.service-detail-panel.active {
    right: 0;
}

.service-detail-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 501;
    transition: all 0.3s ease;
}

.service-detail-close-btn:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.service-detail-close-btn svg {
    width: 20px;
    height: 20px;
    color: #333333;
}

.service-detail-content {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.service-detail-left {
    flex: 0 0 50%;
    position: relative;
    background: #f8f8f8;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
}

.service-detail-title {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-detail-right {
    flex: 1;
    padding: 60px 40px;
    overflow-y: auto;
    background: #ffffff;
}

.service-detail-description {
    margin-bottom: 60px;
}

.service-detail-description p {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.service-detail-offerings {
    margin-bottom: 60px;
}

.service-detail-offerings h3 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.offerings-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.offering-item {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    transition: all 0.3s ease;
}

.offering-item:hover {
    background: #333333;
    color: #ffffff;
    border-color: #333333;
    transform: translateY(-2px);
}

.service-detail-case-studies h3 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 30px;
}

.service-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-case-item {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-case-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-case-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
}

.service-case-info {
    padding: 16px;
}

.service-case-info h4 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
}

.service-case-info p {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Clients Section */
.clients-section {
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.6);
}

.clients-section h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
    opacity: 1;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-section .client-logo {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: static;
    opacity: 1;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-section .client-logo img {
    opacity: 0.7;
    transition: all 0.3s ease;
    max-width: 100%;
    max-height: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.clients-section .client-logo:hover {
    transform: translateY(-5px);
}

.clients-section .client-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Call to Action Section */
.cta-section {
    padding: 100px 60px 150px 60px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.cta-section h2 {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 1;
}

.cta-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}


/* Responsive Design */

/* Large screens - ensure proper proportions */
@media (min-width: 1200px) {
    .contact-left {
        flex: 0 0 25%;
        width: 25%;
    }
    
    .contact-right {
        margin-left: 25%;
    }
}

/* Medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Hide custom cursor on tablet devices */
    .custom-cursor {
        display: none !important;
    }
    
    /* Add bottom margin for iOS devices */
    body {
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }
    
    .contact-left {
        flex: 0 0 35%;
        width: 35%;
    }
    
    .contact-right {
        margin-left: 35%;
    }
}

@media (max-width: 768px) {
    /* Hide custom cursor on mobile devices */
    .custom-cursor {
        display: none !important;
    }
    
    /* Add bottom margin for iOS devices */
    body {
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }
    
    .main-content {
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
        margin: 10px;
    }
    
    .preloader.transitioning {
        top: 10px;
        left: 10px;
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
    }
    
    .logo-container {
        top: 30px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 180px;
        height: 18px;
        z-index: 300;
    }
    
    .client-logos {
        bottom: 30px;
        right: 30px;
    }
    
    .client-logo img {
        max-width: 190px;
        max-height: 78px;
        height: auto;
        width: auto;
    }
    
    .info-button {
        top: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        transform: translateY(-20px);
        z-index: 300;
    }
    
    .contact-button {
        top: 30px;
        right: 90px;
        padding: 10px 20px;
        transform: translateY(-20px);
        z-index: 300;
    }
    
    .contact-text {
        font-size: 13px;
    }
    
    .contact-left {
        flex: 0 0 30%;
        padding: 60px 30px;
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 30%;
    }
    
    .contact-right {
        flex: 1;
        padding: 60px 30px;
        margin-left: 30%;
        height: 100vh;
    }
    
    .contact-left h2 {
        font-size: 36px;
    }
    
    .contact-right h2 {
        font-size: 28px;
    }
    
    .info-content {
        padding: 0;
    }
    
    .info-hero {
        padding: 0;
        height: 100vh;
    }
    
    .info-title {
        font-size: 48px;
    }
    
    .info-subtitle {
        font-size: 18px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .about-section, .case-studies, .services-section, .clients-section, .cta-section {
        padding: 60px 30px;
    }
    
    .cta-section {
        padding: 80px 30px 120px 30px;
        min-height: 60vh;
    }
    
    .about-section h2, .services-section h2, .clients-section h2, .cta-section h2 {
        font-size: 36px;
    }
    
    .case-studies h2 {
        font-size: 28px;
    }
    
    .case-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 15px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px 18px;
    }
    
    .service-block h3 {
        font-size: 18px;
    }
    
    .service-block p {
        font-size: 13px;
    }
    
    .filter-bar {
        bottom: 30px;
        padding: 12px 24px;
    }
    
    .filter-content {
        gap: 12px;
    }
    
    .filter-text {
        font-size: 14px;
    }
    
    .custom-select {
        min-width: 120px;
    }
    
    .select-trigger {
        font-size: 13px;
        padding: 6px 12px;
        min-height: 36px;
    }
    
    .select-option {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-info {
        padding: 15px;
    }
    
    .client-name {
        font-size: 18px;
    }
    
    .service-type {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .content-text {
        bottom: 40px;
        left: 30px;
        right: 30px;
        max-width: none;
    }
    
    .title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    
    .preloader-logo {
        width: 280px;
        height: 28px;
    }
    
    .preloader-text {
        font-size: 20px;
        letter-spacing: 6px;
        bottom: 40px;
        left: 30px;
    }
}

@media (max-width: 480px) {
    /* Hide custom cursor on mobile devices */
    .custom-cursor {
        display: none !important;
    }
    
    /* Add bottom margin for iOS devices */
    body {
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }
    
    .main-content {
        width: calc(100% - 16px);
        height: calc(100vh - 16px);
        margin: 8px;
    }
    
    .preloader.transitioning {
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: calc(100vh - 16px);
    }
    
    .logo-container {
        top: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 160px;
        height: 16px;
        z-index: 300;
    }
    
    .client-logos {
        display: none;
    }
    
    .client-logo img {
        max-width: 150px;
        max-height: 58px;
        height: auto;
        width: auto;
    }
    
    .info-button {
        top: 30px;
        right: 20px;
        width: 40px;
        height: 40px;
        transform: translateY(-20px);
        z-index: 300;
    }
    
    .clutch-award {
        top: 80px;
        right: 20px;
    }
    
    .award-image {
        height: 60px;
    }
    
    .contact-button {
        top: 14px;
        left: 14px;
        right: auto;
        padding: 8px 16px;
        transform: translateY(-20px);
        z-index: 300;
    }
    
    .contact-text {
        font-size: 12px;
    }
    
    .contact-content {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .contact-left {
        padding: 50px 20px;
        position: static;
        width: 100%;
        height: auto;
        min-height: 50vh;
    }
    
    .contact-right {
        padding: 50px 20px;
        margin-left: 0;
        height: auto;
        min-height: 50vh;
    }
    
    .contact-left h2 {
        font-size: 28px;
    }
    
    .contact-right h2 {
        font-size: 24px;
    }
    
    .info-content {
        padding: 0;
    }
    
    .info-hero {
        padding: 0;
        height: 100vh;
    }
    
    .info-title {
        font-size: 36px;
    }
    
    .info-subtitle {
        font-size: 16px;
    }
    
    .about-section, .case-studies, .services-section, .clients-section, .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section {
        padding: 60px 20px 100px 20px;
        min-height: 50vh;
    }
    
    .about-section h2, .services-section h2, .clients-section h2, .cta-section h2 {
        font-size: 28px;
    }
    
    .case-studies h2 {
        font-size: 24px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 18px 16px;
    }
    
    .service-block h3 {
        font-size: 16px;
    }
    
    .service-block p {
        font-size: 12px;
    }
    
    /* Service Detail Panel Responsive */
    .service-detail-panel {
        width: 100%;
        right: -100%;
    }
    
    .service-detail-content {
        flex-direction: column;
    }
    
    .service-detail-left {
        flex: 0 0 40vh;
    }
    
    .service-detail-title {
        font-size: 32px;
        bottom: 0;
        padding: 30px 20px;
    }
    
    .service-detail-right {
        padding: 40px 20px;
    }
    
    .service-detail-description p {
        font-size: 16px;
    }
    
    .service-detail-offerings h3 {
        font-size: 20px;
    }
    
    .offering-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .service-case-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Case Study Detail Panel Styles */
.case-study-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.case-study-detail-panel {
    position: fixed;
    top: 0;
    right: -85%;
    width: 85%;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.case-study-detail-panel.active {
    right: 0;
}

.case-study-detail-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 501;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.case-study-detail-close-btn:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

.case-study-detail-close-btn svg {
    width: 20px;
    height: 20px;
    color: #333333;
}

.case-study-detail-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Hero Section */
.case-study-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
}

.case-study-detail-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
}

.case-study-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.case-study-detail-title {
    color: #ffffff;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.view-live-site-btn {
    background: #ffffff;
    color: #333333;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.view-live-site-btn:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Info Section */
.case-study-info-section {
    flex: 1;
    padding: 60px 40px;
    background: #ffffff;
    overflow-y: auto;
}

.section-title {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 30px 0;
}

/* Details Section */
.details-section {
    margin-bottom: 50px;
}

.details-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    margin-bottom: 15px;
}

.header-cell {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #969696;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-separator {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 15px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
}

.data-cell {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

/* Services Section */
.services-section {

}

.services-table {
    width: 100%;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-provided-item {
    font-family: 'SuisseIntl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
}

/* Responsive styles for case study detail panel */
@media (max-width: 1024px) {
    .case-study-detail-panel {
        width: 90%;
        right: -90%;
    }
    
    .case-study-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .case-study-hero-content {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .case-study-detail-title {
        font-size: 36px;
    }
    
    .view-live-site-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .case-study-info-section {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .case-study-detail-panel {
        width: 100%;
        right: -100%;
    }
    
    .case-study-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .case-study-hero-content {
        padding: 20px;
    }
    
    .case-study-detail-title {
        font-size: 28px;
    }
    
    .case-study-info-section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .header-cell,
    .data-cell {
        font-size: 14px;
    }
    
    .filter-bar {
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
        padding: 10px 16px;
        border-radius: 25px;
    }
    
    .filter-content {
        flex-direction: row;
        gap: 6px;
        align-items: center;
        justify-content: center;
    }
    
    .filter-text {
        font-size: 12px;
    }
    
    .custom-select {
        min-width: 80px;
    }
    
    .select-trigger {
        font-size: 12px;
        padding: 6px 10px;
        min-height: 32px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .select-option {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .case-image {
        height: 100%;
    }
    
    .case-info {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .client-name {
        font-size: 16px;
    }
    
    .service-type {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .case-block h3, .service-block h3 {
        font-size: 20px;
    }
    
    .case-block p, .service-block p {
        font-size: 14px;
    }
    
    .clients-section .client-logo {
        font-size: 18px;
        padding: 20px 15px;
    }
    
    .content-text {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
    
    .title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    
    .preloader-logo {
        width: 250px;
        height: 25px;
    }
    
    .preloader-text {
        font-size: 18px;
        letter-spacing: 4px;
        bottom: 30px;
        left: 20px;
    }
}

/* Smooth scrolling and performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading animation for preloader */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.preloader-logo svg {
    animation: pulse 2s ease-in-out infinite;
}

/* Preloader transition state */
.preloader.transitioning {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100vh - 40px);
    border: 2px solid #000;
    border-radius: 20px;
}
