/* Custom Font Imports */
@font-face {
    font-family: 'BebasNeue-BoldItalic';
    src: url('../fonts/BebasNeue-BoldItalic.woff2') format('woff2'),
         url('../fonts/BebasNeue-BoldItalic.woff') format('woff'),
         url('../fonts/BebasNeue-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue-BoldItalic';
    src: url('../fonts/HelveticaNeue-BoldItalic.woff2') format('woff2'),
         url('../fonts/HelveticaNeue-BoldItalic.woff') format('woff'),
         url('../fonts/HelveticaNeue-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #2E2E2E;
    --primary-dark: #2E2E2E;
    --dark-bg: #2E2E2E;
    --dark-card: #2E2E2E;
    --accent: #FA4329;
    --text-light: #f8f9fa;
    --font-header: 'BebasNeue-BoldItalic', 'Sans-serif', sans-serif;
    --font-content: 'HelveticaNeue-BoldItalic', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'BebasNeue-BoldItalic', 'Sans-serif', sans-serif;
}

/* English Language Font Styles */
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6,
html[lang="en"] .title,
html[lang="en"] .section-title .title,
html[lang="en"] .video-title,
html[lang="en"] .success-title,
html[lang="en"] .navbar-brand,
html[lang="en"] .hero-content h1,
html[lang="en"] .blog-card h3,
html[lang="en"] .service-button,
html[lang="en"] .stat-number {
    font-family: var(--font-header);
}

html[lang="en"] p,
html[lang="en"] .brief,
html[lang="en"] .description,
html[lang="en"] .content,
html[lang="en"] .video-subtitle,
html[lang="en"] .success-description,
html[lang="en"] .hero-content p,
html[lang="en"] .blog-card p,
html[lang="en"] .stat-label,
html[lang="en"] .section-title .brief {
    font-family: var(--font-content);
}

/* Alternative approach using body class */
body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4,
body.lang-en h5,
body.lang-en h6,
body.lang-en .title,
body.lang-en .section-title .title,
body.lang-en .video-title,
body.lang-en .success-title,
body.lang-en .navbar-brand,
body.lang-en .hero-content h1,
body.lang-en .blog-card h3,
body.lang-en .service-button,
body.lang-en .stat-number {
    font-family: var(--font-header);
}

body.lang-en p,
body.lang-en .brief,
body.lang-en .description,
body.lang-en .content,
body.lang-en .video-subtitle,
body.lang-en .success-description,
body.lang-en .hero-content p,
body.lang-en .blog-card p,
body.lang-en .stat-label,
body.lang-en .section-title .brief {
    font-family: var(--font-content);
}

/* Additional specific component styles for English */
body.lang-en .section-title .title {
    font-family: var(--font-header);
    font-weight: bold;
    font-style: italic;
}

body.lang-en .section-title .brief {
    font-family: var(--font-content);
    font-weight: bold;
    font-style: italic;
}

body.lang-en .blog-card .blog-content h3 {
    font-family: var(--font-header);
}

body.lang-en .blog-card .blog-content p {
    font-family: var(--font-content);
}

body.lang-en .team-card .team-info h3 {
    font-family: var(--font-header);
}

body.lang-en .team-card .team-info p {
    font-family: var(--font-content);
}

body.lang-en .service-card .service-content h3 {
    font-family: var(--font-header);
}

body.lang-en .service-card .service-content p {
    font-family: var(--font-content);
}

body.lang-en .portfolio-item .portfolio-content h3 {
    font-family: var(--font-header);
}

body.lang-en .portfolio-item .portfolio-content p {
    font-family: var(--font-content);
}

/* Additional navbar elements for English */
body.lang-en .navbar-toggler {
    font-family: var(--font-header);
}

body.lang-en .dropdown-menu {
    font-family: var(--font-header);
}

body.lang-en .dropdown-item {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.85rem;
}

body.lang-en .navbar-nav .dropdown-menu .dropdown-item {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    body.lang-en .navbar-nav .nav-link {
        font-family: var(--font-header);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    body.lang-en .navbar-brand {
        font-family: var(--font-header);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1.3rem;
    }
}

body {
    background: linear-gradient(135deg, var(--dark-bg), #2E2E2E);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: sticky; /* keeps navbar visible while scrolling */
    top: 0;
    z-index: 1000;  /* ensures it stays above content */
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(.65625em);
    backdrop-filter: blur(.65625em);
    background: #0000004d;
}

.navbar-brand {
    font-weight: 700;
    color: var(--accent) !important;
    font-size: 1.5rem;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-item .active {
    color: #FA4329 !important;
}

/* English specific navbar styles */
body.lang-en .navbar-brand {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.lang-en .nav-link {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.lang-en .navbar-nav .nav-link {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo container for animation */
.navbar-brand img {
    display: inline-block;
    animation: slideLogo 3s ease-in-out infinite alternate;
    /*
        3s = duration
        infinite = repeat forever
        alternate = goes left → right → left
    */
}

/* Keyframes for left to right motion */
@keyframes slideLogo {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px); /* move 20px to the right */
    }
}

.language-switcher {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text-light);
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    margin-left: 1rem;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

/* English specific language switcher */
body.lang-en .language-switcher {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section with Curved Bottom */
/*.hero {*/
/*    min-height: 80vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80') no-repeat center center;*/
/*    background-size: cover;*/
/*    opacity: 0.2; !* only the background gets faded *!*/
/*    z-index: -1;*/
/*}*/

/*.hero::before {*/
/*    background: var(--banner-url) no-repeat center center;*/
/*    background-size: cover;*/
/*}*/
/*.hero {*/
/*    min-height: 80vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80') no-repeat center center;*/
/*    background-size: cover;*/
/*    opacity: 0.2;*/
/*    z-index: -1;*/
/*}*/

/*.hero-content {*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*    text-align: center;*/
/*    padding: 2rem;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.hero-tagline {*/
/*    font-size: 1.2rem;*/
/*    color: var(--accent);*/
/*    margin-bottom: 1rem;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 2px;*/
/*}*/

/*.hero-title {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 800;*/
/*    margin-bottom: 1.5rem;*/
/*    background: linear-gradient(90deg, var(--accent), var(--primary));*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*}*/

/*.hero-divider {*/
/*    width: 100px;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, var(--primary), var(--accent));*/
/*    margin: 2rem auto;*/
/*    border: none;*/
/*}*/

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/*.hero-content {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    text-align: center;*/
/*    color: white;*/
/*    z-index: 3;*/
/*    width: 80%;*/
/*    max-width: 900px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.hero-content h1 {*/
/*    font-size: 3.5rem;*/
/*    margin-bottom: 1.5rem;*/
/*    font-weight: 800;*/
/*    line-height: 1.2;*/
/*}*/

/*.hero-content h1 span {*/
/*    color: #FA4329;*/
/*}*/

/*.hero-content p {*/
/*    font-size: 1.2rem;*/
/*    margin-bottom: 2.5rem;*/
/*    line-height: 1.6;*/
/*    max-width: 700px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

.gif-fallback-loader {
     width: 250px;
    /*background: transparent;*/
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-image: var(--banner-url);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent);
    overflow: hidden;
}

/* Overlay for better text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero-content {
    opacity: 0;
    transform: translateY(50px);
    animation: heroEntrance 1.2s ease-out 0.3s forwards;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    border: none;
    margin: 0 auto 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #FA4329;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .container {
    z-index: 999;
}

.hero-video-section {
    height: auto;
    min-height: auto;
}
.hero-video-section img{
    width:100%;
    height: 100%;
}

.hero-video-section::after {
    background: unset;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.primary-btn {
    background: #FA4329;
    color: white;
}

.primary-btn:hover {
    background: #FA4329;
    transform: translateY(-3px);
}

.secondary-btn {
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

/*Home*/
/* Social media sidebar */
.social-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-sidebar.left {
    left: 20px;
}

.social-sidebar.right {
    right: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250, 67, 41, 0.1);
    transition: all 0.3s ease;
    color: rgba(250, 67, 41);
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(250, 67, 41, 0.2);
    transform: translateY(-3px);
}

/* Hero section */
/*.hero-section {*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    min-height: 100vh;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: flex-end;*/
/*    padding: 0;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    background-color: #000;*/
/*}*/

/*.hero-video {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    z-index: 0;*/
/*}*/

.partner-box {
    position: absolute;
    right: 0;
    bottom: 7.1875em;
    width: 100%;
    padding: 0 4.0625em;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    height: 6.875em;
}

.partner-box__item {
    display: flex;
    padding-right: 1.875em;
}

.partner-box__item:last-child {
    padding-right: 0;
}

.partner-box__item .img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.scroll-down {
    position: absolute;
    z-index: 2;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75em;
    height: 3.125em;
}

.scroll-down a {
    display: block;
    text-decoration: none;
}

.scroll-down__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.scroll-down__txt {
    font-size: 0.75em;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.2025em;
    text-transform: uppercase;
    color: #fff;
}

.scroll-down__icon {
    height: 2em;
    padding-top: 0.41667em;
}

.scroll-down__icon .img-wrapper {
    display: block;
    width: 0.75em;
    height: 0.6875em;
}

.scroll-down__icon img {
    animation: jumpInfinite 1.5s infinite;
}

@keyframes jumpInfinite {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: 1.25em;
    }
    100% {
        margin-top: 0;
    }
}

/* Partners Section */
.partners-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #2E2E2E;
}

.line-shade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.center-shadow {
    position: absolute;
    width: 48.0626875em;
    height: 21.38275em;
    z-index: 0;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}

.center-shadow::before {
    content: "";
    width: 42.4139375em;
    height: 16.5013125em;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    border-radius: 42.4139375em;
    opacity: 0.15;
    background: linear-gradient(90deg, var(--primary) 0, var(--primary-dark) 100%);
    filter: blur(6.8750004768em);
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-inner {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 10%;
    padding: 0 15px;
}

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

/* Services Section */
.services-section {
    min-height: 100vh;
    background-color: #2E2E2E;
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.center-shadow {
    width: 35.9375em;
    height: 15.9375em;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.center-shadow::before {
    content: "";
    opacity: 0.4;
    background: #FA4329; /* Primary color */
    filter: blur(4.39375em);
    border-radius: 35.934em;
    width: 100%;
    height: 100%;
    display: block;
}

.service-button {
    color: rgb(237, 237, 237);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.46875em;
    letter-spacing: -0.02em;
    position: relative;
    transition: font-weight 0.5s ease, padding-left 0.5s ease, color 0.5s ease;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
}

.service-button::before {
    content: "";
    width: 0.91976em;
    height: 0.91976em;
    display: block;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><circle cx="12" cy="12" r="8"/></svg>') no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translate(0, -50%);
    transition: opacity 0.7s ease, transform 0.5s ease;
}

.service-button:hover {
    font-weight: 700;
    color: #fff;
}

.service-button.active {
    padding-left: 1.22875em;
    font-weight: 700;
    color: #fff;
}

.service-button.active::before {
    opacity: 1;
}

.services-inner-box {
    width: 100%;
    border-radius: 2.5em;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(41, 41, 41, 0.4);
    backdrop-filter: blur(2px);
    padding: 2.5em;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s ease;
    opacity: 1;
    z-index: 2;
    min-height: 400px;
}

.service-children {
    display: none;
    width: 100%;
}

.service-children.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.relative {
    position: relative;
}

.z-9 {
    z-index: 9;
}
/* Clients Section */
.clients-section {
    min-height: 100vh;
    background-color: #2E2E2E;
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.client-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.client-list::after {
    content: "";
    height: 1px;
    width: 100%;
    opacity: 0.58;
    background: linear-gradient(90deg, #141418 0, #ededed 47%, #141418 100%);
    position: absolute;
    right: 0;
    top: 50%;
}

.client-list__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 16.66667%;
    justify-content: center;
    padding: 2rem 0;
}

.client-list__item:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 32.98937em;
    height: 1px;
    top: 55%;
    left: -5%;
    transform: rotate(-90deg) translate(0, 0);
    opacity: 0.58;
    background: linear-gradient(90deg, rgba(20, 20, 24, 0) 6.5%, #ededed 47%, rgba(20, 20, 24, 0) 107%);
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
}

.client-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

/* FAQs Section */
.faqs-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background-color: #2E2E2E;
    padding: 5em 0;
}

.faqs-list {
    max-height: 500px;
    overflow: auto;
}

.faqs-list::-webkit-scrollbar {
    width: 6px;
    background-color: rgb(10, 10, 11);
    border-radius: 10px;
}

.faqs-list::-webkit-scrollbar-thumb {
    background: linear-gradient(213deg, #FA4329 -39.81%, #FA4329 85.21%);
    border-radius: 10px;
}

.faqs-list::-webkit-scrollbar-track {
    background-color: rgb(10, 10, 11);
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.accordion-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25em;
    border-radius: 1.625em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.4);
}

.accordion-wrapper.open {
    background-color: rgba(0, 0, 0, 0.6);
}

.question {
    font-size: 1.375em;
    font-weight: 500;
    line-height: 1.40909em;
    letter-spacing: -0.04em;
    padding: 1.13636em 3.5em 1.13636em 1.36364em;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
    background-color: transparent;
    color: #fff;
    border: none;
}

.question::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 2px;
    height: 14px;
    background-color: #fff;
    right: 1.51em;
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
}

.question::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 2px;
    background-color: #fff;
    right: calc(34px);
    transform: translate(46%, -50%);
    transition: all 0.5s ease-in-out;
}

.accordion-wrapper.open .question::before {
    transform: translateY(-50%) rotate(90deg);
}

.answer {
    overflow: hidden;
    max-height: 0;
    color: #fff;
    transition: all 0.5s ease;
    padding: 0 1.875em;
}

.accordion-wrapper.open .answer {
    max-height: 300px;
    padding: 0 1.875em 1.2em;
}

.answer p {
    font-size: 1.25em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.35em;
    letter-spacing: -0.04em;
    margin-bottom: 1.2em;
}

/* Section Styles */
.home-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .brief {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title .title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Services Section */
/*.services-section {*/
/*  background-color: #f8f9fa;*/
/*}*/

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Our Work Section */
.work-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.work-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 30px;
    z-index: 99999;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.work-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(250, 67, 41, 0.8), rgba(46, 46, 46, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

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

.work-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.work-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.work-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Blog Section */
.home-blog-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    z-index: 4;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-card p {
    color: #666;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.home-cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Content Section */
.about-content {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 0;
    opacity: 0.5;
}

.center-shadow {
    width: 35.9375em;
    height: 15.9375em;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.center-shadow::before {
    content: "";
    opacity: 0.4;
    background: #FA4329; /* Primary color */
    filter: blur(4.39375em);
    border-radius: 35.934em;
    width: 100%;
    height: 100%;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title .brief {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.team-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(253, 187, 45, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-image::before {
    opacity: 1;
}

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

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.team-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Blog Content Section */
.blog-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 0;
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title .brief {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(253, 187, 45, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    align-self: flex-start;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: var(--accent);
}

.blog-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    border-radius: 30px;
    background: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /*--bs-pagination-bg: #2E2E2E;*/
}

.pagination li {
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination li:last-child a {
    border-right: none;
}

.pagination li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.pagination li.active a {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
}

.pagination li.disabled span {
    color: rgba(46, 46, 46, 0.3);
    cursor: not-allowed;
}
.pagination li a, .pagination li span {
    color: rgba(46, 46, 46, 0.3);
}
.pagination-container .text-muted {
    color: #666 !important;
    padding-left: 1rem;
    padding-right: 1rem;
}
.active>.page-link, .page-link.active {
    background-color: var(--accent);
    border-color: var(--accent);
}
.page-item:last-child .page-link {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
/* Categories Sidebar */
.sidebar {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.categories-list a:hover {
    color: var(--accent);
}

.categories-list span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Newsletter */
.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    width: 100%;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
}

.btn-subscribe {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 0;
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title .brief {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Contact Form & Info */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
    color: var(--text-light);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.map-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 0;
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title .brief {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: var(--dark-bg);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.4), rgba(253, 187, 45, 0.4));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.portfolio-info {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.portfolio-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Services Section */

/* Section styling */
.services {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.brief {
    color: #FA4329;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(90deg, #FA4329, #2E2E2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Service list styling */
.service-list {
    list-style: none;
}

.service-item {
    margin-bottom: 40px;
}

/* Level-based styling */
.service-item.level-0 {
    margin-bottom: 60px;
}

.service-item.level-1 {
    margin-left: 30px;
}

.service-item.level-2 {
    margin-left: 60px;
}

/* Service card styling */
.service-card {
    background: #2E2E2E;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.service-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FA4329;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-image img:hover {
    transform: scale(1.05);
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #FA4329, #2E2E2E);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.4);
}

/* Alternate card layout for even items */
.service-card.alternate {
    flex-direction: column-reverse;
}

/* Parent service title */
.parent-service-title h2 {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FA4329;
    display: inline-block;
}

/* Child services wrapper */
.child-services {
    position: relative;
    margin-bottom: 40px;
}

.parent-name-bg {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 48px;
    font-weight: 800;
    color: transparent;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 0;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 4px;
}

/* Content Sections */
.about-content, .values-section, .jobs-section {
    padding: 100px 0;
    position: relative;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 30px;
    text-align: center;
    background: var(--dark-card);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Jobs Section */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: var(--dark-card);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
    background: var(--primary);
    color: white;
    padding: 20px;
}

.job-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-body {
    padding: 20px;
}

.job-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 20px;
}

.job-requirements h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.job-requirements ul {
    padding-left: 20px;
}

.job-requirements li {
    margin-bottom: 5px;
}

.btn-apply,
.btn-submit {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-apply:hover,
.btn-submit:hover {
    background: #FA4329;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    background-color: #1e1e1e; /* dark background */
    color: #fff; /* default text color */
}

.modal-header {
    background: transparent; /* darker header */
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px;
}

.modal-title {
    font-weight: 600;
    color: #fff;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

/* Form Elements */
.form-label {
    font-weight: 600;
    color: #ccc; /* lighter label color for dark bg */
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #444; /* darker border for dark mode */
    background-color: #2c2c2c; /* input background */
    color: #fff; /* input text */
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: #aaa; /* placeholder color for dark bg */
    opacity: 1;
}

.form-control:focus {
    border-color: #6c63ff; /* accent color for focus */
    box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
    background-color: #2c2c2c;
    color: #fff;
}

/* Resume Upload */
.resume-upload {
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.resume-upload:hover {
    border-color: #6c63ff;
}

.resume-upload i {
    font-size: 2rem;
    color: #6c63ff;
    margin-bottom: 10px;
}

/* Submit Button */
/*.btn-submit {*/
/*    background: linear-gradient(90deg, #6c63ff, #ff6b81);*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 12px 30px;*/
/*    border-radius: 30px;*/
/*    font-weight: 600;*/
/*    width: 100%;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-submit:hover {*/
/*    background: #b52a4d;*/
/*    transform: translateY(-2px);*/
/*}*/

.footer {
    background: radial-gradient(16.52% 16% at 50% 5.83%, #2E2E2E 0, #2E2E2E 100%);
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 500;
    padding-left: 0.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer h3::before {
    content: "";
    left: 0;
    top: 0;
    width: 2px;
    height: 20px;
    position: absolute;
    background-color: #fff;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: #2E2E2E;
    border-top: 1px solid rgba(237, 237, 237, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .section-title .title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}


/*blog*/

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .section-title .title {
        font-size: 2rem;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .pagination li a,
    .pagination li span {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
    }
}

/*contact*/
/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .section-title .title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

/*portfolio*/
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .section-title .title {
        font-size: 2rem;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}

/*services*/

/* Responsive design */
@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
    }

    .service-card.alternate {
        flex-direction: row-reverse;
    }

    .service-content, .service-image {
        flex: 1;
    }

    .service-image {
        height: auto;
    }

    .title {
        font-size: 42px;
    }

    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .service-item.level-1, .service-item.level-2 {
        margin-left: 15px;
    }

    .parent-name-bg {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .services ol, ul {
        padding-left: 0;
    }
    .modal-dialog{
        min-height: 80em;
    }
}

/*home*/
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title .title {
        font-size: 2rem;
    }

    .social-sidebar {
        display: none;
    }

    .marquee-item {
        padding: 0px 64px;
    }

    .client-list__item{
        width: 32%;
    }

    .footer {
        min-height: 100rem;
    }

    .hero-video-section {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

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

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title .title {
        font-size: 1.8rem;
    }

    .work-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .social-sidebar {
        display: none;
    }

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