: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;
}
html:not(.light-theme) {
    --primary-color: #003a70;
    --primary-rgb: 255, 193, 7; 
    --secondary-color: #191b2a;
    --tertiary-color: #30334e;
    --text-color: #ffffff;
    --text-color-dark: #333333;
    --text-color-muted: #a0a0c0;
    --bg-color: #0e0e1a;
    --bg-color-light: #1e1e2f;
    --card-bg: rgba(30, 30, 47, 0.6);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --accent-color: #fdec08;
    --accent-secondary: #59beff;
    --border-color: #444444;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --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: #1e1e2f;
    --input-border: rgba(255, 255, 255, 0.15);
    --input-text: #ffffff;
    --service-icon-bg: rgba(255, 193, 7, 0.15);
    --service-icon-border: rgba(255, 193, 7, 0.3);
    --testimonial-bg: rgba(30, 30, 47, 0.6);
    --client-logo-bg: rgba(255, 255, 255, 0.05);
    --filter-btn-bg: rgba(255, 255, 255, 0.1);
    --filter-btn-border: rgba(255, 255, 255, 0.2);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(89, 190, 255, 0.1) 100%);
}
body.light-theme .hero-section {
    background-color: #ffffff !important;
}
body.light-theme .services-section {
    background-color: #f8f9fa !important;
}
body.light-theme .creative-process {
    background-color: #ffffff !important;
}
body.light-theme .stats-section {
    background-color: #f8f9fa !important;
}
body.light-theme .gallery-section {
    background-color: #ffffff !important;
}
body.light-theme .clients-section {
    background-color: #f8f9fa !important;
}
body.light-theme .testimonial-section {
    background-color: #f8f9fa !important;
}
body.light-theme .faq-section {
    background-color: #ffffff !important;
}
body.light-theme .contact-section {
    background-color: #f8f9fa !important;
    background-image: none !important;
}
body.light-theme .contact-section {
    background: #f8f9fa !important;
}
body.light-theme .main-footer {
    background-color: #0e0e19 !important;
    color: #e1e1e1 !important;
}
body.light-theme .footer-links-column a,
body.light-theme .footer-contact-column p,
body.light-theme .footer-logo-column p,
body.light-theme .footer-bottom p,
body.light-theme .footer-bottom-links a {
    color: #e1e1e1 !important;
}
body.light-theme .footer-links-column h4,
body.light-theme .footer-contact-column h4 {
    color: #ffffff !important;
}
body.light-theme .social-icons a {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #e1e1e1 !important;
}
body.light-theme .social-icons a:hover {
    background-color: #59beff !important;
    color: white !important;
}
body.light-theme .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
* {
    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;
}
.btn-primary {
    background-color: #003a70;
    color: var(--text-color);
}
.btn-primary:hover {
    background-color: #fdec08;
    color: #003a70;
}
.btn-secondary {
    background-color: #fdec08;
    color: #003a70;
}
.btn-secondary:hover {
    background-color: #59beff;
    color: var(--text-color);
}
.btn-alt {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-alt:hover {
    background-color: #fdec08;
    color: #003a70;
    border-color: #fdec08;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}
.btn-outline:hover {
    background-color: #fdec08;
    color: #003a70;
}
.hero-cta-btn.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-cta-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body.light-theme .hero-cta-btn.btn-primary {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
}
body.light-theme .hero-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);
}
.load-more-btn.btn-primary,
.contact-us-now-btn.btn-primary,
.send-message-btn.btn-primary,
.get-directions-btn.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}
.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 {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body.light-theme .load-more-btn.btn-primary,
body.light-theme .contact-us-now-btn.btn-primary,
body.light-theme .send-message-btn.btn-primary,
body.light-theme .get-directions-btn.btn-primary {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
}
body.light-theme .load-more-btn.btn-primary:hover,
body.light-theme .contact-us-now-btn.btn-primary:hover,
body.light-theme .send-message-btn.btn-primary:hover,
body.light-theme .get-directions-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,
.testimonial-section {
    padding: 50px 0;
}
@media (max-width: 768px) {
    .services-section,
    .gallery-section,
    .clients-section,
    .global-presence-section,
    .contact-section,
    .faq-section,
    .testimonial-section {
        padding: 80px 0;
    }
}
@media (max-width: 576px) {
    .services-section,
    .gallery-section,
    .clients-section,
    .global-presence-section,
    .contact-section,
    .faq-section,
    .testimonial-section {
        padding: 60px 0;
    }
}
.services-section .section-header,
.gallery-section .section-header,
.clients-section .section-header,
.global-presence-section .section-header,
.contact-section .section-header,
.faq-section .section-header,
.testimonial-section .section-header {
    margin-bottom: 60px;
    position: relative;
}
.services-section .section-header::after,
.gallery-section .section-header::after,
.clients-section .section-header::after,
.global-presence-section .section-header::after,
.contact-section .section-header::after,
.faq-section .section-header::after,
.testimonial-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
.services-section .section-header h3,
.gallery-section .section-header h3,
.clients-section .section-header h3,
.global-presence-section .section-header h3,
.contact-section .section-header h3,
.faq-section .section-header h3,
.testimonial-section .section-header h3 {
    color: #fdec08;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.services-section .section-header h2,
.gallery-section .section-header h2,
.clients-section .section-header h2,
.global-presence-section .section-header h2,
.contact-section .section-header h2,
.faq-section .section-header h2,
.testimonial-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #fdec08 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.services-section .section-header .section-subtitle,
.gallery-section .section-header .section-subtitle,
.clients-section .section-header .section-subtitle,
.global-presence-section .section-header .section-subtitle,
.contact-section .section-header .section-subtitle,
.faq-section .section-header .section-subtitle,
.testimonial-section .section-header .section-subtitle {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
body.light-theme .services-section .section-header h3,
body.light-theme .gallery-section .section-header h3,
body.light-theme .clients-section .section-header h3,
body.light-theme .global-presence-section .section-header h3,
body.light-theme .contact-section .section-header h3,
body.light-theme .faq-section .section-header h3,
body.light-theme .testimonial-section .section-header h3 {
    color: #59beff;
    font-weight: 600;
}
body.light-theme .services-section .section-header h2,
body.light-theme .gallery-section .section-header h2,
body.light-theme .clients-section .section-header h2,
body.light-theme .global-presence-section .section-header h2,
body.light-theme .contact-section .section-header h2,
body.light-theme .faq-section .section-header h2,
body.light-theme .testimonial-section .section-header h2 {
    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;
}
@media (max-width: 991px) {
    .services-section .section-header h2,
    .gallery-section .section-header h2,
    .clients-section .section-header h2,
    .global-presence-section .section-header h2,
    .contact-section .section-header h2,
    .faq-section .section-header h2,
    .testimonial-section .section-header h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .services-section .section-header h2,
    .gallery-section .section-header h2,
    .clients-section .section-header h2,
    .global-presence-section .section-header h2,
    .contact-section .section-header h2,
    .faq-section .section-header h2,
    .testimonial-section .section-header h2 {
        font-size: 1.8rem;
    }
}
.decoration-element {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(50px);
}
.el-1 {
    width: 350px;
    height: 350px;
    background: rgba(110, 72, 228, 0.3);
    top: -100px;
    left: -150px;
}
.el-2 {
    width: 300px;
    height: 300px;
    background: rgba(240, 86, 252, 0.2);
    bottom: -50px;
    right: -100px;
}
.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: #59beff;
    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;
}
body.light-theme .logo-container .dark-logo {
    opacity: 1;
    filter: none;
}
body.light-theme .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;
}
.theme-toggle {
    margin-right: 15px;
    display: flex;
    align-items: center;
}
#theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    padding: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}
#theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
#theme-toggle-btn i {
    position: absolute;
    font-size: 1.2rem;
    transition: var(--transition);
}
#theme-toggle-btn .fa-sun {
    opacity: 0;
    transform: scale(0);
    color: var(--text-color);
}
#theme-toggle-btn .fa-moon {
    opacity: 1;
    transform: scale(1);
    color: var(--text-color);
}
body.light-theme #theme-toggle-btn {
    background-color: rgba(0, 57, 112, 0.05);
}
body.light-theme #theme-toggle-btn:hover {
    background-color: rgba(0, 57, 112, 0.1);
}
body.light-theme #theme-toggle-btn .fa-sun {
    opacity: 1;
    transform: scale(1);
    color: #003a70;
}
body.light-theme #theme-toggle-btn .fa-moon {
    opacity: 0;
    transform: scale(0);
    color: #003a70;
}
.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;
}
@media (max-width: 991px) {
    .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;
    }
    .theme-toggle {
        margin-left: auto;
        margin-right: 20px;
    }
    #theme-toggle-btn {
        background: rgba(255, 255, 255, 0.1);
    }
    body.light-theme #theme-toggle-btn {
        background: rgba(240, 86, 252, 0.1);
    }
    .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;
    }
}
@media (max-width: 576px) {
    .logo-container {
        max-width: 160px;
    }
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    z-index: 1;
}
.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;
}
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 576px) {
    .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;
    }
}
.services-section {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    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(14, 14, 26, 0.85);
    z-index: 1;
}
body.light-theme .services-bg::after {
    background: rgba(255, 255, 255, 0.85);
}
.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;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.5s ease;
}
.section-header h2::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);
}
.services-section:hover .section-header h2::after {
    width: 0; 
}
.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 {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    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;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, 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: opacity, transform, box-shadow;
}
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}
.service-card:nth-child(2) {
    animation-delay: 0.3s;
}
.service-card:nth-child(3) {
    animation-delay: 0.5s;
}
.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: #59beff;
    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);
}
@media (max-width: 991px) {
    .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(14, 14, 26, 0.88);
    }
    body.light-theme .services-bg::after {
        background: rgba(255, 255, 255, 0.9);
    }
}
@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(14, 14, 26, 0.92);
    }
    body.light-theme .services-bg::after {
        background: rgba(255, 255, 255, 0.92);
    }
}
.creative-process {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    border-image: var(--gradient-primary);
    border-image-slice: 1;
}
.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-images {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.process-img-1, .process-img-2 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.process-img-1::before, .process-img-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}
.process-img-1:hover, .process-img-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.process-img-1 {
    width: 90%;
    height: 300px;
    object-fit: cover;
    transform: rotate(-3deg);
    z-index: 2;
}
.process-img-2 {
    width: 90%;
    height: 300px;
    object-fit: cover;
    transform: rotate(3deg) translateX(30px);
    margin-top: -100px;
    align-self: flex-end;
    z-index: 1;
}
.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);
}
@media (max-width: 991px) {
    .creative-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .creative-process-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
    }
    .process-img-1, .process-img-2 {
        width: 100%;
        height: 250px;
        transform: none;
        margin-top: 0;
    }
    .process-img-2 {
        align-self: auto;
    }
    .creative-process-content {
        padding: 30px;
    }
    .content-wrapper {
        padding: 60px 40px;
        max-width: 100%;
    }
    .content-wrapper h2 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .creative-process {
        padding: 80px 0;
        min-height: 60vh;
    }
    .creative-process-grid {
        min-height: 60vh;
    }
    .creative-process-content {
        min-height: auto;
    }
    .creative-process-images {
        grid-template-columns: 1fr;
    }
    .process-img-1, .process-img-2 {
        height: 220px;
    }
    .process-img-2 {
        margin-top: 0;
    }
    .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;
    }
}
@media (max-width: 576px) {
    .creative-process {
        padding: 60px 0;
        min-height: 50vh;
    }
    .creative-process-grid {
        min-height: 50vh;
    }
    .creative-process-images {
        grid-template-columns: 1fr;
    }
    .process-img-1, .process-img-2 {
        height: 180px;
    }
    .process-img-2 {
        margin-top: 0;
    }
    .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;
    }
}
.testimonial-section {
    background-color: var(--bg-color);
    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-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.testimonial-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fdec08 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.testimonial-subtitle {
    color: var(--text-color-light);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}
.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);
    will-change: transform;
}
.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;
}
@media (max-width: 1024px) {
    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .testimonial-header h2 {
        font-size: 2.2rem;
    }
    .card-inner {
        padding: 35px 25px;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-header {
        margin-bottom: 40px;
    }
    .testimonial-header h2 {
        font-size: 1.8rem;
    }
    .testimonial-subtitle {
        font-size: 1rem;
    }
    .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;
    }
}
@media (max-width: 480px) {
    .testimonial-header h2 {
        font-size: 1.6rem;
    }
    .card-inner {
        padding: 25px 15px;
    }
    .testimonial-navigation {
        gap: 15px;
    }
}
.faq-section {
    position: relative;
}
.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-dropdown {
    margin-top: 20px;
}
.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);
}
body.light-theme .faq-item.active .dropdown-icon {
    background: var(--accent-secondary);
}
.faq-item.active .dropdown-icon i {
    color: #003a70;
    transform: rotate(180deg);
}
.faq-item.active h4 {
    color: #fdec08;
}
.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;
}
@media (max-width: 991px) {
    .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;
    }
}
@media (max-width: 768px) {
    .faq-image img {
        max-width: 90%;
    }
}
@media (max-width: 576px) {
    .faq-image {
        margin-bottom: 0;
    }
    .faq-image img {
        max-width: 100%;
    }
    .faq-content h2 {
        font-size: 1.5rem;
    }
    .faq-dropdown {
        margin-top: 15px;
    }
}
.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);
}
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.stats-cta-container {
    text-align: center;
    margin-top: 40px;
}
.stats-cta-btn.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.stats-cta-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body.light-theme .stats-cta-btn.btn-primary {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
}
body.light-theme .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);
}
@media (max-width: 576px) {
    .stats-cta-container {
        margin-top: 30px;
    }
    .stats-cta-btn.btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 14px;
    }
}
.blog-section {
    padding: 50px 0;
    position: relative;
}
.blog-section .section-header h5 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 15px;
}
.blog-section .section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 86, 252, 0.3);
}
.blog-image {
    height: 200px;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 25px;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.blog-category {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.8rem;
}
.blog-date {
    color: var(--text-color-muted);
    font-size: 0.8rem;
}
.blog-content h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.read-more:hover {
    color: var(--accent-color);
}
.read-more i {
    transition: var(--transition);
}
.read-more:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.main-footer {
    background-color: var(--bg-color);
    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(--text-color-muted);
    margin-bottom: 25px;
}
.newsletter-form {
    display: flex;
    margin-bottom: 25px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--button-radius) 0 0 var(--button-radius);
    color: var(--text-color);
}
.newsletter-form button {
    border-radius: 0 var(--button-radius) var(--button-radius) 0;
    padding: 0 15px;
}
.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.05);
    color: var(--text-color);
    margin-right: 10px;
    transition: var(--transition);
}
.social-icons a:hover {
    background-color: #fdec08;
    color: #003a70;
}
.footer-links-column h4,
.footer-contact-column h4 {
    font-size: 1.2rem;
    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(--text-color-muted);
    transition: var(--transition);
}
.footer-links-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.footer-contact-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.contact-info p {
    display: flex;
    gap: 15px;
    color: var(--text-color-muted);
    margin-bottom: 15px;
}
.contact-info i {
    color: #fdec08;
}
.payment-methods {
    margin-top: 25px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
    color: var(--text-color-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: var(--text-color-muted);
}
.footer-bottom-links a:hover {
    color: var(--accent-color);
}
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}
.gallery-section {
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
}
.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;
}
.gallery-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fdec08 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.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;
}
.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: all 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;
}
.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;
}
.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%;
}
@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;
}
body.light-theme .gallery-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
body.light-theme .gallery-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
body.light-theme .gallery-text {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
body.light-theme .gallery-text h4 {
    color: #2c3e50;
}
body.light-theme .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;
}
.gallery-item {
    opacity: 1;
}
@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); }
}
.skeleton-container {
    display: contents;
    opacity: 0.3;
    transition: opacity 0.15s ease;
}
.skeleton-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    pointer-events: none;
    opacity: 0.4;
}
.skeleton-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s ease-in-out infinite;
}
@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}
.gallery-item.loading {
    opacity: 0.5;
    pointer-events: none;
}
.gallery-grid {
    transition: grid-template-columns 0.2s ease, grid-auto-rows 0.2s ease;
}
.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); }
}
body.light-theme .skeleton-item {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
body.light-theme .skeleton-content {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.03) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
}
.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 (max-width: 991px) {
    .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;
    }
}
@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;
    }
}
@media (max-width: 768px) {
    .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;
    }
}
@media (max-width: 480px) {
    .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;
    }
}
@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;
    }
}
    .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;
    }
}
@media (max-width: 576px) {
    .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;
    }
}
@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;
    }
}
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}
.lg-outer {
    width: 100%;
    height: 100%;
}
.lg-outer .lg-img-wrap {
    padding: 0 30px;
    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 {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transform: translateZ(0);
}
.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: linear-gradient(135deg, rgba(110, 72, 228, 0.1) 0%, rgba(240, 86, 252, 0.1) 100%);
    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 {
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 42px;
}
.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;
}
body.light-theme .contact-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #1976D2;
    border: 2px solid rgba(25, 118, 210, 0.3);
    box-shadow: 0 0 15px rgba(25, 118, 210, 0.4);
    animation: pulse-light 2s infinite;
}
.contact-icon .fa-map-marker-alt,
.contact-icon .fa-clock {
    color: #FFC107;
    font-size: 22px;
}
body.light-theme .contact-icon .fa-map-marker-alt,
body.light-theme .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;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #FFC107;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: #FFC107;
    color: #fff;
    transform: translateY(-3px);
}
.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;
}
.address-details {
    margin-top: 30px;
}
.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.detail-item i {
    color: #FFC107;
    font-size: 18px;
    margin-right: 20px;
    margin-top: 4px;
    animation: pulse 2s infinite;
}
.detail-item p {
    color: var(--text-color-muted);
    line-height: 1.7;
    font-size: 15px;
}
.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;
}
body.light-theme .contact-map::before {
    background: var(--primary-color);
    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;
}
.contact-form textarea {
    height: 170px;
    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);
}
body.light-theme .tab-navigation {
    border-bottom-color: rgba(0, 58, 112, 0.1);
}
body.light-theme .tab-btn {
    color: var(--text-color-muted);
}
body.light-theme .tab-btn.active, 
body.light-theme .tab-btn:hover {
    color: #1976D2;
}
body.light-theme .tab-btn.active:after {
    background: #1976D2;
}
body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 58, 112, 0.1);
}
body.light-theme .contact-icon {
    background-color: rgba(0, 58, 112, 0.1);
}
body.light-theme .contact-map {
    border: 1px solid rgba(0, 58, 112, 0.1);
}
body.light-theme .contact-map::before {
    background: var(--primary-color);
    opacity: 0.02;
}
.recaptcha-info {
    margin-top: 20px;
    text-align: center;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.recaptcha-info p {
    margin: 0;
    opacity: 0.6;
    line-height: 1.4;
}
.recaptcha-info small {
    font-size: 12px;
    color: var(--text-color-muted);
    display: block;
    margin-top: 2px;
}
body.light-theme .recaptcha-info {
    background-color: rgba(0, 58, 112, 0.03);
    border: 1px solid rgba(0, 58, 112, 0.08);
}
body.light-theme .recaptcha-info small {
    color: #666;
}
.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);
}
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .notification-content {
        padding: 12px 15px;
    }
    .notification-message {
        font-size: 13px;
    }
}
@media (max-width: 991px) {
    .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 {
        margin-bottom: 40px;
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .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: 32px;
        margin-bottom: 35px;
    }
}
@media (max-width: 576px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-section .section-header h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .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;
    }
}
@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%;
    }
}
body.light-theme .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}
.contact-icon {
    animation: pulse 2s infinite;
}
.gallery-item {
    position: relative;
    overflow: hidden;
}
.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-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}
.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-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}
.lg-outer .lg-img-wrap {
    padding: 20px 0;
}
.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;
}
@media (max-width: 768px) {
    .filter-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}
