/* scroll tech homepage */
.tech-stack-section {
    /* background-color: #f7f8f9; */
    font-family: 'Segoe UI', sans-serif;
    padding: 100px 15px;
    text-align: center;
}

.tech-stack-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.tech-stack-section__title span::after {
    content: '.';
    color: var(--primary-bg);
    font-weight: 800;
}

.tech-stack-section__subtitle {
    color: #5b6570;
    font-size: 1.25rem;
    margin-top: 10px;
}

.tech-scroller {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 5px;
}

.tech-scroller__track {
    display: inline-block;
    white-space: nowrap;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c0c3c9;
    animation: scroll-left 50s linear infinite;
}

.tech-scroller--reverse .tech-scroller__track {
    animation: scroll-right 50s linear infinite;
}

.tech-scroller__item {
    display: inline-block;
    margin: 0 1.5rem;
    font-size: 3rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.tech-scroller__item:hover {
    color: var(--primary-bg);
    opacity: 1;
}

.tech-scroller:hover .tech-scroller__track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.tech-stack-section__link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    transition: 0.3s ease;
}

.tech-stack-section__link:hover {
    color: var(--primary-bg);
    border-color: var(--primary-bg);
}

/* Awards & Certifications CSS */
.awards-section {
    padding: 5rem 0;
}

.awards-heading {
    font-weight: bold;
    font-size: 2rem;
}

.awards-subheading {
    color: #555;
    margin-bottom: 2.5rem;
}

.award-card {
    border: 1px solid #eee;
    text-align: center;
    padding: 1.875rem 0.9375rem;
    height: 100%;
    background-color: var(--white-text);
    position: relative;
}

.award-card img {
    max-height: 4.375rem;
    margin-bottom: 0.9375rem;
    width: auto;
}

.award-title {
    font-size: 0.875rem;
    margin-top: 0.625rem;
}

/* Desktop-only dot indicator */
@media (min-width: 768px) {
    .award-card::after {
        content: "";
        width: 0.75rem;
        height: 0.75rem;
        border-radius: 50%;
        z-index: 9;
        border: 2px solid #fff;
        background-color: #1b232e;
        position: absolute;
        right: -0.375rem;
        bottom: -0.375rem;
    }
}

/* Heor Banner Ratings */
.rating-stars i {
    color: var(--text-rating);
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-label {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Engage CSS */
.bg-card___texture-01 {
    background-image: url('../img/engage-card-1.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-card___texture-02 {
    background-image: url('../img/engage-card-2.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-card___texture-03 {
    background-image: url('../img/engage-card-3.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}









.devson__contactus-main-form {
    top: 70px;
}

.devson-hero-section {
    background-color: var(--white-text);
    padding: 6rem 1rem;
    text-align: center;
}

.devson-hero-section h1 {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--black-text);
}

.devson-hero-section p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--black-text);
}

.devson-hero-section p strong {
    font-weight: 600;
    color: var(--black-text);
}

.devson-hero-buttons {
    margin-top: 2.5rem;
}

.devson-hero-buttons .btn-dark {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.devson-hero-buttons .btn-outline-secondary {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: var(--black-text);
    border: 2px solid #ddd;
    background: var(--white-text);
}

.devson-hero-buttons .btn-outline-secondary:hover {
    background: var(--secondary);
}