:root {
    --primary-color: #003a70;
    --primary-rgb: 25, 118, 210;
    --secondary-color: #f8f9fa;
    --tertiary-color: #ffffff;
    --text-color: #333;
    --text-color-dark: #000000;
    --text-color-muted: #003a70;
    --bg-color: #ffffff;
    --bg-color-light: #f8f9fa;
    --card-bg: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --accent-color: #fdec08;
    --accent-secondary: #59beff;
    --border-color: rgba(0, 0, 0, 0.1);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --footer-bg: #2a2c39;
    --footer-text: #e1e1e1;
    --button-bg: linear-gradient(45deg, #003a70, #59beff, #fdec08);
    --button-text: #ffffff;
    --button-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
    --input-bg: #ffffff;
    --input-border: rgba(0, 57, 112, 0.15);
    --input-text: #333333;
    --service-icon-bg: rgba(89, 190, 255, 0.15);
    --service-icon-border: rgba(89, 190, 255, 0.3);
    --testimonial-bg: #ffffff;
    --client-logo-bg: #f8f9fa;
    --filter-btn-bg: rgba(0, 57, 112, 0.08);
    --filter-btn-border: rgba(0, 57, 112, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 57, 112, 0.1) 0%, rgba(89, 190, 255, 0.1) 100%);
    --gradient-primary: linear-gradient(45deg, #003a70, #59beff, #fdec08);
    --border-radius: 12px;
    --button-radius: 5px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}
a {
    text-decoration: none;
    color: var(--footer-text);
    transition: var(--transition);
}
a:hover {
    color: var(--accent-color);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.text-center {
    text-align: center;
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: var(--button-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    transform: translateZ(0);
}
.btn-primary {
    background-color: #003a70;
    color: var(--text-color);
}
.btn-primary:hover {
    background-color: #fdec08;
    color: #003a70;
}
.hero-cta-btn.btn-primary,
.load-more-btn.btn-primary,
.contact-us-now-btn.btn-primary,
.send-message-btn.btn-primary,
.get-directions-btn.btn-primary,
.stats-cta-btn.btn-primary {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.hero-cta-btn.btn-primary:hover,
.load-more-btn.btn-primary:hover,
.contact-us-now-btn.btn-primary:hover,
.send-message-btn.btn-primary:hover,
.get-directions-btn.btn-primary:hover,
.stats-cta-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 57, 112, 0.3);
    background: linear-gradient(45deg, #003a70, #59beff, #fdec08);
}
.services-section,
.gallery-section,
.clients-section,
.global-presence-section,
.contact-section,
.faq-section {
    padding: 50px 0;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
.section-header h3 {
    color: var(--accent-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.5s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header .section-subtitle {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.main-header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--accent-secondary);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.section-header > h2{
    margin-bottom: 0;
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-container {
    max-width: 220px;
    margin-right: auto;
    z-index: 10;
}
.logo-container a {
    position: relative;
    display: block;
}
.logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    transition: opacity 0.3s ease;
}
.light-logo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: brightness(0.2);
}
.dark-logo {
    opacity: 1;
}
.logo-container .dark-logo {
    opacity: 1;
    filter: none;
}
.logo-container .light-logo {
    opacity: 0;
}
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}
.main-nav ul {
    display: flex;
    gap: 30px;
}
.main-nav a {
    font-weight: 500;
    position: relative;
}
.main-nav a.active {
    color: #fdec08;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fdec08;
    transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
.right-header-elements {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.contact-btn {
    display: flex;
    align-items: center;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 20;
    margin-left: 15px;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: var(--transition);
    border-radius: 2px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    z-index: 1;
    background-color: var(--bg-color);
}
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    will-change: opacity;
}
.hero-slideshow .slide.active {
    opacity: 1;
}
.hero-slideshow .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}
.hero-btn p {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
    font-weight: 400;
}

.services-section {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color-light);
    overflow: hidden;
}
.services-background-container {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: -1;
    display: flex;
    overflow: hidden;
}
.services-bg {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: rotate(27deg) scale(1.05);
    transform-origin: center center;
}
.services-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}
.services-bg-1 {
    z-index: 3;
}
.services-bg-2 {
    z-index: 2;
}
.services-bg-3 {
    z-index: 1;
}
.section-header {
    margin-bottom: 60px;
    position: relative;
}
.section-header.text-center {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0.95;
    transition: opacity 0.5s ease;
}
.services-section:hover .services-grid {
    opacity: 1;
}
.service-card {
    --reveal-transition:
        opacity var(--reveal-duration, 820ms) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.7s ease,
                background-color 0.4s ease, border-color 0.4s ease,
                box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, box-shadow;
}
.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 86, 252, 0.08) 0%, rgba(253, 236, 8, 0.08) 100%);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}
.service-card:hover {
    transform: translateY(-15px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(240, 86, 252, 0.3);
}
.service-card:hover::before {
    top: 0;
    opacity: 1;
}
.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background-color: rgba(89, 190, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    transform-origin: center;
}
.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 236, 8, 0.5) 0%, rgba(253, 236, 8, 0) 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.service-card:hover .service-icon {
    background-color: rgba(253, 236, 8, 0.15);
    transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-icon::after {
    transform: scale(1.5);
    opacity: 0.2;
    animation: pulse-icon 1.5s infinite alternate;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.4s ease,
                transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateZ(0);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card:hover h3 {
    color: #fdec08;
    transform: translateY(-3px) translateZ(0);
}
.service-card p {
    color: var(--text-color-muted);
    margin-bottom: 20px;
    transition: color 0.5s ease,
                transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.4s ease;
    transform: translateZ(0);
    opacity: 0.9;
}
.service-card:hover p {
    color: var(--text-color);
    opacity: 1;
    transform: translateY(-2px) translateZ(0);
}
.learn-more {
    color: var(--accent-secondary);
    font-weight: 500;
    display: inline-block;
    position: relative;
    transition: color 0.4s ease,
                transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding-bottom: 2px;
    transform: translateZ(0);
}
.learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fdec08;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.learn-more:hover {
    color: #fdec08;
    transform: translateX(5px) translateZ(0);
}
.learn-more:hover::after {
    width: 100%;
}
@keyframes pulse-icon {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.5;
    }
}
.service-card img {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.service-card:hover img {
    transform: scale(1.15) rotate(8deg);
}

.creative-process {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background-color: var(--bg-color);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(45deg, #0ea5e9, #8b5cf6);
    border-image-slice: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}
.creative-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    position: relative;
}
.creative-process-video {
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(110, 72, 228, 0.3) 0%,
        rgba(0, 209, 255, 0.2) 50%,
        rgba(138, 43, 226, 0.3) 100%
    );
    z-index: 2;
}

.creative-process-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    display: flex;
    align-items: center;
    min-height: 70vh;
}
.creative-process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(147, 51, 234, 0.15) 35%,
        rgba(236, 72, 153, 0.15) 65%,
        rgba(59, 130, 246, 0.15) 100%
    );
    backdrop-filter: blur(20px);
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.content-wrapper {
    padding: 80px 60px;
    position: relative;
    z-index: 4;
}
.content-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff 0%, #fdec08 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    line-height: 1.3;
}
.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
.subtitle {
    font-size: 1.2rem;
    color: #fdec08;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
}
.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.creative-process-content .btn {
    margin-top: 20px;
    background: var(--gradient-primary);
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.creative-process-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}
.creative-process-content .btn:hover::before {
    transform: translateX(0);
}
.creative-process-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-section {
    padding: 50px 0;
    background-color: var(--bg-color-light);
    position: relative;
    overflow: hidden;
}
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 72, 228, 0.1) 0%, rgba(240, 86, 252, 0.1) 100%);
    z-index: 0;
}

