@import url('https://fonts.googleapis.com/css2?family=Anta&family=Fira+Code:wght@300..700&family=Geom:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Science+Gothic:wght@100..900&display=swap');

/* CSS Custom Properties for Logo Sizes */
:root {
    --logo-width: 280px;
    --logo-height: 120px;
    --logo-image-height: 220px;
    --logo-mobile-width: 160px;
    --logo-mobile-height: 160px;
    --logo-mobile-image-height: 160px;
    --navbar-height: 70px;
    --stripe-padding-y: 5px;
    --stripe-font-size: 11px;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

/* Dark theme navigation */
.navbar {
    background-color: #000000 !important;
    border-bottom: 1px solid #333;
    padding: 0rem 0;
    min-height: 70px;
}

.navbar-brand h3 {
    color: #ffffff;
    font-weight: bold;
}

.navbar-logo {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #ffffff !important;
    font-weight: 400;
    padding: 10px 16px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Dropdown styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    padding: 0 !important;
    margin-top: 0 !important;
    top: 100% !important;
    left: 0 !important;
    display: none;
    position: absolute !important;
    min-width: 200px;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block !important;
}

/* Keep dropdown visible when hovering over it */
.dropdown-menu:hover {
    display: block !important;
}

.dropdown-item {
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f5f5f5 !important;
    color: #000000 !important;
    border-left-color: #5cdb45 !important;
    padding-left: 17px !important;
    transform: translateX(2px);
}

.dropdown-item:focus {
    background-color: #f5f5f5 !important;
    color: #000000 !important;
    border-left-color: #5cdb45 !important;
}

/* Hide default Bootstrap dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Style Font Awesome angle-down icon in dropdown */
.dropdown-toggle i.fa-angle-down {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate arrow when dropdown is open/hovered */
.nav-item.dropdown:hover .dropdown-toggle i.fa-angle-down {
    transform: rotate(180deg);
}

/* Sales button styling */
.btn-sales {
    background-color: #5cdb45 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 24px !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-sales:hover {
    background-color: #4bc23a !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(92, 219, 69, 0.3);
}

.btn-sales:focus {
    background-color: #4bc23a !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(92, 219, 69, 0.25);
}

/* Hero Banner */
.hero-banner {
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 90%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: left;
}

/* Hero Banner Smart - Image-based banner */
.hero-banner-smart {
    min-height: 600px;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
    margin-top: calc(var(--navbar-height, 70px) + var(--stripe-padding-y, 12px) * 2 + var(--stripe-font-size, 16px) * 1.5);
}

.hero-banner-smart .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-banner-smart .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner-smart .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.hero-banner-smart .hero-overlay .container {
    pointer-events: auto;
}

.hero-banner-smart .hero-title {
    font-family: 'Science Gothic', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 90%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.hero-banner-smart .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: left;
    margin-bottom: 2rem;
}

.hero-get-started-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.hero-get-started-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-get-started-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Responsive design for hero-banner-smart */
@media (max-width: 768px) {
    .hero-banner-smart {
        min-height: 400px;
        height: 50vh;
    }

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

    .hero-banner-smart .hero-description {
        font-size: 16px;
    }

    .hero-get-started-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-banner-smart {
        min-height: 350px;
        height: 45vh;
    }

    .hero-banner-smart .hero-title {
        font-size: 28px;
    }

    .hero-banner-smart .hero-description {
        font-size: 14px;
    }

    .hero-get-started-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* API Documentation Section */
.api-documentation-section {
    padding: 80px 0;
    background-color: #000000;
    font-family: 'Roboto', sans-serif;
}

.api-documentation-section h1,
.api-documentation-section h2,
.api-documentation-section h3,
.api-documentation-section h4,
.api-documentation-section h5,
.api-documentation-section h6,
.api-documentation-section p,
.api-documentation-section ul,
.api-documentation-section li,
.api-documentation-section .api-endpoint-info,
.api-documentation-section .api-endpoint-header {
    font-family: 'Roboto', sans-serif;
}

.api-doc-title {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1rem;
}

.api-doc-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    text-align: left;
    margin-bottom: 3rem;
}

.api-doc-content {
    max-width: 100%;
}

.api-doc-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.api-doc-section:last-child {
    border-bottom: none;
}

.api-doc-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 2rem;
}

.api-endpoint-info {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.api-endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.api-method {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.api-method.get {
    background-color: #5cdb45;
    color: #000000;
}

.api-method.post {
    background-color: #007bff;
    color: #ffffff;
}

.api-path {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 16px;
    color: #5cdb45;
    background-color: #2a2a2a;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #333;
}

.api-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.api-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.api-list {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.api-list li {
    margin-bottom: 0.5rem;
}

.api-list code {
    background-color: #2a2a2a;
    color: #5cdb45;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
}

.api-doc-code-block {
    background-color: #424242;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin: 1rem 0;
    overflow-x: auto;
}

.api-doc-code-block code {
    font-family: 'Fira Code', 'Courier New', monospace !important;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    white-space: pre;
    background: transparent;
    padding: 0;
}

.api-doc-code-block pre {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    color: #ffffff;
}

.api-doc-code-block pre code {
    display: block;
    white-space: pre;
    overflow-x: auto;
    color: #ffffff;
}

/* Code elements in API documentation section */
.api-documentation-section code:not(.api-doc-code-block code) {
    font-family: 'Fira Code', 'Courier New', monospace !important;
    background-color: #2a2a2a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #ffffff;
}

/* Responsive design for API documentation */
@media (max-width: 768px) {
    .api-doc-title {
        font-size: 36px;
    }

    .api-doc-subtitle {
        font-size: 16px;
    }

    .api-doc-section-title {
        font-size: 28px;
    }

    .api-subtitle {
        font-size: 20px;
    }

    .api-endpoint-info {
        padding: 1.5rem;
    }

    .api-endpoint-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .api-path {
        font-size: 14px;
        word-break: break-all;
    }
}

/* Services section */
.services {
    padding: 80px 0;
    background: #1a1a1a;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #ffffff;
}

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

.service-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

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

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #cccccc;
}

/* About section */
.about {
    padding: 80px 0;
    background: #000000;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #cccccc;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Network Visualization Section */
.network-viz {
    padding: 80px 0;
    background: #000000;
}

.network-viz h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.network-viz p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.network-viz svg {
    display: block;
    margin: 0 auto;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-links-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #5cdb45;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.footer-link-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link-text:hover {
    color: #5cdb45;
}

.footer-separator {
    color: #666666;
    margin: 0 5px;
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-links-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-links-bottom {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .footer-bottom .row {
        flex-direction: column;
    }

    .footer-bottom .col-md-6 {
        text-align: left !important;
    }
}

/* Partners Section */
.partners-section {
    padding: 120px 0;
    background: #000000;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.partners-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.partners-swiper {
    width: 100%;
    padding: 0 2rem;
    overflow: hidden;
}

.partners-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    animation: scroll 18s linear infinite;
    width: fit-content;
    will-change: transform;
}

/* Continuous scrolling animation - moves by exactly 1/3 of the width (one set) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move by exactly one set of logos (33.333% since we have 3 sets) */
        transform: translateX(-33.333%);
    }
}

.partners-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--logo-width);
    height: var(--logo-height);
    flex-shrink: 0;
    margin-right: 50px;
}

