.clients-section {
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.clients-head {
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

.clients-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-title span {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 60%, #d62828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    margin: 15px auto;
    border-radius: 2px;
}

.clients-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin-bottom: 40px;
}

.client-category {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-type {
    font-size: 24px;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.client-slider {
    display: block !important;
    position: relative;
}

.client-item {
    padding: 10px;
    transition: all 0.3s ease;
    outline: none;
}

.client-item img {
    width: 160%;
    max-width: 130px;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.client-item:hover img {
    transform: scale(1.5);
}

.slick-prev,
.slick-next {
    background: linear-gradient(135deg, #ff6b35, #e63946);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

.slick-prev:hover,
.slick-next:hover {
    background: linear-gradient(135deg, #e63946, #ff6b35);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    color: rgba(255, 255, 255, 0.3);
}

.slick-dots li.slick-active button:before {
    color: #ff6b35;
}

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

    .slick-prev {
        left: 5px;
    }

    .slick-next {
        right: 5px;
    }
}

@media (max-width:768px) {
    .clients-section {
        padding: 50px 10px;
        max-width: 95vw;
    }

    .clients-title {
        font-size: 32px;
    }

    .client-type {
        font-size: 20px;
    }

    .client-item img {
        max-width: 90px;
    }

    .slick-prev,
    .slick-next {
        width: 35px;
        height: 35px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 14px;
    }
}

@media (max-width:480px) {
    .clients-title {
        font-size: 24px;
    }

    .client-type {
        font-size: 18px;
    }

    .client-item img {
        max-width: 70px;
    }

    .slick-prev,
    .slick-next {
        width: 30px;
        height: 30px;
    }

    .clients-section {
        padding: 40px 10px;
        max-width: 95vw;
    }
}

.client-section {
    max-width: 90vw;
    height: auto;
    padding: 50px 25px;
}

.clients-section .container {
    overflow: visible !important;
}

.client-slider {
    display: block;
}

.slick-dots {
    bottom: 20px;
}

#banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#banner img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

@keyframes slideDiagonal {
    0% {
        transform: translate(-150%, -150%) rotate(-8deg);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0) rotate(0deg);
        opacity: 1;
    }
}

.slide-diagonal {
    animation: slideDiagonal 2.5s ease-out forwards;
}

@media (min-width:380px) and (max-width:767px) {
    #banner {
        height: 55vh;
    }

    #banner img {
        width: 100%;
        height: 100%;
    }

    #img2 {
        transform: translate(-50%, -50%) scale(0.65);
        max-width: 75%;
        max-height: 75%;
    }
}

@media (min-width:768px) and (max-width:1023px) {
    #banner {
        height: 65vh;
    }

    #img2 {
        transform: translate(-50%, -50%) scale(0.75);
        max-width: 80%;
        max-height: 80%;
    }
}

@media (min-width:1024px) and (max-width:1319px) {
    #banner {
        height: 85vh;
    }

    #img2 {
        transform: translate(-50%, -50%) scale(0.85);
    }
}

@media (min-width:1320px) {
    #banner {
        height: 100vh;
    }

    #img2 {
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.about-us-section {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 100px;
    background-color: #fff;
}