.testimonial-wrapper {
    position: relative;
    z-index: 1;
}
.testimonial-cards-container {
    overflow: hidden;
    margin-bottom: 40px;
}
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    will-change: transform, opacity;
}
.testimonial-card {
    opacity: 1;
    transition: all 0.3s ease;
}
.testimonial-card.hidden {
    opacity: 0;
    pointer-events: none;
}
.card-inner {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.quote-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.7;
}
.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
    flex: 1;
    text-align: left;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.author-info {
    flex: 1;
}
.author-name {
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: white;
    font-weight: 600;
}
.author-details {
    color: var(--text-color-light);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}
.testimonial-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}
.testimonial-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}
.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.pagination-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}
.pagination-dot:hover {
    background: var(--primary-color);
    opacity: 0.8;
}

.faq-section {
    position: relative;
    background-color: var(--bg-color);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.faq-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-content {
    padding-right: 20px;
}
.faq-content h2 {
    margin-bottom: 30px;
}
.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0;
    padding-right: 20px;
    transition: color 0.3s ease;
}
.faq-item:hover h4 {
    color: var(--primary-color);
}
.faq-item.active h4 {
    color: #fdec08;
}
.dropdown-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.dropdown-icon i {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
}
.faq-item.active .dropdown-icon {
    background: var(--accent-color);
}
.faq-item.active .dropdown-icon {
    background: var(--accent-secondary);;
}
.faq-item.active .dropdown-icon i {
    color: #003a70;
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    transform: translateY(-10px);
}
.faq-answer.show {
    max-height: 300px;
    padding-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
}
.faq-answer p {
    color: var(--text-color-light);
    line-height: 1.7;
    margin: 0;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.stats-section {
    padding: 50px 0;
    background-color: var(--bg-color-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-item p {
    font-size: 1rem;
    color: var(--text-color-muted);
}

.stats-cta-container {
    text-align: center;
    margin-top: 40px;
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 30px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}
.footer-logo-column p {
    color: var(--footer-text);
    margin-bottom: 25px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
    margin-right: 10px;
    transition: var(--transition);
    transform: translateZ(0);
}
.social-icons a:hover {
    background-color: var(--accent-secondary);
    color: #ffffff;
}
.footer-links-column h4,
.footer-contact-column h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}
.footer-links-column h4::after,
.footer-contact-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #fdec08;
}
.footer-links-column ul li {
    margin-bottom: 12px;
}
.footer-links-column a {
    color: var(--footer-text);
    transition: var(--transition);
}
.footer-links-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.contact-info p {
    display: flex;
    gap: 15px;
    color: var(--footer-text);
    margin-bottom: 15px;
}
.contact-info i {
    color: #fdec08;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
    color: var(--footer-text);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: var(--footer-text);
}
.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.gallery-section {
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
    padding-top: 100px;
}
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 72, 228, 0.05) 0%, rgba(0, 209, 255, 0.05) 100%);
    z-index: 1;
}
.gallery-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.gallery-section .section-header {
    margin-bottom: 50px;
    position: relative;
}
.gallery-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
.gallery-section .section-header h3 {
    color: #fdec08;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}
.filter-buttons::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    z-index: -1;
}
.filter-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-color-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 5px 10px;
    text-align: center;
    min-width: 80px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.filter-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.filter-btn:hover::before,
.filter-btn.active::before,
.filter-btn.touch-active::before {
    opacity: 1;
}
.filter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 35, 0.9);
    border-radius: 30px;
    z-index: -1;
    transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active,
.filter-btn.touch-active {
    color: #fdec08;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.filter-btn:hover::after,
.filter-btn.active::after,
.filter-btn.touch-active::after {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: auto;
    gap: 24px;
    margin-bottom: 50px;
    padding: 0;
    width: 100%;
    list-style: none;
    box-sizing: border-box;
    grid-auto-rows: auto !important;
    transition: grid-template-columns 0.2s ease, grid-auto-rows 0.2s ease;
}
.gallery-grid:empty,
.gallery-grid[style*="display: none"] {
    display: none !important;
    margin: 0;
    padding: 0;
}
.gallery-grid .loading-gallery,
.gallery-grid .error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: var(--text-color-muted);
}
.gallery-item {
    background-color: var(--bg-color-light);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
    opacity: 1;
    position: relative;
    will-change: opacity, transform;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transform: translateZ(0);
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.gallery-item a {
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    width: 100%;
    flex: 0 0 auto;
}
.gallery-item,
.gallery-item.gallery-uniform,
.gallery-item.gallery-large,
.gallery-item.gallery-medium,
.gallery-item.gallery-tall,
.gallery-item.gallery-small {
    position: static !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.gallery-item img {
    width: 100%;
    height: 290px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: var(--bg-color-light);
    border-radius: 0;
    display: block;
    transform: translateZ(0);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item.loading {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(
        90deg,
        var(--bg-color-light) 0%,
        var(--bg-color) 50%,
        var(--bg-color-light) 100%
    );
    background-size: 200% 100%;
    opacity: 0.5;
    pointer-events: none;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.gallery-text {
    padding: 16px !important;
    text-align: left;
    background: var(--bg-color-light) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex: 0 0 auto;
    min-height: 90px !important;
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateZ(0);
}
.gallery-item {
    background-color: #ffffff;
    border: 1px solid rgba(86, 54, 201, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.gallery-item:hover {
    box-shadow: 0 15px 30px rgba(86, 54, 201, 0.15);
    border-color: rgba(86, 54, 201, 0.2);
    transform: translateY(-5px);
}
.gallery-text {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.gallery-text h4 {
    color: #2c3e50;
}
.gallery-text p {
    color: #6c757d;
}
.gallery-text h4 {
    margin: 0 0 10px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: rgba(30, 41, 59, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: block !important;
    visibility: visible !important;
}
.gallery-text p {
    margin: 0 !important;
    font-size: 14px !important;
    color: rgba(30, 41, 59, 0.9);
    line-height: 1.5;
    opacity: 0.8;
    display: block !important;
    visibility: visible !important;
}
.gallery-text h4:empty::before {
    content: "Exhibition Stand";
    opacity: 0.6;
}
.gallery-text p:empty::before {
    content: "Professional exhibition stand design and build services.";
    opacity: 0.6;
}
.gallery-item.showing {
    display: flex;
    opacity: 1;
}
.gallery-item.hidden {
    display: none;
}
@keyframes galleryItemHide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}
.load-more-container {
    text-align: center;
    margin-top: 30px;
}
.load-more-btn:not(.btn-primary) {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    padding: 12px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}
.load-more-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: button-spin 1s linear infinite;
}
@keyframes button-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-grid.loading-more {
    min-height: calc(100vh - 200px);
}
.gallery-loading-indicator {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--text-color-muted);
    font-size: 14px;
    opacity: 0.7;
}
.loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.load-more-btn:not(.btn-primary)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: -1;
}
.load-more-btn:not(.btn-primary):hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.load-more-btn:not(.btn-primary):hover {
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(160px, auto);
        gap: 10px;
    }
    .gallery-item.gallery-uniform,
    .gallery-item.gallery-large,
    .gallery-item.gallery-medium,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-grid .gallery-item:only-child {
        max-width: 400px;
        margin: 0 auto;
    }
    .gallery-grid .gallery-item:nth-child(n+1):nth-child(-n+2):nth-last-child(n+1):nth-last-child(-n+2) {
        justify-self: center;
    }
    .gallery-grid .gallery-item:nth-child(n+1):nth-child(-n+3):nth-last-child(n+1):nth-last-child(-n+3) {
        min-height: 200px;
    }
    .gallery-item img {
        height: 100%;
    }
    .lg-outer .lg-img-wrap {
        padding: 0 20px;
    }
    .lg-outer .lg-thumb {
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto 50px;
    }
}
@media (max-width: 1199px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

    .lg-outer .lg-img-wrap {
        padding: 0 10px;
    }
    .lg-toolbar {
        background-color: rgba(0, 0, 0, 0.75);
    }
    .lg-sub-html {
        font-size: 14px;
        padding: 10px;
    }
    .lg-outer .lg-thumb-outer {
        padding: 0 5px;
    }
    .lg-outer .lg-thumb {
        padding: 5px 0;
    }
    .lg-outer .lg-thumb-item {
        margin-bottom: 5px;
    }
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}
.lg-outer {
    width: 100%;
    height: 100%;
}
.lg-outer .lg-img-wrap {
    padding: 20px 0;
    transition: all 0.3s ease;
}
.lg-outer .lg-item {
    transition: transform 0.25s ease-out;
}
.lg-outer.lg-visible {
    opacity: 1;
    transition: opacity 0.35s ease-in-out;
}
.lg-custom-theme .lg-close {
    font-size: 24px;
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    transition: background 0.3s ease;
}
.gallery-item:active::after {
    background: rgba(255, 255, 255, 0.1);
}
.contact-section {
    position: relative;
    background-color: var(--bg-color-light);
    overflow: hidden;
}
.contact-section .section-header h3 {
    color: var(--accent-secondary);;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}
.contact-section .section-header h2 {
    font-size: 42px;
    margin-bottom: 0;
}
.contact-tabs {
    max-width: 1100px;
    margin: 0 auto 40px;
}
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-color-muted);
    font-size: 18px;
    font-weight: 600;
    padding: 12px 35px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 20px;
}
.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FFC107;
    transition: all 0.3s ease;
}
.tab-btn.active {
    color: #FFC107;
}
.tab-btn.active:after {
    width: 100%;
}
.tab-btn:hover {
    color: #FFC107;
}
.tab-content {
    position: relative;
}
.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tab-pane.active {
    display: block;
    opacity: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}