.partners-swiper .swiper-slide img {
    width: auto;
    height: auto;
    max-width: var(--logo-width);
    max-height: var(--logo-image-height);
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
}

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

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

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

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

    .partners-section {
        padding: 0px 0;
    }

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

    .partners-swiper {
        padding: 0 1rem;
    }

    .partners-swiper .swiper-slide {
        min-width: var(--logo-mobile-width);
        height: var(--logo-mobile-height);
    }

    .partners-swiper .swiper-slide img {
        width: auto;
        height: auto;
        max-width: var(--logo-mobile-width);
        max-height: var(--logo-mobile-image-height);
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #000000;
}

.solutions-grid {
    display: flex;
    gap: 2rem;
}

.solution-card {
    flex: 1;
    min-width: 0;
    background-color: #232323;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
}

.solution-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 1.5rem;
    display: block;
}

.solution-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    padding-bottom: 16px;
    margin-bottom: 1rem;
    text-align: left;
}

.solution-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    text-align: left;
}

.solution-button {
    width: 48px;
    height: 48px;
    background-color: #5cdb45;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 1.5rem;
    margin-left: auto;
    transition: background-color 0.3s ease;
}

.solution-button:hover {
    background-color: #4bc23a;
}

.solution-button i {
    color: #000000;
    font-size: 18px;
}

/* Responsive design for solutions section */
@media (max-width: 768px) {
    .solutions-grid {
        flex-direction: column;
    }
}

/* Our Creations Section */
.creations-section {
    padding: 80px 0;
    background-color: #000000;
}