.clients-section {
    position: relative;
    overflow: hidden;
}
.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::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
.clients-section .section-header h3 {
    color: #fdec08;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.clients-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #fdec08 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.clients-section .section-header .section-subtitle {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.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;
}
.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);
}
@media (max-width: 768px) {
    .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;
    }
}
@media (max-width: 480px) {
    .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;
    }
}
.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;
}
@media (max-width: 991px) {
    .clients-section .section-header h2 {
        font-size: 2rem;
    }
    .client-logo {
        height: 90px;
        padding: 12px;
    }
}
@media (max-width: 768px) {    
    .clients-section .section-header h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 576px) {
    .client-logo {
        height: 80px;
        flex: 0 0 150px;
    }
    .clients-section {
        padding: 70px 0;
    }
}
.creative-process-images {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#gallery {
    position: relative;
}
#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 3;
}
body.light-theme .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);
}
body.light-theme .content-wrapper h2 {
    background: linear-gradient(to right, #1e293b 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.light-theme .content-wrapper p {
    color: rgba(30, 41, 59, 0.9);
}
body.light-theme .subtitle {
    color: #0ea5e9;
    font-weight: 600;
}
body.light-theme .clients-cta {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
body.light-theme .clients-cta p {
    color: rgba(0, 0, 0, 0.8);
}
body.light-theme .main-header {
    background-color: #59beff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
body.light-theme .service-card {
    background-color: var(--card-bg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--input-border);
}
body.light-theme .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 57, 112, 0.15);
    border-color: rgba(89, 190, 255, 0.3);
}
body.light-theme .service-card p {
    color: #555;
}
body.light-theme .learn-more {
    color: #003a70;
    font-weight: 600;
}
body.light-theme .learn-more:hover {
    color: #59beff;
}
body.light-theme .gallery-item {
    border: 1px solid rgba(86, 54, 201, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background-color: white;
    overflow: hidden;
}
body.light-theme .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);
}
body.light-theme .filter-buttons::before {
    background: linear-gradient(to right, 
        transparent, 
        rgba(86, 54, 201, 0.2), 
        transparent
    );
}
body.light-theme .creative-process {
    background-color: #f8fafc;
    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);
}
body.light-theme .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%
    );
}
body.light-theme .clients-section::before {
    background: linear-gradient(135deg, rgba(86, 54, 201, 0.05) 0%, rgba(240, 86, 252, 0.05) 100%);
}
body.light-theme .clients-section .section-header h2 {
    color: #333;
    background: linear-gradient(135deg, #333 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
body.light-theme .gallery-section .section-header h2 {
    color: #333;
    background: linear-gradient(135deg, #333 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
body.light-theme .gallery-section .section-header h3 {
    color: #fdec08;
}
body {
    transition: background-color 0.5s ease, color 0.5s ease;
}
h1, h2, h3, h4, h5, h6, p, a, span, li, .testimonial-text {
    transition: color 0.5s ease;
}
body.light-theme .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);
}
body.light-theme .contact-icon {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
}
body.light-theme .filter-btn {
    color: #333;
    background: rgba(110, 72, 228, 0.08);
    border: 1px solid rgba(110, 72, 228, 0.2);
}
body.light-theme .filter-btn:hover,
body.light-theme .filter-btn.active,
body.light-theme .filter-btn.touch-active {
    color: #fff;
    background: linear-gradient(45deg, rgba(240, 86, 252, 0.9), rgba(110, 72, 228, 0.9));
}
body.light-theme .social-link {
    background: linear-gradient(45deg, rgba(240, 86, 252, 0.9), rgba(110, 72, 228, 0.9));
    box-shadow: 0 4px 15px rgba(240, 86, 252, 0.3);
}
body.light-theme .btn-primary {
    background: linear-gradient(45deg, #f056fc, #6e48e4);
    color: white;
    box-shadow: 0 4px 15px rgba(110, 72, 228, 0.3);
}
body.light-theme .btn-alt {
    background: linear-gradient(45deg, #f056fc, #6e48e4);
    color: white;
    box-shadow: 0 4px 15px rgba(110, 72, 228, 0.3);
}
body.light-theme .btn-outline {
    border: 2px solid #003a70;
    color: #003a70;
}
body.light-theme .btn-outline:hover {
    background: #003a70;
    color: white;
}
body.light-theme .testimonial-section {
    background-color: #f8f9fa;
}
body.light-theme .testimonial-section::before {
    background: linear-gradient(135deg, rgba(0, 57, 112, 0.08) 0%, rgba(89, 190, 255, 0.08) 100%);
}
body.light-theme .testimonial-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.light-theme .testimonial-subtitle {
    color: #666;
}
body.light-theme .card-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 57, 112, 0.1);
    box-shadow: 0 8px 25px rgba(0, 57, 112, 0.08);
}
body.light-theme .card-inner:hover {
    box-shadow: 0 15px 35px rgba(0, 57, 112, 0.12);
    border-color: rgba(0, 57, 112, 0.15);
}
body.light-theme .quote-icon {
    color: #59beff;
}
body.light-theme .testimonial-text {
    color: #555;
    font-style: italic;
}
body.light-theme .author-name {
    color: #003a70;
}
body.light-theme .author-details {
    color: #777;
    opacity: 0.9;
}
body.light-theme .author-avatar {
    background: var(--gradient-primary);
}
body.light-theme .testimonial-nav-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 57, 112, 0.15);
    color: #59beff;
    box-shadow: 0 4px 12px rgba(0, 57, 112, 0.08);
}
body.light-theme .testimonial-nav-btn:hover {
    background: #59beff;
    color: white;
    border-color: #59beff;
    box-shadow: 0 6px 16px rgba(89, 190, 255, 0.25);
}
body.light-theme .testimonial-nav-btn:disabled {
    background: #f8f9fa;
    color: #ccc;
    border-color: #eee;
    box-shadow: none;
}
body.light-theme .pagination-dot {
    background: rgba(0, 57, 112, 0.2);
}
body.light-theme .pagination-dot.active {
    background: #59beff;
}
body.light-theme .pagination-dot:hover {
    background: #59beff;
}
@media (max-width: 1024px) {
    body.light-theme .card-inner {
        box-shadow: 0 6px 20px rgba(0, 57, 112, 0.06);
    }
    body.light-theme .card-inner:hover {
        box-shadow: 0 12px 28px rgba(0, 57, 112, 0.1);
    }
}
@media (max-width: 768px) {
    body.light-theme .testimonial-section {
        background-color: #ffffff;
    }
    body.light-theme .testimonial-section::before {
        background: linear-gradient(135deg, rgba(0, 57, 112, 0.05) 0%, rgba(89, 190, 255, 0.05) 100%);
    }
    body.light-theme .card-inner {
        box-shadow: 0 4px 15px rgba(0, 57, 112, 0.05);
        border-color: rgba(0, 57, 112, 0.08);
    }
    body.light-theme .testimonial-nav-btn {
        box-shadow: 0 3px 10px rgba(0, 57, 112, 0.06);
    }
}
@media (max-width: 480px) {
    body.light-theme .testimonial-header h2 {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 1.6rem;
    }
    body.light-theme .card-inner {
        box-shadow: 0 2px 12px rgba(0, 57, 112, 0.04);
    }
}
body.light-theme .faq-item h4 {
    color: #333;
}
body.light-theme .faq-item.active h4 {
    color: #003a70;
}
body.light-theme .faq-item:hover h4 {
    color: var(--primary-color);
}
body.light-theme .faq-answer p {
    color: var(--text-color-muted-light);
}
body.light-theme .dropdown-icon {
    background-color: rgba(110, 72, 228, 0.1);
    color: var(--primary-color);
}
body.light-theme .faq-item.active .dropdown-icon i {
    color: #003a70;
    transform: rotate(180deg);
}
body.light-theme .main-footer {
    background: #2a2c39;
}
body.light-theme .footer-links-column a {
    color: #e1e1e1;
}
body.light-theme .main-nav a {
    color: #333;
    font-weight: 500;
}
body.light-theme .main-nav a.active {
    color: #003a70;
    font-weight: 600;
}
body.light-theme .main-nav a::after {
    background: var(--accent-color);
    height: 2px;
}
body.light-theme .mobile-menu-toggle span {
    background-color: #ffffff;
}
@media (max-width: 991px) {
    body.light-theme .main-header {
        background-color: #59beff !important;
    }
    body.light-theme .main-header .logo-container {
        display: flex;
        align-items: center;
    }
    body.light-theme .main-header .logo {
        max-height: 50px;
        width: auto;
        display: block;
    }
    body.light-theme .main-nav.show {
        background-color: #ffffff;
    }
    body.light-theme .main-nav.show a {
        color: #003a70;
    }
    body.light-theme .main-nav.show a:hover,
    body.light-theme .main-nav.show a.active {
        background-color: rgba(0, 57, 112, 0.1);
        color: #003a70;
    }
}
body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
}
body.light-theme .contact-form input:focus,
body.light-theme .contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(86, 54, 201, 0.1);
}
body.light-theme .contact-form-container {
    background-color: var(--testimonial-bg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--input-border);
}
body.light-theme .btn-primary,
body.light-theme .btn-secondary,
body.light-theme .submit-btn,
body.light-theme .clients-cta .btn {
    background: var(--button-bg);
    color: var(--button-text);
    box-shadow: var(--button-shadow);
}
body.light-theme .btn-primary:hover,
body.light-theme .btn-secondary:hover,
body.light-theme .submit-btn:hover,
body.light-theme .clients-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(86, 54, 201, 0.3);
}
body.light-theme .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;
}
body.light-theme .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);
}
body.light-theme .filter-btn:hover {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}
body.light-theme .main-footer {
    background-color: var(--footer-bg);
}
body.light-theme .footer-links-column a,
body.light-theme .footer-contact-column p,
body.light-theme .footer-logo-column p,
body.light-theme .footer-bottom p,
body.light-theme .footer-bottom-links a {
    color: var(--footer-text);
}
body.light-theme .footer-links-column h4,
body.light-theme .footer-contact-column h4 {
    color: #ffffff;
}
body.light-theme .contact-info i {
    color: #fdec08;
}
body.light-theme .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
}
body.light-theme .social-icons a:hover {
    background-color: #59beff;
    color: white;
}
body.light-theme .gallery-section {
    background-color: var(--bg-color);
    padding-top: 100px;
}
body.light-theme .gallery-section .section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
body.light-theme .gallery-section .section-header h3 {
    color: #59beff;
    font-weight: 600;
}
body.light-theme .gallery-section::before {
    background: linear-gradient(to bottom, 
        rgba(240, 240, 250, 0.8) 0%, 
        rgba(255, 255, 255, 0) 100%
    );
}
body.light-theme .clients-section::before {
    background: var(--gradient-overlay);
}
body.light-theme .testimonial-section::before {
    background: var(--gradient-overlay);
}
body.light-theme .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
body.light-theme .section-header h2 {
    color: var(--text-color);
}
body.light-theme .clients-section .section-header h3,
body.light-theme .contact-section .section-header h3 {
    color: #59beff;
    font-weight: 600;
}
body.light-theme .social-link {
    background: white;
    color: #003a70;
    border: 1px solid rgba(0, 57, 112, 0.15);
    box-shadow: 0 4px 10px rgba(0, 57, 112, 0.1);
}
body.light-theme .social-link:hover {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 57, 112, 0.2);
    border-color: transparent;
}
body.light-theme .contact-method {
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
}
body.light-theme .contact-details h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}
body.light-theme .contact-details p {
    color: var(--text-color-muted);
    line-height: 1.6;
}
body.light-theme .social-links {
    margin-top: 40px;
}
body.light-theme .newsletter-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--footer-text);
}
body.light-theme .newsletter-form button {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
}
body.light-theme .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);
}
body.light-theme .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);
}
body.light-theme .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);
}
body.light-theme .client-logo:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
}
body.light-theme .clients-section::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 250, 0.8) 100%);
}
body.light-theme .clients-cta {
    background-color: white;
    border: 1px solid rgba(0, 57, 112, 0.1);
}
body.light-theme .faq-dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.light-theme .faq-item h4 {
    color: #333;
    font-weight: 600;
}
body.light-theme .faq-answer p {
    color: var(--text-color-muted);
}
body.light-theme .dropdown-icon {
    background-color: rgba(89, 190, 255, 0.15);
    color: #003a70;
}
body.light-theme .faq-item.active .dropdown-icon i {
    color: #003a70;
    transform: rotate(180deg);
}
body.light-theme .faq-content h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
body.light-theme .faq-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 57, 112, 0.1);
}
body.light-theme .clients-carousel-container::before,
body.light-theme .clients-carousel-container::after {
    display: none;
}
body.light-theme .filter-buttons {
    margin-bottom: 40px;
}
body.light-theme .clients-section .section-header h2,
body.light-theme .contact-section .section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
body.light-theme .btn-primary,
body.light-theme .btn-secondary,
body.light-theme .submit-btn,
body.light-theme .clients-cta .btn {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 57, 112, 0.2);
}
body.light-theme .contact-btn .btn-primary:hover,
body.light-theme .btn-primary:hover,
body.light-theme .btn-secondary:hover,
body.light-theme .submit-btn:hover,
body.light-theme .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);
}
body.light-theme .main-nav a.active {
    color: #003a70;
    font-weight: 600;
}
body.light-theme .main-nav a::after {
    background: #59beff;
}
body.light-theme .gallery-section .section-header h3,
body.light-theme .clients-section .section-header h3,
body.light-theme .contact-section .section-header h3 {
    color: #59beff;
    font-weight: 600;
}
body.light-theme .contact-info i {
    color: #59beff;
}
body.light-theme .main-nav a.active {
    color: #003a70;
    font-weight: 600;
}
body.light-theme .learn-more:hover {
    color: #59beff;
}
.main-nav a.active {
    color: #fdec08;
}
.main-nav a::after {
    background: #fdec08;
}
.gallery-section .section-header h3,
.clients-section .section-header h3,
.contact-section .section-header h3 {
    color: #fdec08;
}
.learn-more:hover {
    color: #fdec08;
}
.subtitle {
    color: #fdec08;
}
.contact-info i {
    color: #fdec08;
}
@media (max-width: 576px) {
    .gallery-section .container {
        padding: 0 10px;
    }
}
    .gallery-item {
        -webkit-tap-highlight-color: transparent;
    }
}
@media (max-width: 480px) {
    .creative-process {
        padding: 50px 0;
        min-height: 40vh;
    }
    .creative-process-grid {
        min-height: 40vh;
    }
    .creative-process-images {
        grid-template-columns: 1fr;
    }
    .process-img-1, .process-img-2 {
        height: 160px;
    }
    .process-img-2 {
        margin-top: 0;
    }
    .content-wrapper h2 {
        font-size: 1.6rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .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: 425px) {
    p, 
    .subtitle, 
    .service-card p, 
    .content-wrapper p, 
    .faq-answer p, 
    .testimonial-text, 
    .blog-content p, 
    .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,
    .btn-secondary,
    .btn-alt,
    .btn-outline {
        font-size: 0.9rem;
    }
    .btn{
        padding: 10px 14px !important;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    p, li, a {
        font-size: 0.95rem;
    }
}
@media (max-width: 576px) {
    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;
    }
}
@media (max-width: 991px) {
    .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;
    }
}
@media (max-width: 767px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .footer-links-column, 
    .footer-contact-column {
        margin-bottom: 1.5rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
}
@media (max-width: 576px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-form {
        padding: 1rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-section .section-header h2 {
        font-size: 1.6rem;
    }
    .contact-method {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }
    .submit-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-logo-column {
        grid-column: span 2;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .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;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    .newsletter-form input {
        width: 100%;
        margin-right: 0;
    }
    .newsletter-form button {
        width: 100%;
    }
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .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,
    .newsletter-form input,
    .newsletter-form button,
    .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;
    }
    .social-link {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 360px) {
    .contact-method {
        padding: 0.75rem;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .newsletter-form {
        margin-bottom: 1.5rem;
    }
    .footer-links-column,
    .footer-contact-column {
        margin-bottom: 1.5rem;
    }
}
body.light-theme .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);
}
.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);
}
body.light-theme .faq-item.active .dropdown-icon {
    background: var(--accent-secondary);
}
.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;
}
@media (max-width: 576px) {
    .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;
    }
}
body.light-theme .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
}
body.light-theme .faq-dropdown {
    border-bottom: none;
}
body.light-theme .service-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 57, 112, 0.1);
    transform: translateY(-5px);
}
body.light-theme .service-card:hover h3 {
    color: #003a70;
}
body.light-theme .service-card:hover .service-icon {
    background-color: rgba(0, 57, 112, 0.1);
}
body.light-theme .service-card:hover .learn-more {
    color: #003a70;
}
body.light-theme .learn-more:hover {
    color: #003a70;
}
body.light-theme .blog-card:hover h3 {
    color: #003a70;
}
body.light-theme .blog-card:hover .read-more {
    color: #003a70;
}
body.light-theme .read-more:hover {
    color: #003a70;
}
body.light-theme .read-more:hover i {
    transform: translateX(5px);
    color: #003a70;
}
body.light-theme .btn:hover,
body.light-theme .social-link:hover,
body.light-theme .filter-btn:hover {
    background: linear-gradient(45deg, #003a70, #59beff);
    color: white;
}
.faq-dropdown {
    margin-top: 0;
}
.faq-item:last-child {
    border-bottom: none;
}
body.light-theme .learn-more:hover {
    color: #003a70 !important; 
}
body.light-theme .faq-dropdown {
    border-bottom: none !important;
}
body.light-theme .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
body.light-theme .faq-item:last-child {
    border-bottom: none !important;
}
body.light-theme .service-card:hover h3,
body.light-theme .service-card:hover .learn-more,
body.light-theme .blog-card:hover h3,
body.light-theme .blog-card:hover .read-more,
body.light-theme .read-more:hover,
body.light-theme .read-more:hover i {
    color: #003a70 !important;
}
.map-section,
.global-presence-section {
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
}
.map-section::before,
.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.1) 0%, transparent 60%);
    z-index: 1;
}
body.light-theme .map-section,
body.light-theme .global-presence-section {
    background-color: var(--bg-color-light);
}
body.light-theme .map-section::before,
body.light-theme .global-presence-section::before {
    background-image: radial-gradient(circle at 20% 35%, rgba(0, 58, 112, 0.05) 0%, transparent 60%);
}
.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);
}
.map,
.world-map {
    width: 100%;
    height: 100%;
    border: none;
}
body.light-theme .map-container,
body.light-theme .world-map-container {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.jvectormap-container {
    background-color: transparent !important;
}
.jvectormap-zoomin, 
.jvectormap-zoomout, 
.jvectormap-goback {
    background-color: rgba(230, 189, 0, 0.8);
    color: #121212;
    border-radius: 3px;
}
body.light-theme .jvectormap-zoomin, 
body.light-theme .jvectormap-zoomout, 
body.light-theme .jvectormap-goback {
    background-color: rgba(0, 58, 112, 0.8);
    color: #ffffff;
}
.jvectormap-tip {
    background: #121212;
    color: #e6bd00;
    font-family: 'Poppins', sans-serif;
    padding: 8px 12px;
    border: 1px solid #e6bd00;
    border-radius: 5px;
}
body.light-theme .jvectormap-tip {
    background: #ffffff;
    color: #003a70;
    border: 1px solid #003a70;
}
@media (max-width: 991px) {
    .map, .world-map {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .map, .world-map {
        height: 350px;
    }
}
@media (max-width: 576px) {
    .map, .world-map {
        height: 300px;
    }
}
.hero-slogan {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 20px;
    color: #e6bd00;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .hero-slogan {
        font-size: 20px;
    }
}
@media (max-width: 576px) {
    .hero-slogan {
        font-size: 18px;
    }
}
.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;
}
.world-map-container:hover {
    transform: translateY(-5px);
}
.world-map {
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.hover-info,
.datamaps-hoverover {
    display: none !important;
}
.hover-info-unused {
    padding: 10px 15px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1000;
}
.hover-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #4dabff;
}
.hover-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}
.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: #59beff;
    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;
}
body.light-theme .connection-path {
    stroke: var(--primary-color);
}
.uk-pulse {
    fill: var(--accent-secondary);
}
body.light-theme .uk-pulse {
    fill: var(--primary-color);
}
.uk-pulse-outer {
    stroke: var(--accent-secondary);
    fill: none;
}
body.light-theme .uk-pulse-outer {
    stroke: var(--primary-color);
}
body.light-theme .connection-path {
    filter: drop-shadow(0 0 2px rgba(0, 58, 112, 0.5));
}
body.light-theme .uk-pulse {
    filter: drop-shadow(0 0 3px rgba(0, 58, 112, 0.8));
}
.datamaps-subunit {
    cursor: default !important;
    transition: none !important;
}
.datamaps-subunit:hover {
    opacity: 1 !important;
}
body.light-theme .hover-info {
    background: rgba(245, 245, 245, 0.95);
    border: 1px solid #ddd;
    color: #333;
}
body.light-theme .hover-info h4 {
    color: #003a70;
}
body.light-theme .world-map-legend {
    background: rgba(245, 245, 245, 0.9);
    border: 1px solid #ddd;
}
body.light-theme .legend-title {
    color: #003a70;
}
body.light-theme .legend-item {
    color: #333;
}
@media (max-width: 991px) {
    .world-map-container {
        height: 400px;
    }
    .world-map-legend {
        width: 150px;
        padding: 8px 12px;
    }
}
@media (max-width: 767px) {
    .world-map-container {
        height: 350px;
    }
    .world-map-legend {
        bottom: 15px;
        right: 15px;
    }
}
@media (max-width: 576px) {
    .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;
    }
}
body.light-theme .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);
}
body.light-theme .legend-title,
.world-map-legend.light-theme .legend-title {
    color: #003a70;
    font-weight: 600;
}
body.light-theme .legend-item,
.world-map-legend.light-theme .legend-item {
    color: #444;
}
.connection-path {
    filter: drop-shadow(0 0 2px rgba(0, 136, 255, 0.4));
}
.uk-pulse {
    filter: drop-shadow(0 0 3px rgba(0, 136, 255, 0.7));
}
.uk-pulse-outer {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% {
        r: 5;
        opacity: 0.7;
    }
    100% {
        r: 25;
        opacity: 0;
    }
}
body.light-theme .connection-path {
    filter: drop-shadow(0 0 2px rgba(0, 58, 112, 0.5));
}
body.light-theme .uk-pulse {
    filter: drop-shadow(0 0 3px rgba(0, 58, 112, 0.8));
}
.global-presence-section {
    position: relative;
    background-color: var(--bg-color);
    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.1) 0%, transparent 60%);
    z-index: 1;
}
.global-presence-section .section-header {
    position: relative;
    z-index: 2;
}
.contact-global-connector {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
    z-index: 10;
}
.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 {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 40px auto;
    overflow: hidden;
}
.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; 
}
body.light-theme .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);
}
body.light-theme .social-link {
    background-color: rgba(0, 0, 0, 0.05);
    color: #1976D2; 
}
body.light-theme .social-link:hover {
    background-color: #1976D2; 
    color: #fff;
}
body.light-theme .submit-btn {
    background: #1976D2; 
    color: #fff;
}
body.light-theme .submit-btn:hover {
    background: #2196F3; 
}
body.light-theme .contact-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #1976D2; 
}
body.light-theme .detail-item i {
    color: #1976D2; 
}
.hero-slideshow .slide,
.service-card:hover,
.filter-btn,
.gallery-item img,
.gallery-text,
.client-logo,
.social-icons a,
.btn {
    transform: translateZ(0); 
}
@media (prefers-reduced-motion: reduce) {
    .hero-slideshow .slide {
        transition: none;
    }
    .service-card,
    .gallery-item,
    .client-logo {
        transition: none;
    }
}
.services-section .section-header h2 {
    animation: fadeInDown 0.7s ease forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .services-section .section-header h2 {
        animation: none;
        opacity: 1;
    }
}
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.service-card:nth-child(1) {
    transition-delay: 0.1s;
}
.service-card:nth-child(2) {
    transition-delay: 0.3s;
}
.service-card:nth-child(3) {
    transition-delay: 0.5s;
}
.services-section .section-header h2 {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.services-visible .service-card,
.services-visible .services-section .section-header h2 {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .services-section .section-header h2 {
        transition: none;
        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.hidden {
    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;
}
@media (max-width: 768px) {
    .hero-slideshow .slide[class*="dynamic-slide-"] {
        background-attachment: scroll;
    }
}
.hero-slideshow .slide[class*="dynamic-slide-"] {
    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;
}
.contact-section .section-header h2 {
    margin-bottom: 0;
}
@media (max-width: 767px) {
  .global-presence-section,
  .world-map-container {
    display: none !important;
  }
}
.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;
}
.blog-single .entry-content h2 {
    font-size: 2rem;
}
.blog-single .entry-content h3 {
    font-size: 1.6rem;
}
.blog-single .entry-content h4 {
    font-size: 1.3rem;
}
.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);
}
@media (max-width: 991px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .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: 480px) {
    .blog-page-header .page-title {
        font-size: 1.75rem;
    }
    .blog-single .entry-title {
        font-size: 1.75rem;
    }
    .blog-card-title {
        font-size: 1.1rem;
    }
}
.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;
}
body.light-theme .return-to-home-btn {
    background-color: var(--primary-color);
    color: var(--accent-color);
}
body.light-theme .return-to-home-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .return-to-home-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .return-to-home-btn i {
        font-size: 18px;
    }
}
.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: #59beff;
    text-decoration: underline;
}
body.light-theme .legal-page {
    background-color: #f8f9fa;
}
body.light-theme .legal-document {
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
body.light-theme .legal-intro {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    color: #333;
}
body.light-theme .legal-section p,
body.light-theme .legal-section ul li,
body.light-theme .legal-contact address {
    color: #444;
}
body.light-theme .legal-section ul li strong {
    color: #222;
}
body.light-theme .legal-section h2 {
    color: var(--primary-color);
    border-bottom-color: rgba(0, 58, 112, 0.2);
}
body.light-theme .legal-highlight {
    background: linear-gradient(90deg, rgba(0, 58, 112, 0.08), transparent);
    color: var(--primary-color);
}
body.light-theme .legal-contact {
    background-color: rgba(0, 58, 112, 0.05);
}
body.light-theme .legal-section a,
body.light-theme .legal-document a {
    color: var(--primary-color);
}
body.light-theme .legal-section a:hover,
body.light-theme .legal-document a:hover {
    color: #59beff;
}
@media (max-width: 768px) {
    .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: 480px) {
    .legal-document {
        padding: 25px 20px;
    }
    .legal-intro {
        font-size: 1rem;
    }
    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}