.contact-info {
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-method {
    display: flex;
    margin-bottom: 35px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.contact-method:hover .contact-icon {
    transform: scale(1.1);
}
.contact-icon {
    background: rgba(255, 255, 255, 0.05);
    color: #FFC107;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    overflow: hidden;
}
.contact-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #1976D2;
    border: 2px solid rgba(25, 118, 210, 0.3);
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.15);
    animation: pulse-light 2s infinite;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}
.contact-icon .fa-map-marker-alt,
.contact-icon .fa-clock {
    color: #FFC107;
    font-size: 22px;
}
.contact-icon .fa-map-marker-alt,
.contact-icon .fa-clock {
    color: #1976D2;
    font-size: 22px;
}
.contact-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
}
.contact-details p {
    color: var(--text-color-muted) !important;
    line-height: 1.7;
    font-size: 15px;
}
.contact-details p > a {
    color: var(--text-color-muted) !important;
}

.visit-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}
.visit-address {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.visit-map {
    display: flex;
    flex-direction: column;
}
.contact-map {
    margin-top: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-grow: 1;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.contact-map:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-secondary);;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}
.contact-map:hover::before {
    opacity: 0.05;
}

.map-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}
.map-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
}
.map-actions .btn i {
    margin-right: 10px;
}
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    flex-grow: 1;
}
.form-group {
    position: relative;
}
.form-group.full-width {
    grid-column: span 2;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-secondary);;
    outline: none;
    background-color: rgba(0, 58, 112, 0.05);
    box-shadow: 0 0 0 3px rgba(89, 190, 255, 0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-color-muted);
    opacity: 0.7;
}
.submit-btn {
    background: #FFC107;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.submit-btn:hover {
    background: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.tab-navigation {
    border-bottom-color: rgba(0, 58, 112, 0.1);
}
.tab-btn {
    color: var(--text-color-muted);
}
.tab-btn.active,
.tab-btn:hover {
    color: #1976D2;
}
.tab-btn.active:after {
    background: #1976D2;
}
.contact-map {
    border: 1px solid rgba(0, 58, 112, 0.1);
}
.contact-map::before {
    background: var(--primary-color);
    opacity: 0.02;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.notification-success {
    border-left: 4px solid #28a745;
}
.notification-error {
    border-left: 4px solid #dc3545;
}
.notification-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.notification-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.notification-success .notification-icon {
    color: #28a745;
}
.notification-error .notification-icon {
    color: #dc3545;
}
.notification-message {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}
.notification-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.notification-close:hover {
    color: #333;
}
body.dark-theme .notification {
    background: #2a2a2a;
    color: var(--text-color);
}
body.dark-theme .notification-message {
    color: var(--text-color);
}
body.dark-theme .notification-close {
    color: var(--text-color-muted);
}
body.dark-theme .notification-close:hover {
    color: var(--text-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
        border-radius: 50%;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
        border-radius: 50%;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
        border-radius: 50%;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.hero-fade-delay-1 {
    animation-delay: 0.3s;
}
.hero-fade-delay-2 {
    animation-delay: 0.6s;
}
.hero-fade-delay-3 {
    animation-delay: 0.9s;
}
@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 118, 210, 0.7);
        border-radius: 50%;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(25, 118, 210, 0);
        border-radius: 50%;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 118, 210, 0);
        border-radius: 50%;
    }
}
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s;
    opacity: 0;
}
.gallery-item:hover::before {
    animation: shine 1.5s;
    opacity: 1;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
.lg-toolbar,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    background-color: var(--bg-color-light);
}
.lg-outer .lg-sub-html {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 0.3s ease;
}
.lg-outer .lg-sub-html h4 {
    color: white;
    margin: 0 0 5px;
    font-size: 18px;
}
.lg-outer .lg-sub-html p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}
.lg-outer .lg-thumb-outer {
    z-index: 1080;
}
.lg-outer .lg-toolbar {
    z-index: 1082;
}
.lg-outer .lg-close {
    z-index: 1083;
}

.clients-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color-light);
}
.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 72, 228, 0.05) 0%, rgba(0, 209, 255, 0.05) 100%);
    z-index: 1;
}
.clients-section .container {
    position: relative;
    z-index: 2;
}
.clients-section .section-header {
    margin-bottom: 60px;
    position: relative;
}