.creations-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

/* 3D Carousel Wrapper */
.creations-carousel-wrapper {
    --total: 10;
    --item-width: clamp(280px, 30vmin, 350px);
    --gap-efficient: 0.1;
    --scroll-ratio: 2;
    --perspective: 1400px;
    --mask-lower: 0.9;
    --mask-upper: 1.8;
    --rotate-x: 0;
    --rotate-z: 0;
    --inner-angle: calc((360 / var(--total)) * 1deg);
    --gap: calc(var(--item-width) * var(--gap-efficient));
    --radius: calc(((var(--item-width) + var(--gap)) / sin(var(--inner-angle))) * -1);
    --scroll-padding: 0px;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 40px 0;
}

.carousel-container {
    height: 100%;
    width: 100%;
    mask: linear-gradient(calc(90deg + (var(--rotate-z) * 1deg)),
            transparent 0 calc(50% - (var(--item-width) * var(--mask-upper))),
            white calc(50% - (var(--mask-lower) * var(--item-width))) calc(50% + (var(--mask-lower) * var(--item-width))),
            transparent calc(50% + (var(--mask-upper) * var(--item-width))) 100%);
    pointer-events: none;
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    transform-style: preserve-3d;
    perspective: var(--perspective);
    overflow: hidden;
}

.carousel {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    transform-style: preserve-3d;
    transform: translate3d(0, 0, var(--radius)) rotateX(calc(var(--rotate-x) * 1deg)) rotateZ(calc(var(--rotate-z) * 1deg)) rotateY(0deg);
}

@keyframes carousel-rotate {
    to {
        transform: translate3d(0, 0, var(--radius)) rotateX(calc(var(--rotate-x) * 1deg)) rotateZ(calc(var(--rotate-z) * 1deg)) rotateY(-360deg);
    }
}

.carousel li {
    position: absolute;
    top: 50%;
    left: 50%;
    backface-visibility: hidden;
    height: var(--item-width);
    width: var(--item-width);
    transform: translate(-50%, -50%) rotateY(calc((var(--inner-angle) * var(--index)))) translate3d(0, 0, calc(var(--radius) * -1));
}

.controller {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    height: 100%;
    scroll-snap-type: x mandatory;
    align-items: center;
    padding-inline: calc((50vw) - (calc(var(--item-width) * var(--scroll-ratio)) * 0.5));
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
}

/* Infinite scroll padding for seamless loop */
.creations-carousel-wrapper[data-infinite="true"] .controller,
.creations-carousel-wrapper .controller {
    --scroll-padding: 5px;
}

.controller li {
    height: calc(var(--item-width) * var(--scroll-ratio));
    width: calc(var(--item-width) * var(--scroll-ratio));
    aspect-ratio: 1;
    flex: 1 0 auto;
    scroll-snap-align: center;
}

.creation-card {
    background: #ffffff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0px;
    transform-style: preserve-3d;
}

.creation-image {
    width: 100%;
    min-height: 360px;
    height: 360px;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    border-radius: 0;
    flex-shrink: 0;
}

.category-bubbles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.category-bubble {
    display: inline-block;
    background-color: #2a9c16;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.creation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
    border-radius: 0px;
}

.creation-name {
    width: 100%;
    gap: 5px;
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 14px;
    position: relative;
}

.title-button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.creation-name h3 {
    font-family: 'Geom', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    margin: 0;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.creation-button {
    width: 28px;
    height: 28px;
    background-color: #5cdb45;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    flex-shrink: 0;
}

.creation-button i {
    color: #ffffff;
    font-size: 16px;
}

.creation-card:hover .creation-button {
    opacity: 1;
    visibility: visible;
}

.creation-button:hover {
    background-color: #4bc23a;
}

.creations-view-all-btn {
    background-color: #5cdb45;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.creations-view-all-btn:hover {
    background-color: #4bc23a;
    transform: translateY(-2px);
}

/* Responsive design for creations section */
@media (max-width: 768px) {
    .creations-title {
        font-size: 28px;
    }

    .creations-carousel-wrapper {
        --item-width: 280px;
        height: 500px;
        --perspective: 600px;
    }

    .creation-image {
        min-height: 280px;
        height: 280px;
    }

    .creation-name h3 {
        font-size: 16px;
    }

    .creation-button {
        width: 36px;
        height: 36px;
    }

    .creation-button i {
        font-size: 14px;
    }
}

/* Research and Development Section */
.research-section {
    padding: 80px 0;
    background-color: #000000;
}

.research-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
}

