:root {
    --primary-color: #0066cc;
    --secondary-color: #001f3f;
    --accent-color: #00c4cc;
    --text-color: #333333;
    --light-bg: #f5f8fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation Styles */
.main-nav {
    position: fixed;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    gap: 5px;
    cursor: pointer;
    background-color: #001f3f;
    cursor: pointer;
}


.mobile-menu-toggle span{
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Responsiveness for navbar menu */
@media (max-width:1024px) {
    .nav-links{
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;

    }

    .mobile-menu-toggle{
        display: flex;
    }

    .nav-links.active{
        display: flex;
    }

    .nav-links a{
        margin: 10px 0;
    }
    
}


@media (min-width:1024px) {
    .nav-links{
        display: flex;
    }

    .mobile-menu-toggle{
        display: none;
    }
    
}

/* Hero Section Styles */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    line-height: 1.8;
}

/* Style for the hero tagline */
.hero p strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* CTA Buttons */
.cta-button, .primary-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover, .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 196, 204, 0.3);
}

.secondary-cta {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 1rem;
    transition: background 0.3s ease;
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
}



.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-cta {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: auto;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
}

.case-studies-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    justify-items: center;
}

.case-study-card {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-study-image {
    height: 180px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.case-study-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var (--secondary-color);
    line-height: 1.4;
    min-height: 2.8em;
}

.case-study-content p {
    margin-bottom: 1.5rem;
    flex: 1;
}

.case-study-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease;
}

.case-study-link:hover {
    transform: translateX(5px);
}

.toggle-sections-container {
    position: relative;
    height: 650px;
    padding: 40px 0;
    background: var(--light-bg);
    margin-top: 40px;
} 

/* Industries Section */
.industries {
    padding: 60px 0;
    background: var(--light-bg);
    display: block; /* Ensure the section is displayed */
    visibility: visible; /* Ensure the section is visible */
    opacity: 1; /* Ensure the section is fully opaque */
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.industry-card {
    background: var(--white);
    padding: 0.6rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.industry-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--secondary-color);
}

.industry-card p {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* changes for industries */
/* .row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
} */

.first-row .domain-card{
    flex: 1 1 48%;
}

.second-row .domain-card{
    flex: 1 1 30%;
}

/* @media (max-width:767px) {
.toggle-sections-container{
    height: 1100px;
}
    .industries{
        height: 900px;
    }
   .row{
    display: flex;
    flex-direction: column;
   }
} */

@media (min-width:768px) and (max-width:1024px) {
   .domain-card{
    flex: 1 1 calc(50% - 20px);
   }

}

@media (min-width:1025px) {
    .domain-card{
        flex: 1 1 calc(33.33% - 20px);
    }
}
/* Tech Stack Section */


/* Add specific adjustments for certain logos */
.tech-item img[alt="Python"],
.tech-item img[alt="TensorFlow"],
.tech-item img[alt="PyTorch"] {
    max-height: 35px;
}

.tech-item img[alt^="Apache"],
.tech-item img[alt="PostgreSQL"],
.tech-item img[alt="MongoDB"],
.tech-item img[alt="Snowflake"] {
    max-width: 110px;
    max-height: 35px;
}

.tech-item img[alt="Jenkins"],
.tech-item img[alt="Terraform"],
.tech-item img[alt="GitHub"],
.tech-item img[alt="Databricks"] {
    max-width: 110px;
    max-height: 35px;
} 

/* Add specific adjustments for logos that need different blend modes */
.tech-item img[alt="GitHub"],
.tech-item img[alt="GitLab"],
.tech-item img[alt="Docker"] {
    mix-blend-mode: multiply;
} 

.hero {
    position: relative;
    overflow: hidden;
}

.pipeline-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s infinite linear;
}

.chart-line {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
} 

/* Company Logo Styles */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
} 

/* Service-specific icon colors */
.service-card:nth-child(5) .service-icon {
    color: #2c5282;  /* Darker blue for warehouse */
}

.service-card:nth-child(6) .service-icon {
    color: #38a169;  /* Green for migration */
}

.service-card:nth-child(7) .service-icon {
    color: #805ad5;  /* Purple for AI */
}

.service-card:nth-child(8) .service-icon {
    color: #e53e3e;  /* Red for advertising */
}

/* Adjust grid for better fit with 8 cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
} 

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0 0 20px;
}

/* Footer Contact Form */
.footer-contact {
    background: var(--secondary-color);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-title {
    color: var(--white);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer-grid {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item span {
    flex: 1;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
}








/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section:last-child {
        order: -1;  /* Move contact form to top on mobile */
    }

    .contact-info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }
} 

/* Contact Section Styles */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 196, 204, 0.3);
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* Footer Contact Form Styles */
.footer-contact-form {
    margin-top: 1rem;
    width: 100%;
}

.form-row {
    margin-bottom: 0.8rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.footer-submit-btn {
    width: 100%;
    padding: 0.6rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-submit-btn .btn-text,
.footer-submit-btn .btn-loading,
.footer-submit-btn .btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-submit-btn .btn-loading,
.footer-submit-btn .btn-success {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.footer-submit-btn.loading .btn-text {
    opacity: 0;
}

.footer-submit-btn.loading .btn-loading {
    opacity: 1;
}

.footer-submit-btn.success {
    background: #38a169;  /* Green color for success */
}

.footer-submit-btn.success .btn-text {
    opacity: 0;
}

.footer-submit-btn.success .btn-success {
    opacity: 1;
}

@keyframes spin {
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.footer-submit-btn:hover {
    background: var(--accent-color);
    opacity: 0.9;
    transform: translateY(-2px);
} 

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        order: -1;
    }
} 

/* Adjust contact form width */
.footer-section:last-child {
    max-width: 400px;
    margin-left: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
} 

/* Tech Stack Section */
.tech-item {
    transition: transform 0.3s ease;
}

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

/* Tech stack continuous horizontal scroll */
.slider-track {
    animation: slide 40s linear infinite;
}

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

.digital-rain, .neural-network, .data-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
} 

/* Add a container to hold both sections */


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: 1;
}

#dataCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 2;
} 

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: 1;
} 

/* Add responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero p strong {
        font-size: 1.3rem;
    }
} 

.animated-text {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.text-line {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 0.5rem;
    text-align: center;
}

.text-line strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animation classes */
.text-line.animate {
    animation: revealText 0.8s ease forwards;
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-line {
        font-size: 1.1rem;
    }
    
    .text-line strong {
        font-size: 1.3rem;
    }
} 

/* Add media queries for domain cards */
@media (max-width: 1200px) {
    .domains-horizontal {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .domains-horizontal {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .domains-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .domain-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .domains-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .domain-card {
        padding: 1rem;
    }
}

/* Tech Stack Slider Styles */
.tech-stack-slider {
    padding: 40px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: slide 40s linear infinite;
}

.tech-item {
    flex: 0 0 auto;
    width: 150px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-item img {
    max-width: 100px; /* Set a maximum width for the logos */
    max-height: 50px; /* Set a maximum height for the logos */
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

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

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