.clients-section .section-header h3 {
    color: var(--accent-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.clients-cta {
    margin-top: 60px;
    padding: 50px;
    position: relative;
    z-index: 2;
    background: rgba(14, 14, 26, 0.5);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.clients-cta::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg,
        var(--primary-color),
        transparent,
        var(--accent-secondary);,
        transparent,
        var(--primary-color)
    );
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    animation: gradientBorder 10s linear infinite;
}
.clients-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.5;
}
.clients-cta .btn {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clients-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.4s ease;
}
.clients-cta .btn:hover::before {
    left: 100%;
}
.clients-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.clients-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 -20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(30, 30, 47, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.clients-carousel {
    display: flex;
    width: max-content;
    animation: scrollInfinite 80s linear infinite;
}
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}
.client-logo {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
.client-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}
.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-secondary);;
}
.client-logo:hover::before {
    animation: shine 1.5s ease-in-out;
    opacity: 1;
}
.client-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}
.client-logo:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
}
.client-logo[data-has-work="true"] {
    cursor: pointer;
}
.client-work-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-work-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}
.client-work-modal-content {
    position: relative;
    background: var(--tertiary-color);
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.client-work-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 20px;
    border-bottom: none;
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}
.client-work-modal-header h3 {
    display: none;
}
.client-work-modal-close {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    backdrop-filter: blur(10px);
}
.client-work-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}
.client-work-modal-body {
    padding: 0;
    max-height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-work-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.client-work-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    max-width: 100%;
    max-height: 70vh;
}
.client-work-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.client-work-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.clients-carousel-container::before,
.clients-carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.clients-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--tertiary-color), transparent);
}
.clients-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--tertiary-color), transparent);
}
.clients-section .decoration-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    filter: blur(20px);
    opacity: 0.2;
    z-index: 0;
}
.clients-section .dot-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}
.clients-section .dot-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
}

#gallery {
    position: relative;
}
#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 3;
}
.creative-process-content::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.95) 35%,
        rgba(236, 253, 245, 0.95) 65%,
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.content-wrapper h2 {
    background: linear-gradient(to right, #1e293b 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.content-wrapper p {
    color: rgba(30, 41, 59, 0.9);
}
.subtitle {
    color: #0ea5e9;
    font-weight: 600;
}
.clients-cta {
    background-color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 57, 112, 0.1);
}
.clients-cta p {
    color: rgba(0, 0, 0, 0.8);
}
.main-header {
    background-color: var(--accent-secondary);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.service-card {
    background-color: var(--card-bg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--input-border);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 57, 112, 0.1);
    border-color: rgba(89, 190, 255, 0.3);
    background: white;
}
.service-card p {
    color: #555;
}
.learn-more {
    color: #003a70;
    font-weight: 600;
}
.learn-more:hover {
    color: var(--accent-secondary);
}
.filter-buttons::before {
    background: linear-gradient(to right,
        transparent,
        rgba(86, 54, 201, 0.2),
        transparent
    );
}
.video-overlay {
    background: linear-gradient(
        135deg,
        rgba(30, 41, 59, 0.4) 0%,
        rgba(14, 165, 233, 0.3) 50%,
        rgba(139, 92, 246, 0.4) 100%
    );
}
h1, h2, h3, h4, h5, h6, p, a, span, li, .testimonial-text {
    transition: color 0.5s ease;
}
.service-icon {
    background-color: rgba(89, 190, 255, 0.15);
    box-shadow: 0 8px 20px rgba(89, 190, 255, 0.12);
    border: 1px solid rgba(89, 190, 255, 0.3);
}
.filter-btn:hover,
.filter-btn.active,
.filter-btn.touch-active {
    color: #fff;
    background: linear-gradient(45deg, rgba(240, 86, 252, 0.9), rgba(110, 72, 228, 0.9));
}
.btn-primary {
    background: linear-gradient(45deg, #f056fc, #6e48e4);
    color: white;
    box-shadow: 0 4px 15px rgba(110, 72, 228, 0.3);
}
.testimonial-section::before {
    background: linear-gradient(135deg, rgba(0, 57, 112, 0.08) 0%, rgba(89, 190, 255, 0.08) 100%);
}
.card-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 57, 112, 0.1);
    box-shadow: 0 8px 25px rgba(0, 57, 112, 0.08);
}
.card-inner:hover {
    box-shadow: 0 15px 35px rgba(0, 57, 112, 0.12);
    border-color: rgba(0, 57, 112, 0.15);
}
.quote-icon {
    color: var(--accent-secondary);
}
.testimonial-text {
    color: #555;
    font-style: italic;
}
.author-name {
    color: #003a70;
}
.author-details {
    color: #777;
    opacity: 0.9;
}
.author-avatar {
    background: var(--gradient-primary);
}
.testimonial-nav-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 57, 112, 0.15);
    color: var(--accent-secondary);
    box-shadow: 0 4px 12px rgba(0, 57, 112, 0.08);
}
.testimonial-nav-btn:hover {
    background: var(--accent-secondary);
    color: white;
    border-color: var(--accent-secondary);
    box-shadow: 0 6px 16px rgba(89, 190, 255, 0.25);
}
.testimonial-nav-btn:disabled {
    background: #f8f9fa;
    color: #ccc;
    border-color: #eee;
    box-shadow: none;
}
.pagination-dot {
    background: rgba(0, 57, 112, 0.2);
}
.pagination-dot.active {
    background: var(--accent-secondary);
}
.pagination-dot:hover {
    background: var(--accent-secondary);
}

.faq-item.active h4 {
    color: #003a70;
}
.faq-item:hover h4 {
    color: var(--primary-color);
}
.footer-links-column a {
    color: #e1e1e1;
}
.main-nav a {
    color: #333;
    font-weight: 500;
}
.main-nav a.active {
    color: #003a70;
    font-weight: 600;
}
.main-nav a::after {
    height: 2px;
}
.mobile-menu-toggle span {
    background-color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(86, 54, 201, 0.1);
}
.contact-form-container {
    background-color: var(--testimonial-bg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--input-border);
}
.filter-btn {
    background-color: white;
    border: 1px solid rgba(0, 57, 112, 0.2);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}
.filter-btn.active {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: var(--accent-color);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 57, 112, 0.25);
    transform: translateY(-2px);
}
.filter-btn:hover {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.gallery-section::before {
    background: linear-gradient(to bottom,
        rgba(240, 240, 250, 0.8) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}
.testimonial-section::before {
    background: var(--gradient-overlay);
}

.contact-method {
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
}
.contact-details h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-details p {
    color: var(--text-color-muted);
    line-height: 1.6;
}
.clients-carousel-container {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 57, 112, 0.1);
}
.client-logo {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.client-logo:hover {
    box-shadow: 0 10px 20px rgba(0, 57, 112, 0.1);
    border-color: rgba(0, 57, 112, 0.2);
    transform: translateY(-5px);
}
.client-logo:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
}
.clients-section::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 250, 0.8) 100%);
}
.faq-item h4 {
    color: #333;
    font-weight: 600;
}
.faq-answer p {
    color: var(--text-color-muted);
}
.dropdown-icon {
    background-color: rgba(89, 190, 255, 0.15);
    color: #003a70;
}
.faq-item.active .dropdown-icon i {
    color: #003a70;
    transform: rotate(180deg);
}
.faq-content h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
.faq-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 57, 112, 0.1);
}
.clients-carousel-container::before,
.clients-carousel-container::after {
    display: none;
}
.filter-buttons {
    margin-bottom: 40px;
}

.btn-primary,
.clients-cta .btn {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
}
.contact-btn .btn-primary:hover,
.btn-primary:hover,
.clients-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 57, 112, 0.3);
    background: linear-gradient(45deg, #003a70, #59beff, #fdec08);
}
.contact-info i {
    color: var(--accent-secondary);
}
.learn-more:hover {
    color: var(--accent-secondary);
}

    .gallery-item {
        -webkit-tap-highlight-color: transparent;
    }
}