.research-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    padding-left: 0;
}

.research-grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 2px solid #ffffff;
    text-align: left;
}

.research-grid-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.research-grid-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.research-icon {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.research-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
}

.research-content {
    margin-top: 0;
    padding-left: 0;
    padding-top: 0;
}

.research-selected-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    padding-left: 1.5rem;
    border-left: 2px solid #ffffff;
    margin: 0;
    padding-top: 2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* Responsive design for research section */
@media (max-width: 1200px) {
    .research-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .research-title {
        font-size: 36px;
    }

    .research-description {
        font-size: 16px;
    }

    .research-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .research-icon {
        font-size: 32px;
    }

    .research-item-title {
        font-size: 14px;
    }

    .research-selected-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .research-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Section */
.privacy-policy-section {
    padding: 120px 0 80px;
    background-color: #000000;
}

.privacy-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.privacy-content {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.privacy-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.privacy-section ul {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #ffffff;
}

.privacy-section a {
    color: #5cdb45;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #4bc23a;
}

.privacy-contact-box {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-top: 2rem;
}

/* Responsive design for privacy policy section */
@media (max-width: 768px) {
    .privacy-main-title {
        font-size: 36px;
    }

    .privacy-section h2 {
        font-size: 28px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section ul {
        font-size: 16px;
    }

    .privacy-policy-section {
        padding: 100px 0 60px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0;
    background-color: #000000;
}

.contact-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #333;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(92, 219, 69, 0.1);
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-info-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #5cdb45;
}

.contact-form-wrapper {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-form-input {
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #ffffff;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-input:focus {
    outline: none;
    border-color: #5cdb45;
    box-shadow: 0 0 0 3px rgba(92, 219, 69, 0.1);
    background-color: #2a2a2a;
    color: #ffffff;
}

.contact-form-input::placeholder {
    color: #999;
}

.contact-form-input option {
    background-color: #2a2a2a;
    color: #ffffff;
}

.contact-submit-btn {
    background-color: #5cdb45 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 40px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.contact-submit-btn:hover {
    background-color: #4bc23a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 219, 69, 0.3);
}

.contact-submit-btn:focus {
    background-color: #4bc23a !important;
    box-shadow: 0 0 0 3px rgba(92, 219, 69, 0.25);
}

/* Responsive design for contact page */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 3rem;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-section {
        padding: 100px 0 60px;
    }

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

    .hero-description {
        font-size: 16px;
    }
}

/* Careers Section */
.careers-section {
    padding: 120px 0;
    background-color: #000000;
}

.careers-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.careers-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-widget {
    margin-top: 3rem;
}

.career-card {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #333;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(92, 219, 69, 0.1);
}

.career-category {
    display: inline-block;
    background-color: #2a9c16;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.career-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.career-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.career-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.career-meta i {
    color: #5cdb45;
}

.career-description {
    margin-bottom: 2rem;
}

.career-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.career-responsibilities h4,
.career-requirements h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.career-responsibilities ul,
.career-requirements ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.career-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.career-apply-btn {
    background-color: #5cdb45;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.career-apply-btn:hover {
    background-color: #4bc23a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 219, 69, 0.3);
}

.career-apply-btn:focus {
    background-color: #4bc23a;
    box-shadow: 0 0 0 3px rgba(92, 219, 69, 0.25);
}

/* Responsive design for careers section */
@media (max-width: 768px) {
    .careers-main-title {
        font-size: 36px;
    }

    .careers-subtitle {
        font-size: 16px;
        margin-bottom: 3rem;
    }

    .career-card {
        padding: 2rem;
    }

    .career-title {
        font-size: 24px;
    }

    .careers-section {
        padding: 100px 0 60px;
    }

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

    .hero-description {
        font-size: 16px;
    }
}

/* Clients & Projects Page Styles */
.client-quote-section {
    padding: 80px 0;
    background-color: #000000;
}

.client-image-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 500px;
    background-color: #1a1a1a;
    z-index: 1;
    margin-top: -40px;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.client-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.client-stats {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: space-around;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #5cdb45;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.client-quote-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: -60px;
    margin-top: 40px;
    z-index: 10;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #2a9c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 24px;
    color: #ffffff;
}

.client-quote {
    margin: 0;
    padding: 0;
    border: none;
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.author-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.quote-rating {
    display: flex;
    gap: 4px;
}

.quote-rating i {
    color: #5cdb45;
    font-size: 16px;
}

.quote-divider {
    height: 1px;
    background: linear-gradient(to right, #e0e0e0 0%, #5cdb45 50%, #e0e0e0 100%);
    margin: 2rem 0;
}

.quote-footer {
    margin-top: auto;
}

.quote-footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 1rem;
    text-align: center;
}

.quote-partners {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.quote-partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.3);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.quote-partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(0.5);
}

/* Projects Filter Section */
.projects-filter-section {
    padding: 60px 0 40px;
    background-color: #000000;
}

.filter-header {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.filter-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 16px;
}

.filter-btn:hover {
    background-color: #2a2a2a;
    border-color: #5cdb45;
    color: #5cdb45;
    transform: translateY(-2px);
}

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

.filter-btn.active:hover {
    background-color: #4bc23a;
    color: #000000;
}

/* Project Filter Buttons - Custom Style */
.project-filter-btn {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 5px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-filter-btn i {
    font-size: 14px;
}

.project-filter-btn:hover {
    background-color: #2a2a2a;
    border-color: #5cdb45;
    color: #5cdb45;
    transform: translateY(-2px);
}

.project-filter-btn.active {
    background-color: #5cdb45;
    border-color: #5cdb45;
    color: #000000;
}

.project-filter-btn.active:hover {
    background-color: #4bc23a;
    color: #000000;
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 40px 0 80px;
    background-color: #000000;
}

.project-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(92, 219, 69, 0.2);
    border-color: #5cdb45;
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link-btn {
    width: 50px;
    height: 50px;
    background-color: #5cdb45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link-btn:hover {
    background-color: #4bc23a;
    transform: scale(1.1);
    color: #000000;
}

.project-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.no-projects-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #cccccc;
}

.no-projects-message i {
    font-size: 64px;
    color: #5cdb45;
    margin-bottom: 1.5rem;
}

.no-projects-message h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.no-projects-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #cccccc;
}

/* Responsive design for clients & projects page */
@media (max-width: 768px) {
    .client-quote-section {
        padding: 60px 0;
    }

    .client-image-container {
        height: 350px;
        margin-bottom: 2rem;
        margin-top: 0;
    }

    .client-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 36px;
    }

    .client-quote-card {
        padding: 2rem;
        margin-left: 0;
        margin-top: 0;
    }

    .quote-text {
        font-size: 18px;
    }

    .quote-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .filter-subtitle {
        font-size: 16px;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .filter-btn span {
        display: none;
    }

    .project-image-container {
        height: 180px;
    }

    .project-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .project-image-container {
        height: 160px;
    }

    .project-content {
        padding: 0.75rem;
    }

    .project-title {
        font-size: 12px;
    }
}

/* Notification Stripe - Generic and customizable */
.notification-stripe {
    --stripe-bg-color: #ffd700;
    --stripe-text-color: #000000;
    --stripe-padding-x: 0;
    --stripe-font-weight: 500;

    background-color: var(--stripe-bg-color);
    color: var(--stripe-text-color);
    padding: var(--stripe-padding-y) var(--stripe-padding-x);
    text-align: center;
    width: 100%;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.notification-stripe-content {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--stripe-font-size);
    font-weight: var(--stripe-font-weight);
    margin: 0;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stripe-info-icon {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--stripe-text-color);
    transition: opacity 0.3s ease;
    margin-left: 0.25rem;
}

.stripe-info-icon:hover {
    opacity: 0.8;
}

.stripe-info-icon i {
    font-size: calc(var(--stripe-font-size) + 2px);
}

.stripe-info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: max-content;
}

.stripe-info-icon::before {
    content: '';
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #000000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10001;
}

.stripe-info-icon:hover::after,
.stripe-info-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Responsive design for notification stripe */
@media (max-width: 768px) {
    .notification-stripe {
        --stripe-font-size: 14px;
        --stripe-padding-y: 10px;
    }

    .notification-stripe-content {
        padding: 0 0.75rem;
        gap: 0.4rem;
    }

    .stripe-info-icon::after {
        font-size: 11px;
        padding: 6px 10px;
        white-space: normal;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .notification-stripe {
        --stripe-font-size: 13px;
        --stripe-padding-y: 8px;
    }

    .notification-stripe-content {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }

    .stripe-info-icon::after {
        font-size: 10px;
        padding: 5px 8px;
        max-width: 180px;
    }
}