.about-us-left {
    flex: 1 1 45%;
    max-width: 550px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.about-us-left img {
    width: 90%;
    display: block;
    margin-left: 10%;
}

.about-us-right {
    flex: 1 1 45%;
    max-width: 550px;
    background-color: #f5f5f5;
    padding: 30px 30px 30px 50px;
    position: relative;
    margin-top: 80px;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-us-right h5 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about-us-right h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.about-us-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 30px 0;
}

.about-us-right a {
    display: inline-block;
    background-color: #e60000;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.about-us-right a:hover {
    background-color: #c40000;
}

@media (max-width:1024px) {
    .about-us-section {
        padding: 50px 5%;
    }

    .about-us-left,
    .about-us-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-us-left img {
        margin: auto;
    }

    .about-us-right {
        margin-top: 2%;
        left: 0;
        padding: 40px 30px;
    }

    .about-us-right h2 {
        font-size: 24px;
    }

    .about-us-right p {
        font-size: 14px;
    }
}

@media (max-width:479px) {
    .about-us-section {
        padding: 40px 5%;
    }

    .about-us-right {
        padding: 30px 25px;
    }

    .about-us-right h2 {
        font-size: 20px;
    }

    .about-us-left img {
        margin: auto;
    }
}

.about-grid-section {
    background: linear-gradient(to right, #000 78.5%, #e60000 21.5%);
    background-color: #fff;
    padding: 100px 7%;
}

.about-grid-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.about-text {
    flex: 1 1 45%;
    max-width: 450px;
}

.about-text h5 {
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
}

.about-btn {
    display: inline-block;
    background-color: #e60000;
    color: #fff;
    padding: 12px 35px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background-color: #c40000;
}

.about-grid {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 400px;
    border: 3px solid #fff;
}

.about-grid img {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.about-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width:767px) {
    .about-grid-section {
        padding: 50px 0;
        background: #000;
    }

    .about-grid-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .about-us-left img {
        margin: auto;
    }

    .about-text {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .about-text h5 {
        font-size: 14px;
    }

    .about-text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-btn {
        padding: 10px 28px;
        font-size: 14px;
    }

    .about-grid {
        flex: 1 1 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border: 2px solid #fff;
        order: 2;
    }

    .about-grid img {
        width: 100%;
        height: 150px;
    }
}

.testimonial-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 20px;
    box-sizing: border-box;
}

.testimonial-section-head {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.testimonial-main-title {
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.testimonial-main-title span {
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #d62828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    margin: 0 auto;
    border-radius: 2px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 20px;
    margin: 20px auto;
    padding: 60px 80px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

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

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

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 30px;
    font-style: italic;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

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

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

.user-image {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    object-fit: cover;
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

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

.user-details {
    text-align: center;
}

.username {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.user-role {
    margin: 0;
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-dots {
    display: flex;
    gap: 9px;
    margin-top: 30px;
}

/* .progress-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
} */

.progress-dot:hover {
    background-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.2);
}

.progress-dot.active {
    background: linear-gradient(135deg, #ff6b35, #e63946);
    width: 30px;
    border-radius: 5px;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 53, 0.5);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: #ff6b35;
}

.testimonial-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #e63946);
    color: white;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.testimonial-btn:active {
    transform: translateY(-50%) scale(0.95);
}

#btn-prev {
    left: -25px;
}

#btn-next {
    right: -25px;
}

@media (max-width:1024px) {
    .testimonial-container {
        padding: 50px 60px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    #btn-prev {
        left: 10px;
    }

    #btn-next {
        right: 10px;
    }
}

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

    .testimonial-container {
        width: 95%;
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .user-image {
        height: 70px;
        width: 70px;
    }

    .username {
        font-size: 18px;
    }

    .user-role {
        font-size: 13px;
    }

    .testimonial-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width:480px) {
    .testimonial-main-title {
        font-size: 28px;
    }

    .testimonial-container {
        width: 95%;
        padding: 30px 20px;
        border-radius: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .user {
        gap: 10px;
    }

    .user-image {
        height: 60px;
        width: 60px;
    }

    .username {
        font-size: 16px;
    }

    .user-role {
        font-size: 12px;
    }

    .progress-dots {
        gap: 8px;
        margin-top: 25px;
    }

    .progress-dot {
        width: 8px;
        height: 8px;
    }

    .progress-dot.active {
        width: 24px;
    }

    .testimonial-btn {
        display: none;
    }
}

@media (max-width:360px) {
    .testimonial-container {
        padding: 25px 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .user-image {
        height: 50px;
        width: 50px;
    }
}

.and-events-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffffff 0%, #ffffffff 100%);
    min-height: 100vh;
    padding: 40px 20px;
    margin: 0;
    box-sizing: border-box;
}

.and-events-wrapper *,
.and-events-wrapper *::before,
.and-events-wrapper *::after {
    box-sizing: border-box;
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.link-card {
    background: linear-gradient(135deg, #ffffffff 0%rgba(255, 255, 255, 1)2d 100%);
    backdrop-filter: blur(10px);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.card-logo {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.card-logo img {
    max-width: 70%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.link-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.79);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.link-row:hover {
    text-decoration: none;
    background: rgba(232, 160, 4, 0.54);
    border-left-color: #ff6b35;
    transform: translateX(5px);
}

.link-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
}

.link-content {
    flex: 1;
}

.link-title {
    color: red;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.link-description {
    color: rgba(255, 0, 0, 1);
    font-size: 12px;
}

.link-arrow {
    color: #ff6b35;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-row:hover .link-arrow {
    opacity: 1;
    text-decoration: none;
}

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

.gallery-section {
    margin: 0;
    background: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10vmin;
    overflow: hidden;
}

.gallery-container .gallery-card {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
}

.gallery-container .gallery-card .card__head {
    border-radius: 5px;
    color: black;
    background: #e63946;
    padding: 0.5em;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    transition: all 0.5s ease-in-out;
    min-width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1em;
    white-space: nowrap;
}

.gallery-container .gallery-card:hover {
    flex-grow: 10;
}

.gallery-container .gallery-card:hover img {
    filter: grayscale(0);
}

.gallery-container .gallery-card:hover .card__head {
    text-align: center;
    top: calc(100% - 2em);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    font-size: 2em;
    transform: rotate(0deg) skew(-5deg);
}

.gallery-container .gallery-card img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: all 1s ease-in-out;
    filter: grayscale(100%);
}

.gallery-container .gallery-card:not(:nth-child(5)) {
    margin-right: 1em;
}

.andevents-slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-sizing: border-box;
}

.andevents-slider-container *,
.andevents-slider-container *::before,
.andevents-slider-container *::after {
    box-sizing: border-box;
}

.andevents-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.andevents-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.andevents-slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.andevents-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.andevents-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 40px 20px 30px;
    text-decoration: none;
    display: block;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.andevents-slide-item:hover .andevents-slide-caption {
    transform: translateY(0);
}

.andevents-slide-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.andevents-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.andevents-slider-prev,
.andevents-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
}

.andevents-slider-prev:hover,
.andevents-slider-next:hover {
    background: linear-gradient(135deg, #ff6b35, #e63946);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.andevents-slider-prev:active,
.andevents-slider-next:active {
    transform: scale(0.95);
}

.andevents-prev-icon::before {
    content: '‹';
    color: white;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

.andevents-next-icon::before {
    content: '›';
    color: white;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

.andevents-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    z-index: 20;
}

.andevents-slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
    border: none;
    outline: none;
}




.andevents-slider-dot:hover,
.andevents-slider-dot:focus-visible {
    background: rgba(255, 107, 53, 0.85);
    transform: scale(1.2);
    outline: none;
}

.andevents-slider-dot.active {
    background: #ff4d4d;
    width: 28px;
    height: 10px;
    border-radius: 999px;
    border: none;
    box-shadow: 0 0 12px rgba(255, 77, 77, 0.45);
}

.andevents-slide-item.loading {
    opacity: 0.5;
}

@media (max-width:1024px) {
    .andevents-slider-wrapper {
        height: 500px;
    }

    .andevents-slider-prev,
    .andevents-slider-next {
        width: 50px;
        height: 50px;
    }

    .andevents-prev-icon::before,
    .andevents-next-icon::before {
        font-size: 30px;
    }

    .andevents-slide-text {
        font-size: 20px;
    }
}

@media (max-width:768px) {
    .andevents-slider-wrapper {
        height: 400px;
    }

    .andevents-slider-controls {
        padding: 0 10px;
    }

    .andevents-slider-prev,
    .andevents-slider-next {
        width: 45px;
        height: 45px;
    }

    .andevents-prev-icon::before,
    .andevents-next-icon::before {
        font-size: 26px;
    }

    .andevents-slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .andevents-slider-dot {
        width: 10px;
        height: 10px;
    }

    .andevents-slider-dot.active {
        width: 30px;
    }

    .andevents-slide-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .andevents-slide-caption {
        padding: 30px 15px 20px;
    }
}

@media (max-width:480px) {
    .andevents-slider-wrapper {
        height: 300px;
    }

    .andevents-slider-prev,
    .andevents-slider-next {
        width: 40px;
        height: 40px;
    }

    .andevents-prev-icon::before,
    .andevents-next-icon::before {
        font-size: 22px;
    }

    .andevents-slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .andevents-slider-dot {
        width: 8px;
        height: 8px;
    }

    .andevents-slider-dot.active {
        width: 25px;
    }

    .andevents-slide-text {
        font-size: 16px;
    }

    .andevents-banner img {
        max-width: 95%;
        max-height: 95%;
    }
}

@media (max-width:360px) {
    .andevents-slider-wrapper {
        height: 250px;
    }

    .andevents-slide-text {
        font-size: 14px;
    }
}

@media (max-width:768px) {
    .andevents-slider-wrapper::after {
        content: '⟨ Swipe ⟩';
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        pointer-events: none;
        animation: swipeHint 2s ease-in-out infinite;
    }

    @keyframes swipeHint {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 0.8;
        }
    }
}

.slick-dots {
    display: none !important;
}

.client-slider {
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.client-item {
    min-width: 150px;
    margin: 0 15px;
}

.client-item img {
    max-width: 320px !important;
    max-height: 250px;
    object-fit: contain;
}

.service-links-section {
    padding-bottom: 10px;
    background: #ffffff;
}

.service-links-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-links-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.service-links-header p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.service-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #000;
    border: 2px solid #e10600;
    background: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
}

.service-link:hover {
    background: #e10600;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(225, 6, 0, 0.25);
    text-decoration: none;
}