.faq-item {
    margin-bottom: 15px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.faq-item h4 {
    cursor: pointer;
    font-size: 1.1rem;
    padding: 15px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px 0 0;
}
.faq-answer.show {
    max-height: 500px;
    padding: 0 30px 15px 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: none;
}
.service-card:hover h3 {
    color: #003a70;
}
.service-card:hover .service-icon {
    background-color: rgba(0, 57, 112, 0.1);
}
.service-card:hover .learn-more {
    color: #003a70;
}
.learn-more:hover {
    color: #003a70;
}
.blog-card:hover h3 {
    color: #003a70;
}
.btn:hover {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
}
.faq-dropdown {
    margin-top: 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.learn-more:hover {
    color: #003a70 !important;
}
.faq-dropdown {
    border-bottom: none !important;
}
.faq-item:last-child {
    border-bottom: none !important;
}
.service-card:hover h3,
.service-card:hover .learn-more {
    color: #003a70 !important;
}
.global-presence-section {
    position: relative;
    background-color: var(--bg-color-light);
    overflow: hidden;
}
.global-presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 35%, rgba(0, 58, 112, 0.05) 0%, transparent 60%);
    z-index: 1;
}
.map-container,
.world-map-container {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
}
.map-container:hover,
.world-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.world-map {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
}
.map-container,
.world-map-container {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-slogan {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 20px;
    color: #e6bd00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.world-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.datamaps-hoverover {
    display: none !important;
}
.world-map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 5px;
    padding: 10px 15px;
    width: 180px;
    z-index: 10;
    border: 1px solid #444;
}
.legend-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-secondary);
    text-align: center;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 12px;
    color: #eee;
}
.legend-color {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    border-radius: 2px;
}
.connection-path {
    stroke: var(--accent-secondary);;
    stroke-width: 2px;
    fill: none;
    filter: drop-shadow(0 0 2px rgba(0, 136, 255, 0.4));
}
.connection-path {
    stroke: var(--primary-color);
    filter: drop-shadow(0 0 2px rgba(0, 58, 112, 0.5));
}
.uk-pulse {
    fill: var(--accent-secondary);;
    filter: drop-shadow(0 0 3px rgba(0, 136, 255, 0.7));
}
.uk-pulse {
    fill: var(--primary-color);
    filter: drop-shadow(0 0 3px rgba(0, 58, 112, 0.8));
}
.uk-pulse-outer {
    stroke: var(--accent-secondary);;
    fill: none;
    animation: pulse-animation 2s infinite;
}
.uk-pulse-outer {
    stroke: var(--primary-color);
}
.datamaps-subunit {
    cursor: default !important;
    transition: none !important;
}
.datamaps-subunit:hover {
    opacity: 1 !important;
}

.world-map-legend {
    background: rgba(245, 245, 245, 0.9);
    border: 1px solid #ddd;
}
.legend-title {
    color: #003a70;
}
.legend-item {
    color: #333;
}

.world-map-legend,
.world-map-legend.light-theme {
    background: rgba(245, 245, 245, 0.9);
    border: 1px solid #ddd;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.legend-title,
.world-map-legend.light-theme .legend-title {
    color: #003a70;
    font-weight: 600;
}
.legend-item,
.world-map-legend.light-theme .legend-item {
    color: #444;
}
@keyframes pulse-animation {
    0% {
        r: 5;
        opacity: 0.7;
    }
    100% {
        r: 25;
        opacity: 0;
    }
}
.global-presence-section .section-header {
    position: relative;
    z-index: 2;
}

.global-presence-section .section-subtitle {
    color: var(--text-color-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.world-map-container .datamap {
    pointer-events: none;
}
.world-map-container .datamaps-subunit {
    cursor: default !important;
}
.world-map-container svg {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}
.world-map-container {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 58, 112, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.submit-btn {
    background: #1976D2;
    color: #fff;
}
.submit-btn:hover {
    background: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 57, 112, 0.3);
}

.hero-slideshow .slide,
.filter-btn {
    transform: translateZ(0);
}
html.js [data-reveal] {
    --reveal-duration: 820ms;
    --reveal-delay: 0ms;
    --reveal-x: 0px;
    --reveal-y: 42px;
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
    transition: var(--reveal-transition, opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay));
    will-change: opacity, transform;
    backface-visibility: hidden;
}
html.js [data-reveal="left"] {
    --reveal-x: -48px;
    --reveal-y: 0px;
}
html.js [data-reveal="right"] {
    --reveal-x: 48px;
    --reveal-y: 0px;
}
html.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
    .hero-slideshow .slide {
        transition: none;
    }
    .service-card,
    .gallery-item,
    .client-logo {
        transition: none;
    }
    html.js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.services-section .section-header h2 {
    padding-top: 3%;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-morocco {
    background-image: url('../images/Morocco @WTM 2024.jpg');
}
.slide-estee-lauder {
    background-image: url('../images/Estee Lauder @TFWA 2024.JPG');
}
.slide-ravensburger {
    background-image: url('../images/Ravenburger @SPRING FAIR 2025.png');
}
.slide-power-x {
    background-image: url('../images/Power X @ Hillhead 2024 - 1.jpg');
}
.slide-hurco {
    background-image: url('../images/Hurco @MACH 2024.jpg');
}
.gallery-item.hiding {
    animation: galleryItemHide 0.3s ease forwards;
    display: none;
}
.gallery-item.showing {
    animation: galleryItemShow 0.3s ease forwards;
    display: block;
}
@keyframes galleryItemShow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes galleryItemHide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}
.hero-slideshow .slide[class*="dynamic-slide-"] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: opacity 0.8s ease-in-out;
}

.hero-slideshow .slide[class*="dynamic-slide-"]:not(.active) {
    opacity: 0;
}
.hero-slideshow .slide[class*="dynamic-slide-"].active {
    opacity: 1;
}
.hero-slideshow:not(:has(.slide[class*="dynamic-slide-"])) .slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.map-fallback {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.map-fallback iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: contrast(1.1) saturate(0.9);
}
#contact-map,
#nec-map,
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.blog-archive {
    padding: 50px 0;
}
.blog-page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.blog-page-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.5s ease;
}
.blog-page-header .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, #59beff, #fdec08);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.blog-page-header .archive-description {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    max-width: 700px;
    margin: 20px auto 0;
}
.blog-category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.category-filter-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--filter-btn-bg);
    border: 1px solid var(--filter-btn-border);
    border-radius: var(--button-radius);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}
.category-filter-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.category-filter-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.blog-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.4s ease,
                background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(89, 190, 255, 0.08) 0%, rgba(253, 236, 8, 0.08) 100%);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}
.blog-card:hover {
    transform: translateY(-15px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(89, 190, 255, 0.3);
}
.blog-card:hover::before {
    top: 0;
    opacity: 1;
}
.blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--bg-color-light);
}
.blog-card-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-header {
    margin-bottom: 15px;
}
.blog-card-category {
    margin-bottom: 10px;
}
.blog-card-category a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-decoration: none;
    transition: var(--transition);
}
.blog-card-category a:hover {
    background: var(--accent-secondary);;
    transform: translateY(-1px);
}
.blog-card-title {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}
.blog-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}
.blog-card-title a:hover {
    color: var(--primary-color);
}
.blog-card-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-color-muted);
}
.blog-card-date {
    color: var(--text-color-muted);
}
.blog-card-excerpt {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--text-color-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.blog-card-footer {
    margin-top: auto;
}
.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}
.blog-card-read-more:hover {
    color: var(--accent-color);
    gap: 12px;
}
.blog-card-read-more span {
    transition: var(--transition);
}
.blog-card-read-more:hover span {
    transform: translateX(5px);
}
.no-posts-found {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-color-muted);
}
.no-posts-found p {
    font-size: 1.1rem;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--button-radius);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}
