Reset default styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;

}

body {
    font-family: Arial, sans-serif;
    font-style: normal;
    background-color: #000;
     overflow-x: hidden;
 
    
}
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .mobile-menu { display: block; }
}

@media (min-width: 769px) {
    .mobile-menu { display: none; }
    .desktop-menu { display: flex; }
}


/* nav */
* {
    box-sizing: border-box; 
}

html, body {
    overflow-x: hidden; 
    max-width: 100%;
    margin: 0;
    padding: 0;
}


.container {
    max-width: 1200px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0 20px; 
}

@media (max-width: 768px) {
    .container {
        max-width: 100%; 
        margin: 0; 
        padding: 0 15px;
    }
    
    .services-grid,
    .section,
    .theme {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px; 
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.header {
    width: 100%;
    max-width: 100%;
    padding: 1% 5%; 
}

@media (max-width: 768px) {
    .header {
        padding: 1% 3%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1% 2%; 
    }
}
.header {
    padding: 1% 5%;
    max-width: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.navbar {
    width: 100%; 
    padding: 15px 0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;  
    width: auto;    
}

.logo span {
    font-size: 18px;
    font-weight: normal;
    color: #62fcff; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    z-index: 2000;
}


        /* Active page styling */
        .nav-link.active {
            background-color: #007bff;
            color: white;
            font-weight: bold;
        }

        .nav-link.active:hover {
            background-color: #0056b3;
        }

        /* Alternative active styles - uncomment to try different looks */
        /*
        .nav-link.active {
            background-color: #28a745;
            border-bottom: 3px solid #fff;
        }
        */

        /*
        .nav-link.active {
            color: #ffd700;
            background-color: #444;
            border-radius: 5px 5px 0 0;
        }
        */

        /* Page Content */
        .page-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .page-description {
            font-size: 18px;
            color: #666;
            text-align: center;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .content-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin: 20px 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
            }
            
            .nav-menu {
                width: 100%;
                margin-left: 0;
            }
            
            .nav-link {
                text-align: center;
                border-top: 1px solid #555;
            }
        }

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: normal;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #62fcff;
}

.nav-links li a.active {
    color: #62fcff;     
    font-weight: bold; 
    border-bottom: 2px solid #62fcff;
    padding-bottom: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 1024px) {
    .header {
        padding: 1% 3%;
    }
    
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1% 4%; 
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-links {
        position: fixed; 
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px; 
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 80px;
        backdrop-filter: blur(10px); 
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
        background-color: rgba(98, 252, 255, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 2001;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1% 3%;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        width: 200px; 
        padding-top: 70px;
    }
    
    .nav-links li a {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (min-width: 1200px) {
    .header {
        padding: 1% 8%; 
    }
    
    .nav-links {
        gap: 30px;
    }
}


.demo-content {
    padding: 60px 5% 40px;
    color: white;
    text-align: center;
    min-height: 100vh;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #62fcff;
}

.demo-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .demo-content {
        padding: 40px 4% 30px;
    }
    
    .demo-content h1 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
}


.theme {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

/* Wave */
.wave-container {
  position: absolute;
  bottom: 0;
  
  left: 0;
  width: 100%;
  height: 350px;
  overflow: hidden;

}

.wave {
  width: 200%;
  height: 150%;
  animation: waveMove 15s linear infinite;
}

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

.theme-text {
  position: relative;
  z-index: 2; 
  color: #fff;
  padding: 20px;
}

.theme-text h1 {
  font-size: 64px;
  font-weight: bold;
  margin: 0;
}

.theme-text p {
  font-size: 22px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .theme-text h1 { font-size: 36px; }
  .theme-text p { font-size: 18px; }
}

@media (max-width: 480px) {
  .theme-text h1 { font-size: 28px; }
  .theme-text p { font-size: 16px; }
}



   
/* services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            align-items: stretch;
        }

        .services-grid .card-title{
            font-size: 20px;
        }

        .service-card .card-description{
            font-family: "Poppins", sans-serif;
            color: #000000;
        }

        .service-card {
            padding: 50px 40px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 160px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

       

        .card-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 30px;
            opacity: 0.8;
        }

      
        .product-engineering {
            background: linear-gradient(135deg, #00FFFF 0%, #89CFF0 100%);
        }

        .web-solutions {
            background: linear-gradient(135deg, #89CFF0 0%, #5f9ebc 100%);
        }

        .tech-experts {
            background: linear-gradient(135deg, #5f9ebc 0%, #bfd3dc 100%);
        }

        .card-icon {
            position: relative;
        }

        .card-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: currentColor;
            opacity: 0.6;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3' y='12' width='4' height='9' rx='1' fill='currentColor'/%3E%3Crect x='10' y='6' width='4' height='15' rx='1' fill='currentColor'/%3E%3Crect x='17' y='3' width='4' height='18' rx='1' fill='currentColor'/%3E%3C/svg%3E") no-repeat center;
            mask-size: contain;
        }

      

/* place */
.section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    min-width: 140px;
}

.btn-group  .btn.primary {
    background: #000000;
    color: #feffff;
    border: 2px solid #62fcff;
}

.btn.primary:hover:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
}
.btn.secondary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #62fcff;
}

.btn.secondary:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
}