.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}
.pagination .page-numbers.dots:hover {
    background: transparent;
    color: var(--text-color);
}
.blog-single {
    padding: 125px 0;
}
.blog-single-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.blog-single-content {
    min-width: 0;
}
.blog-single .entry-header {
    margin-bottom: 30px;
}
.blog-single .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}
.blog-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-color-muted);
}
.blog-breadcrumbs a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: var(--transition);
}
.blog-breadcrumbs a:hover {
    color: var(--primary-color);
}
.breadcrumb-separator {
    color: var(--text-color-muted);
    margin: 0 5px;
}
.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}
.blog-single .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.blog-single .entry-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color-muted);
}
.blog-single .entry-meta .meta-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}
.blog-single .entry-meta .meta-item a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: var(--transition);
}
.blog-single .entry-meta .meta-item a:hover {
    color: var(--primary-color);
}
.blog-single .entry-meta .meta-item time {
    color: var(--text-color-muted);
}
.blog-single .post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.blog-single .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-single .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}
.blog-single .entry-content p {
    margin-bottom: 1.5rem;
}
.blog-single .entry-content h2,
.blog-single .entry-content h3,
.blog-single .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}
.blog-single .entry-content h2 {
    font-size: 2rem;
}
.blog-single .entry-content h3 {
    font-size: 1.6rem;
}
.blog-single .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
}
.blog-single .entry-content ul,
.blog-single .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}
.blog-single .entry-content li {
    margin-bottom: 0.75rem;
}
.blog-single .entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-color-muted);
}
.blog-single .entry-footer .cat-links,
.blog-single .entry-footer .tags-links {
    display: inline-block;
}
.blog-single .entry-footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}
.blog-single .entry-footer a:hover {
    color: var(--accent-secondary);;
}
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.blog-sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.blog-sidebar .widget {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.blog-sidebar .widget:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.blog-sidebar .widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}
.blog-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #59beff, #fdec08);
}
.blog-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-sidebar .widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}
.blog-sidebar .widget ul li:last-child {
    border-bottom: none;
}
.blog-sidebar .widget ul li:hover {
    padding-left: 10px;
}
.blog-sidebar .widget ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}
.blog-sidebar .widget ul li a:hover {
    color: var(--primary-color);
}
.blog-sidebar .widget ul li .count {
    float: right;
    color: var(--text-color-muted);
    font-size: 0.9rem;
}
.blog-sidebar .widget_recent_entries ul li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 0;
}
.blog-sidebar .widget_recent_entries ul li a {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}
.blog-sidebar .widget_recent_entries ul li a:hover {
    color: var(--primary-color);
}
.blog-sidebar .widget_recent_entries .post-date {
    font-size: 0.85rem;
    color: var(--text-color-muted);
}
.blog-sidebar .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-sidebar .tagcloud a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--button-radius);
    color: #ffffff;
    font-size: 0.9rem !important;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}
.blog-sidebar .tagcloud a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.blog-sidebar .widget_search form {
    display: flex;
    gap: 0;
}
.blog-sidebar .widget_search input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--button-radius) 0 0 var(--button-radius);
    background: var(--input-bg);
    color: var(--input-text);
    font-size: 0.95rem;
}
.blog-sidebar .widget_search input[type="submit"] {
    padding: 12px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 0 var(--button-radius) var(--button-radius) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.blog-sidebar .widget_search input[type="submit"]:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}
.comments-area {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}
.comments-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.comment {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.comment-author .fn {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}
.comment-metadata {
    font-size: 0.85rem;
    color: var(--text-color-muted);
    margin-bottom: 15px;
}
.comment-metadata a {
    color: var(--text-color-muted);
    text-decoration: none;
}
.comment-content {
    color: var(--text-color);
    line-height: 1.7;
}
.comment-reply-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--button-radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.comment-reply-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}
.comment-respond {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.comment-reply-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--button-radius);
    background: var(--input-bg);
    color: var(--input-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 58, 112, 0.1);
}
.comment-form .form-submit {
    margin-top: 20px;
}
.comment-form input[type="submit"] {
    padding: 12px 30px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: var(--button-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.comment-form input[type="submit"]:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.post-navigation {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}
.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-color-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.post-navigation .nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}
.post-navigation .nav-next {
    text-align: right;
}
.related-posts-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}
.related-posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}
.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #59beff, #fdec08);
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.related-post-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    will-change: transform, box-shadow;
}
.related-post-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(89, 190, 255, 0.08) 0%, rgba(253, 236, 8, 0.08) 100%);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}
.related-post-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(89, 190, 255, 0.3);
}
.related-post-card:hover::before {
    top: 0;
    opacity: 1;
}
.related-post-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--bg-color-light);
}
.related-post-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}
.related-post-content {
    padding: 20px;
}
.related-post-title {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}
.related-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}
.related-post-title a:hover {
    color: var(--primary-color);
}
.related-post-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-color-muted);
}

.return-to-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.return-to-home-btn.show {
    opacity: 1;
    visibility: visible;
}
.return-to-home-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.return-to-home-btn i {
    font-size: 20px;
}
.return-to-home-btn {
    background-color: var(--primary-color);
    color: var(--accent-color);
}
.return-to-home-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.legal-page {
    padding-top: 80px;
    background-color: var(--bg-color);
    min-height: 100vh;
}
.legal-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004a8f 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.legal-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.legal-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.legal-date {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}
.legal-content {
    padding: 60px 0 80px;
}
.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-color-light);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-section {
    margin-bottom: 35px;
}
.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(253, 236, 8, 0.2);
}
.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.legal-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}
.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}
.legal-section ul li strong {
    color: var(--text-color);
    font-weight: 600;
}
.legal-info-list li {
    margin-bottom: 8px;
}
.legal-highlight {
    background: linear-gradient(90deg, rgba(253, 236, 8, 0.1), transparent);
    padding: 15px 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    color: var(--accent-color);
}
.legal-contact {
    background-color: rgba(0, 58, 112, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}
.legal-contact address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-color);
}
.legal-section a,
.legal-document a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.legal-section a:hover,
.legal-document a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}
.legal-page {
    background-color: #f8f9fa;
}
.legal-document {
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.legal-intro {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    color: #333;
}
.legal-section p,
.legal-section ul li,
.legal-contact address {
    color: #444;
}
.legal-section ul li strong {
    color: #222;
}
.legal-section h2 {
    color: var(--primary-color);
    border-bottom-color: rgba(0, 58, 112, 0.2);
}
.legal-highlight {
    background: linear-gradient(90deg, rgba(0, 58, 112, 0.08), transparent);
    color: var(--primary-color);
}
.legal-contact {
    background-color: rgba(0, 58, 112, 0.05);
}
.legal-section a,
.legal-document a {
    color: var(--primary-color);
}
.legal-section a:hover,
.legal-document a:hover {
    color: var(--accent-secondary);
}

/* ========================================
   Responsive Media Queries (consolidated)
   ======================================== */

@media (max-width: 1024px) {
    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .card-inner {
        padding: 35px 25px;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }

    .card-inner {
        box-shadow: 0 6px 20px rgba(0, 57, 112, 0.06);
    }
    .card-inner:hover {
        box-shadow: 0 12px 28px rgba(0, 57, 112, 0.1);
    }
}

@media (max-width: 991px) {
    .section-header h2 { font-size: 2rem; }

    .main-header {
        padding: 8px 0;
    }
    .main-header .container {
        padding: 0 15px;
    }
    .main-nav {
        position: static;
        transform: none;
        display: none;
    }
    .main-nav.show {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .main-nav.show ul {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    .main-nav.show a {
        display: block;
        padding: 8px 15px;
        font-size: 16px;
        color: var(--text-color);
    }
    .main-nav.show a:hover,
    .main-nav.show a.active {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 5px;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .contact-btn {
        display: none;
    }
    .right-header-elements {
        margin-left: 0;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
    }
    .logo-container {
        max-width: 180px;
        flex-shrink: 0;
    }
    .logo-container a {
        display: flex;
        align-items: center;
    }
    .logo-container .logo {
        max-height: 45px;
        width: auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-background-container {
        flex-direction: column;
        height: 150%;
        top: -25%;
    }
    .services-bg {
        height: 33.33%;
    }
    .services-bg::after {
        background: rgba(255, 255, 255, 0.9);
    }

    .creative-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .creative-process-content {
        padding: 30px;
    }
    .content-wrapper {
        padding: 60px 40px;
        max-width: 100%;
    }
    .content-wrapper h2 {
        font-size: 2.2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-image {
        order: -1;
        text-align: center;
        margin-bottom: 10px;
    }
    .faq-image img {
        max-width: 80%;
        margin: 0 auto;
    }
    .faq-content {
        padding-right: 0;
        text-align: center;
    }
    .faq-content h2 {
        margin-bottom: 20px;
    }
    .faq-item h4 {
        justify-content: space-between;
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(150px, auto);
        gap: 8px;
    }
    .gallery-item.gallery-uniform,
    .gallery-item.gallery-large,
    .gallery-item.gallery-medium,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        display: flex;
        width: 100%;
    }
    .gallery-item img {
        height: 100%;
    }
    .lg-toolbar .lg-icon {
        padding: 10px;
    }
    .lg-outer .lg-thumb-item {
        border-radius: 4px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        order: 2;
        padding: 35px;
    }
    .contact-form-container {
        order: 1;
        padding: 35px;
    }
    .visit-us-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .visit-address {
        order: 2;
        padding: 35px;
    }
    .visit-map {
        order: 1;
    }
    .contact-map {
        height: 350px;
    }
    .tab-navigation {
        margin-bottom: 40px;
    }
    .contact-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .client-logo {
        height: 90px;
        padding: 12px;
    }

    .main-header {
        background-color: #59beff !important;
    }
    .main-header .logo-container {
        display: flex;
        align-items: center;
    }
    .main-header .logo {
        max-height: 50px;
        width: auto;
        display: block;
    }
    .main-nav.show {
        background-color: #ffffff;
    }
    .main-nav.show a {
        color: #003a70;
    }
    .main-nav.show a:hover,
    .main-nav.show a.active {
        background-color: rgba(0, 57, 112, 0.1);
        color: #003a70;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .contact-form-container {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-logo-column {
        grid-column: span 2;
        text-align: center;
    }

    .world-map {
        height: 400px;
    }

    .world-map-container {
        height: 400px;
    }
    .world-map-legend {
        width: 150px;
        padding: 8px 12px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .services-background-container {
        top: -25%;
        height: 150%;
    }
    .services-bg {
        height: 33.33%;
    }
    .services-bg::after {
        background: rgba(255, 255, 255, 0.92);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links-column,
    .footer-contact-column {
        margin-bottom: 1.5rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-logo-column {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }

    .world-map {
        height: 350px;
    }

    .world-map-container {
        height: 350px;
    }
    .world-map-legend {
        bottom: 15px;
        right: 15px;
    }

    .global-presence-section,
    .world-map-container {
        display: none !important;
    }

    .blog-archive,
    .blog-single {
        padding: 40px 0;
    }
    .blog-page-header .page-title {
        font-size: 2rem;
    }
    .blog-category-filter {
        gap: 8px;
    }
    .category-filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card-content {
        padding: 20px;
    }
    .blog-card-title {
        font-size: 1.2rem;
    }
    .blog-single-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .blog-sidebar {
        order: 2;
    }
    .blog-single-content {
        order: 1;
    }
    .blog-single .entry-title {
        font-size: 2rem;
    }
    .blog-single .entry-content {
        font-size: 1rem;
    }
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }
    .post-navigation .nav-next {
        text-align: left;
    }
    .related-posts-section {
        margin: 40px 0;
    }
    .related-posts-title {
        font-size: 1.6rem;
    }
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section,
    .gallery-section,
    .clients-section,
    .global-presence-section,
    .contact-section,
    .faq-section,
    .testimonial-section {
        padding: 80px 0;
    }

    .section-header h2 { font-size: 1.8rem; }

    .hero-section {
        padding: 100px 0 60px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .creative-process {
        padding: 80px 0;
        min-height: 60vh;
    }
    .creative-process-grid {
        min-height: 60vh;
    }
    .creative-process-content {
        min-height: auto;
    }
    .content-wrapper {
        padding: 40px 30px;
    }
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .creative-process .container::after {
        width: 200px;
        height: 200px;
        right: -70px;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card-inner {
        padding: 30px 20px;
    }
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .author-name {
        font-size: 0.95rem;
    }
    .author-details {
        font-size: 0.8rem;
    }
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }
    .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .faq-image img {
        max-width: 90%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery-item img {
        height: 250px !important;
    }
    .gallery-text {
        padding: 14px;
        min-height: 80px;
    }
    .gallery-text h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .gallery-text p {
        font-size: 11px;
        line-height: 1.4;
    }

    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .notification-content {
        padding: 12px 15px;
    }
    .notification-message {
        font-size: 13px;
    }

    .tab-btn {
        font-size: 16px;
        padding: 10px 20px;
        margin: 0 15px;
    }
    .contact-form-container,
    .contact-info,
    .visit-address {
        padding: 30px;
    }
    .contact-map {
        height: 320px;
    }
    .contact-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
    }

    .client-work-modal-content {
        width: 95vw;
        max-height: 95vh;
    }
    .client-work-modal-header {
        padding: 10px 15px;
    }
    .client-work-modal-body {
        padding: 0;
        max-height: 95vh;
    }
    .client-work-item {
        max-height: 60vh;
    }
    .client-work-item img {
        max-height: 60vh;
        border-radius: 4px;
    }

    .testimonial-section {
        background-color: #ffffff;
    }
    .testimonial-section::before {
        background: linear-gradient(135deg, rgba(0, 57, 112, 0.05) 0%, rgba(89, 190, 255, 0.05) 100%);
    }
    .card-inner {
        box-shadow: 0 4px 15px rgba(0, 57, 112, 0.05);
        border-color: rgba(0, 57, 112, 0.08);
    }
    .testimonial-nav-btn {
        box-shadow: 0 3px 10px rgba(0, 57, 112, 0.06);
    }

    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    p, li, a {
        font-size: 0.95rem;
    }

    .hero-slogan {
        font-size: 20px;
    }

    .hero-slideshow .slide[class*="dynamic-slide-"] {
        background-attachment: scroll;
    }

    .return-to-home-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .return-to-home-btn i {
        font-size: 18px;
    }

    .legal-page {
        padding-top: 70px;
    }
    .legal-hero {
        padding: 60px 0 40px;
    }
    .legal-content {
        padding: 40px 15px 60px;
    }
    .legal-document {
        padding: 30px 25px;
        border-radius: 12px;
    }
    .legal-section h2 {
        font-size: 1.2rem;
    }
    .legal-contact {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .services-section,
    .gallery-section,
    .clients-section,
    .global-presence-section,
    .contact-section,
    .faq-section,
    .testimonial-section {
        padding: 60px 0;
    }

    .logo-container {
        max-width: 160px;
    }

    .hero-section {
        padding: 80px 0 40px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
        align-items: center;
    }

    .creative-process {
        padding: 60px 0;
        min-height: 50vh;
    }
    .creative-process-grid {
        min-height: 50vh;
    }
    .content-wrapper {
        padding: 30px 20px;
    }
    .content-wrapper h2 {
        font-size: 1.6rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .creative-process .container::after {
        width: 150px;
        height: 150px;
        right: -30px;
        top: -30px;
    }

    .faq-image {
        margin-bottom: 0;
    }
    .faq-image img {
        max-width: 100%;
    }
    .faq-content h2 {
        font-size: 1.5rem;
    }
    .faq-dropdown {
        margin-top: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-cta-container {
        margin-top: 30px;
    }
    .stats-cta-btn.btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 14px;
    }

    .gallery-section .container {
        padding: 0 10px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(140px, auto);
        gap: 6px;
    }
    .gallery-item.gallery-uniform,
    .gallery-item.gallery-large,
    .gallery-item.gallery-medium,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item {
        border-radius: 6px;
    }
    .gallery-item img {
        height: 100%;
    }
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        min-width: 70px;
        margin: 0 4px 8px;
        white-space: nowrap;
        transition: all 0.25s ease;
    }
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-bottom: 25px;
        padding: 0 5px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .lg-actions .lg-prev,
    .lg-actions .lg-next {
        padding: 8px;
        font-size: 18px;
    }
    .lg-toolbar .lg-icon {
        padding: 8px;
        font-size: 20px;
    }
    .lg-outer .lg-thumb-item {
        width: 60px;
        height: 50px;
    }
    .creative-process .container::after {
        width: 150px;
        height: 150px;
        right: -30px;
        top: -30px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-section .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .contact-form-container,
    .contact-info,
    .visit-address {
        padding: 25px 20px;
    }
    .tab-btn {
        font-size: 14px;
        padding: 8px 15px;
        margin: 0 10px;
    }
    .contact-map {
        height: 280px;
    }
    .contact-icon {
        min-width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 15px;
    }
    .contact-details h4 {
        font-size: 18px;
    }
    .map-actions .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .client-logo {
        height: 80px;
        flex: 0 0 150px;
    }
    .clients-section {
        padding: 70px 0;
    }

    .gallery-section .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.9rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    p, li, a {
        font-size: 0.9rem;
    }
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-form {
        padding: 1rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-method {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .submit-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .faq-item h4 {
        font-size: 1rem;
        padding: 12px 0;
    }
    .dropdown-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
    }
    .dropdown-icon i {
        font-size: 12px;
    }
    .faq-answer.show {
        padding: 0 0 12px 0;
    }

    .world-map {
        height: 300px;
    }

    .hero-slogan {
        font-size: 18px;
    }

    .world-map-container {
        height: 300px;
        margin: 30px auto;
    }
    .world-map-legend {
        bottom: 10px;
        right: 10px;
        padding: 5px 10px;
        width: 140px;
    }
    .legend-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .legend-item {
        font-size: 10px;
        margin-bottom: 3px;
    }
    .legend-color {
        width: 10px;
        height: 10px;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .card-inner {
        padding: 25px 15px;
    }
    .testimonial-navigation {
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item img {
        height: 280px !important;
    }
    .gallery-text {
        padding: 16px;
        min-height: 75px;
    }
    .gallery-text h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .gallery-text p {
        font-size: 12px;
        line-height: 1.4;
    }

    .client-work-modal-content {
        width: 98vw;
        max-height: 98vh;
    }
    .client-work-modal-body {
        padding: 0;
        max-height: 98vh;
    }
    .client-work-item {
        max-height: 70vh;
    }
    .client-work-item img {
        max-height: 70vh;
    }

    .card-inner {
        box-shadow: 0 2px 12px rgba(0, 57, 112, 0.04);
    }

    .creative-process {
        padding: 50px 0;
        min-height: 40vh;
    }
    .creative-process-grid {
        min-height: 40vh;
    }
    .content-wrapper h2 {
        font-size: 1.6rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .creative-process .container::after {
        width: 120px;
        height: 120px;
        right: 0;
        top: -20px;
    }

    .contact-info p:nth-child(1) {
        padding-top:10%
    }
    .footer-links-column h4,
    .footer-contact-column h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    .footer-links-column a {
        padding: 0.3rem 0;
    }
    .contact-info p {
        font-size: 0.9rem;
    }
    .contact-form input,
    .contact-form textarea,
    .submit-btn {
        min-height: 48px;
        border-radius: 8px;
    }
    .contact-form textarea {
        min-height: 120px;
    }
    .section-header {
        margin-bottom: 1.5rem;
    }
    .contact-section,
    .main-footer {
        padding: 2.5rem 0;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .blog-page-header .page-title {
        font-size: 1.75rem;
    }
    .blog-single .entry-title {
        font-size: 1.75rem;
    }
    .blog-card-title {
        font-size: 1.1rem;
    }

    .legal-document {
        padding: 25px 20px;
    }
    .legal-intro {
        font-size: 1rem;
    }
    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 425px) {
    p,
    .subtitle,
    .service-card p,
    .content-wrapper p,
    .faq-answer p,
    .testimonial-text,
    .contact-details p,
    .main-nav a,
    .btn,
    .form-group input,
    .form-group textarea,
    .footer-links-column a,
    .footer-logo-column p,
    .footer-bottom p,
    .gallery-text p,
    .filter-btn,
    .load-more-btn,
    .submit-btn,
    .btn-primary {
        font-size: 0.9rem;
    }
    .btn{
        padding: 10px 14px !important;
    }
}

@media (max-width: 380px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 1fr);
        gap: 6px;
        min-height: 400px;
        max-height: 800px;
        aspect-ratio: 1/12;
    }
    .gallery-item.gallery-uniform,
    .gallery-item.gallery-large,
    .gallery-item.gallery-medium,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item img {
        height: 100%;
    }
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 60px;
        flex: 0 0 calc(50% - 12px);
        box-sizing: border-box;
        margin: 0 0 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .filter-buttons {
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    .lg-outer .lg-thumb-outer {
        height: 60px;
    }
    .lg-outer .lg-thumb-item {
        width: 50px;
        height: 40px;
    }
    .lg-sub-html {
        font-size: 12px;
        padding: 8px;
    }
    .creative-process .container::after {
        width: 120px;
        height: 120px;
        right: 0;
        top: -20px;
    }
}

@media (max-width: 375px) {
    .creative-process .container::after {
        width: 100px;
        height: 100px;
        right: 0;
        top: -15px;
        opacity: 0.7;
    }
    .creative-process-content {
        padding: 30px 20px;
    }
    .content-wrapper {
        padding: 40px 30px;
    }
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        gap: 16px;
    }
    .gallery-item img {
        height: 250px !important;
    }
    .gallery-text {
        padding: 14px;
    }
    .gallery-text h4 {
        font-size: 13px;
    }
    .gallery-text p {
        font-size: 11px;
    }

    .contact-method {
        padding: 0.75rem;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .footer-links-column,
    .footer-contact-column {
        margin-bottom: 1.5rem;
    }
}