/* client*/

        .client {
            flex: 1;
            text-align: center;
            max-width: 500px;
        }

        .client img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .client img:hover {
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .section {
                flex-direction: column;
                padding: 2rem 1.5rem;
                text-align: center;
                gap: 3rem;
            }

            .text-content {
                max-width: 100%;
            }

            .text-content h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .text-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .btn-group {
                justify-content: center;
                gap: 12px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
                min-width: 130px;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 1.5rem 1rem;
                gap: 2rem;
            }

            .text-content h2 {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .text-content p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .btn-group {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 250px;
                padding: 12px 20px;
                font-size: 1rem;
            }

            .client {
                max-width: 100%;
            }
        }

        @media (max-width: 320px) {
            .text-content h2 {
                font-size: 1.5rem;
            }

            .text-content p {
                font-size: 0.9rem;
            }

            .btn {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
        }

        @media (min-width: 1200px) {
            .section {
                padding: 4rem 2rem;
            }

            .text-content h2 {
                font-size: 3rem;
            }

            .text-content p {
                font-size: 1.2rem;
            }
        }



/* work */
        .container {
            margin: 0 auto;
            max-width: 1200px;
        }

        .breadcrumb {
            font-size: 14px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            color: #9a9a9a;
        }

        .breadcrumb::before {
            content: "◦";
            margin-right: 8px;
            color: #f9f9f9;
            margin-bottom: 0;
        }

        .section-title {
            font-size: 2rem;
            text-align: left;
            font-family: "Poppins", sans-serif;
            margin-top: 0;
            font-weight: bold;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .works-wrapper {
            width: 100%;
            position: relative;
        }

        .card-container {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            animation: scrollWorks 25s linear infinite;
            width: max-content;
        }

        .card-container:hover {
            animation-play-state: paused;
        }

        .card {
            width: 280px;
            flex: 0 0 auto;
            border-radius: 12px;
            text-align: center;
            aspect-ratio: 4/3; 
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .card img {
            width: 100%;
            height: 80%;
            object-fit: fill;
            border-radius: 12px;
            transition: transform 0.3s ease;
            display: block;
        }

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

        .card::after {
            content: attr(data-name);
            position: absolute;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
        }

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

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .card {
                width: 220px;
                aspect-ratio: 4/3; 
            }

            .card-container {
                gap: 15px;
                animation-duration: 20s;
            }

            .breadcrumb {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .card {
                width: 280px;
                aspect-ratio: 3/4; 
            }

            .card-container {
                gap: 12px;
                animation-duration: 18s;
                padding: 15px 0;
            }

            .container {
                padding: 0 10px;
            }
        }

        @media (max-width: 320px) {
            .section-title {
                font-size: 1.1rem;
            }

            .card {
                width: 150px;
                aspect-ratio: 3/4; 
            }

            .card-container {
                gap: 10px;
                animation-duration: 15s;
            }
        }

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.3;
}


.section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  background-color: #000000;
  gap: 50px; 
  flex-wrap: wrap; 
  font-family: 'Inter', sans-serif;
}

.text-content {
  flex: 1 1 400px;
}

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: right;
  color: #ffffff;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: right;
  
  color: #ffffff;
}



/* news */
 .news-section {
            padding: 60px 40px;
            background-color: #000000;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 20px;
        }

        .breadcrumb {
            font-size: 0.9rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 40px;
            font-family: 'Poppins', sans-serif;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            height: 600px;
        }

        .news-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: #000000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-image {
            width: 100%;
            height: 70%;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .news-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .card-content {
            padding: 30px;
            color: white;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-title {
            font-size: 12px;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .card-description {
            font-size: 1rem;
            color: #cccccc;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .read-more {
            color: #62fcff;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #ffffff;
        }

        .read-more::after {
            content: '→';
            font-size: 1.2em;
        }

        
        .news-card.large {
            grid-row: span 2;
        }

        .news-card.large .card-title {
            font-size: 2.2rem;
        }

        .news-card.large .card-description {
            font-size: 1.1rem;
        }

        .news-card.medium .card-title {
            font-size: 1.5rem;
        }

        .news-card.medium .card-description {
            font-size: 0.95rem;
        }

        .news-card.small .card-content {
            padding: 20px;
        }

        .news-card.small .card-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .news-card.small .card-description {
            font-size: 0.9rem;
        }

        .news-card.small .card-image {
            height: 60%;
        }

      
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto auto;
                height: auto;
            }

            .news-card.large {
                grid-row: span 1;
                grid-column: span 2;
            }

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

        @media (max-width: 768px) {
            .news-section {
                padding: 40px 20px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .news-card.large {
                grid-column: span 1;
            }

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

            .card-content {
                padding: 20px;
            }

            .card-title {
                font-size: 1.5rem !important;
            }
        }

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

            .card-title {
                font-size: 1.3rem !important;
            }

            .card-description {
                font-size: 0.9rem !important;
            }
        }


        /* story  */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
        }

       

        .breadcrumb {
            font-size: 14px;
            color: #9a9a9a;
            display: flex;
            align-items: center;
        }

        .breadcrumb::before {
            content: "◦";
            margin-right: 8px;
            color: #f9f9f9;
        }

        .title {
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 700;
            font-family: sans-serif;
            color: #fffefe;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-template-rows: repeat(2, 350px);
            gap: 20px;
            max-width: 1200px;
        }

        .story-card {
            border-radius: 16px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .story-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .story-card.large {
            grid-row: span 2;
        }

        .story-card.compello {
            background: linear-gradient(135deg, #000000 0%, #000000 100%);
            grid-row: span 2;
        }

        .story-card.blomqvist {
            background: linear-gradient(135deg, #000000 0%, #000000 100%);
        }

        .story-card.vehicle {
            background: linear-gradient(135deg, #000000 0%, #000000 100%);
        }

        .story-card.forskerforbundet {
            background: linear-gradient(135deg, #000000 0%, #000000 100%);
            grid-row: span 2;
        }

         .story-card.forskerforbundetl {
            background: linear-gradient(135deg, #000000 100% 0%, #000000 100%);
            grid-row: span 2;
            color: #fefdfd;
        }

        .story-card img {
            position: absolute;
            top: 0;
            right: 0;
            width: 90%;
            height: 50%;
            object-fit: cover;
            border-radius: 12px;
            margin: 20px;
        }

        .story-card.blomqvist img,
        .story-card.vehicle img {
            width: 100%;
            height: 50%;
            top: 0;
            right: 0;
            margin: 0;
            border-radius: 0 0 0 16px;
        }

        .story-title {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
            font-family: sans-serif;
            line-height: 1.2;
            margin-bottom: 16px;
            z-index: 2;
            position: relative;
        }

        .story-card.compello .story-title {
            color: #ffffff;
        }

        .story-card.blomqvist .story-title,
        .story-card.vehicle .story-title,
        .story-card.forskerforbundet .story-title {
            color: #ffffff;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
            z-index: 1;
        }

        .story-content {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .container {
                padding: 40px 20px;
            }

            .stories-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 300px);
                gap: 16px;
            }

            .story-card.large {
                grid-row: span 1;
            }

            .story-card {
                padding: 30px;
            }

            .title {
                font-size: 48px;
     
            }
        }

       

   
/* client */

        .clients-section {
            overflow: hidden;
            padding: 10px 20px;
        }

        .container {
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 14px;
            color: #9a9a9a;
            display: flex;
            align-items: center;
        }

        .breadcrumb::before {
            content: "◦";
            margin-right: 8px;
            color: #f9f9f9;
        }

        .section-title {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .clients-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .clients-row {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            animation: scrollClients 20s linear infinite;
            width: max-content;
        }

        .client-logo {
            flex: 0 0 auto;
            width: 150px; 
            min-width: 80px;
            aspect-ratio: 1 / 1;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px;
        }

        .clients-row .client-logo:nth-child(1) { background-color: #fffdfd; }
        .clients-row .client-logo:nth-child(2) { background-color: #383838; }
        .clients-row .client-logo:nth-child(3) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(4) { background-color: #383838; }
        .clients-row .client-logo:nth-child(5) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(6) { background-color: #383838; }
        .clients-row .client-logo:nth-child(7) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(8) { background-color: #383838; }
        .clients-row .client-logo:nth-child(9) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(10) { background-color: #383838; }

        .clients-row .client-logo:nth-child(11) { background-color: #fffdfd; }
        .clients-row .client-logo:nth-child(12) { background-color: #383838; }
        .clients-row .client-logo:nth-child(13) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(14) { background-color: #383838; }
        .clients-row .client-logo:nth-child(15) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(16) { background-color: #383838; }
        .clients-row .client-logo:nth-child(17) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(18) { background-color: #383838; }
        .clients-row .client-logo:nth-child(19) { background-color: #ffffff; }
        .clients-row .client-logo:nth-child(20) { background-color: #383838; }

        .clients-row .client-logo:nth-child(n+21) { background-color: inherit; }

        .client-logo img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .client-logo::after {
            content: attr(data-name);
            color: #666;
            font-size: 12px;
            text-align: center;
            font-weight: bold;
        }

        .client-logo:nth-child(even)::after {
            color: #ccc;
        }

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

        @media (max-width: 768px) {
            .client-logo {
                width: 120px;
                min-width: 60px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .clients-row {
                animation-duration: 12s;
            }
        }

        @media (max-width: 480px) {
            .client-logo {
                width: 100px;
                min-width: 50px;
            }
            
            .section-title {
                font-size: 1.2rem;
            }
            
            .clients-row {
                gap: 8px;
                animation-duration: 10s;
            }
        }

        @media (max-width: 320px) {
            .client-logo {
                width: 80px;
                min-width: 40px;
            }
            
            .clients-row {
                gap: 5px;
                animation-duration: 8s;
            }
        }



        /* careers */
.careers-section {
            padding: 80px 40px;
            background-color: #000000;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 1vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-header {
            margin-bottom: 30px;
        }

        .breadcrumb {
            font-size: 0.9rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
            position: relative;
            padding-left: 15px;
        }

        .breadcrumb::before {
            content: '◊';
            position: absolute;
            left: 0;
            color: #888;
        }

        .careers-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0;
            font-family: 'Poppins', sans-serif;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .careers-subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            margin: 30px 0 50px 0;
            font-weight: 400;
            line-height: 1.5;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .btn {
            padding: 15px 35px;
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            border: none;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn.primary {
            background: #ffffff;
            color: #000000;
            border: 2px solid #ffffff;
        }

        .btn.primary:hover {
            background: transparent;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 1024px) {
            .careers-section {
                padding: 60px 30px;
            }

            .careers-title {
                font-size: 3.5rem;
            }

            .careers-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .careers-section {
                padding: 50px 20px;
                text-align: center;
            }

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

            .careers-subtitle {
                font-size: 1rem;
                margin: 25px 0 40px 0;
            }

            .btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .careers-section {
                padding: 40px 16px;
            }

            .careers-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .careers-subtitle {
                font-size: 0.95rem;
            }

            .btn {
                padding: 12px 25px;
                font-size: 0.95rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
            }
        }



        /* chatbot */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .chatbot-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4fc3f9 0%, #62fcff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            border: none;
        }
        
        .chatbot-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        }
        
        .chatbot-btn .bot-icon {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
            position: relative;
        }
        
        .chatbot-btn .bot-icon::before {
            content: '🤖';
            position: absolute;
            font-size: 20px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
            50% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6); }
            100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
        }
        
        .chat-widget {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 450px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .chat-widget.active {
            display: flex;
        }
        
        .chat-header {
            background: linear-gradient(135deg, #00FFFF 0%, #00d4ff 100%);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .chat-header h3 {
            margin: 0;
            font-size: 18px;
        }
        
        .chat-header p {
            margin: 5px 0 0;
            font-size: 12px;
            opacity: 0.9;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .chat-body {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            overflow-y: auto;
        }
        
        .message {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .message.bot {
            flex-direction: row;
        }
        
        .message.user {
            flex-direction: row-reverse;
        }
        
        .avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00d4ff 0%, #00FFFF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .avatar.user {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .message-content {
            background: #f1f3f5;
            padding: 12px 16px;
            border-radius: 18px;
            max-width: 80%;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .message.bot .message-content {
            background: #e3f2fd;
            border-bottom-left-radius: 4px;
        }
        
        .message.user .message-content {
            background: #667eea;
            color: white;
            border-bottom-right-radius: 4px;
        }
        
        .quick-actions {
            padding: 0 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .action-btn {
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 25px;
            background: white;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .action-btn:hover {
            background: #f8f9fa;
            border-color: #00FFFF;
        }
        
        .whatsapp-btn {
            background: #25D366;
            color: white;
            border-color: #25D366;
        }
        
        .whatsapp-btn:hover {
            background: #1db954;
            border-color: #1db954;
        }

        .chat-input {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .chat-input input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 10px 15px;
            font-size: 14px;
            outline: none;
        }

        .chat-input input:focus {
            border-color: #00FFFF;
        }

        .send-btn {
            background: linear-gradient(135deg, #00FFFF 0%, #00d4ff 100%);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .send-btn:hover {
            transform: scale(1.1);
        }
        
        
        @media (max-width: 768px) {
            .chat-widget {
                width: 320px;
                height: 420px;
            }
            
            .chatbot-btn {
                width: 55px;
                height: 55px;
            }
            
            .chatbot-btn .bot-icon::before {
                font-size: 18px;
            }
        }
        
        @media (max-width: 600px) {
            .chatbot-container {
                bottom: 15px;
                right: 15px;
            }
            
            .chat-widget {
                width: 300px;
                height: 400px;
                bottom: 70px;
            }
            
            .chat-header {
                padding: 15px;
            }
            
            .chat-body {
                padding: 15px;
                gap: 12px;
            }
            
            .quick-actions {
                padding: 0 15px 15px;
                gap: 8px;
            }
            
            .chat-input {
                padding: 12px 15px;
            }
        }
        
        /* Mobile phones */
        @media (max-width: 480px) {
            .chatbot-container {
                bottom: 20px;
                right: 20px;
                left: 20px;
                display: flex;
                justify-content: flex-end;
            }
            
            .chat-widget {
                width: calc(100vw - 40px);
                height: calc(100vh - 120px);
                max-height: 500px;
                right: 0;
                left: 0;
                bottom: 70px;
                position: fixed;
                border-radius: 20px 20px 0 0;
            }
            
            .chatbot-btn {
                width: 50px;
                height: 50px;
            }
            
            .chatbot-btn .bot-icon {
                width: 25px;
                height: 25px;
            }
            
            .chatbot-btn .bot-icon::before {
                font-size: 16px;
            }
            
            .chat-header h3 {
                font-size: 16px;
            }
            
            .message-content {
                max-width: 85%;
                font-size: 13px;
            }
            
            .avatar {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
            
            .action-btn {
                font-size: 13px;
                padding: 10px 14px;
            }
        }
        
        /* Very small screens */
        @media (max-width: 360px) {
            .chat-widget {
                width: calc(100vw - 20px);
                right: 10px;
                left: 10px;
            }
            
            .chatbot-container {
                right: 10px;
                left: 10px;
            }
            
            .chat-header {
                padding: 12px;
            }
            
            .chat-body {
                padding: 12px;
                gap: 10px;
            }
            
            .quick-actions {
                padding: 0 12px 12px;
            }
            
            .chat-input {
                padding: 10px 12px;
            }
            
            .message-content {
                font-size: 12px;
                padding: 10px 12px;
            }
        }
        
        /* Landscape orientation adjustments for mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .chat-widget {
                height: calc(100vh - 100px);
                max-height: 350px;
            }
        }
        
        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .chatbot-btn {
                box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            }
            
            .chat-widget {
                box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            }
        }

        .responsive-info {
            position: fixed;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 10px;
            border-radius: 10px;
            font-size: 12px;
            z-index: 999;
        }


       
 /* Footer Section */
        .footer {
            background-color: rgb(0, 0, 0);
            color: #ccc;
            padding: 80px 20px 40px;
            font-family: 'Inter', sans-serif;
            width: 100%;
            box-sizing:border-box;
        }

        .footer-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 200px repeat(3, 1fr); /* Fixed width for logo */
            gap: 80px;
            margin-bottom: 40px;
            align-items: start;
        }

        /* Footer logo */
        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            width: 150px;
            height: auto;
        }

        /* Placeholder for missing logo */
        .footer-logo-placeholder {
            width: 150px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }
        

        /* Columns */
        .footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

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

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

        .footer-links a {
 color: #ffffff;            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #0099ff;
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid #fffdfd;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }

        /* Social links */
        .footer-social a {
color: #0099ff;            text-decoration: none;
            margin-left: 10px;
        }
/* 
        .footer-social a:hover {
            color: #fff;
        } */

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .footer-logo {
                grid-column: 1 / -1;
                margin-bottom: 20px;
            }
            /* Footer Logo Image */
.footer-logo img {
  width: 150px;     /* adjust width as needed */
  height: auto;     /* maintain aspect ratio */
  display: block;
}

        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-container {
                padding: 0 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

         /* Demo content to show footer positioning */
        .footer-container {
            padding: 50px 20px;
            text-align: left;
            background: rgb(0, 0, 0);
            margin-bottom: 50px;
        }