body {
    font-family: "Playfair Display", serif;
    margin: 0;
    overflow-x: hidden;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 40;
    display: none;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background-color: #1a202c;
    z-index: 50;
    transition: right 0.3s ease-in-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
}

#services-section {
    /* background: linear-gradient(135deg, #3078fb 0%, #0b8423 100%); */
}

.service-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.arrow-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: #ccc;
}

.service-card h4 {
    margin-bottom: 0;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(50px);
}

.service-card::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg,
            rgba(173, 216, 230, 0.4) 0%,
            rgba(255, 105, 180, 0.4) 100%);
    transform: rotate(45deg);
}

.service-card::after {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg,
            rgba(200, 162, 200, 0.4) 0%,
            rgba(138, 43, 226, 0.4) 100%);
    transform: rotate(-30deg);
}

.service-card:nth-child(1)::before {
    top: -40px;
    left: -40px;
}

.service-card:nth-child(1)::after {
    bottom: -30px;
    right: -30px;
}

.service-card:nth-child(2)::before {
    bottom: -40px;
    left: -40px;
}

.service-card:nth-child(2)::after {
    top: -30px;
    right: -30px;
}

.service-card:nth-child(3)::before {
    top: -40px;
    right: -40px;
}

.service-card:nth-child(3)::after {
    bottom: -30px;
    left: -30px;
}

.service-card:nth-child(4)::before {
    bottom: -40px;
    right: -40px;
}

.service-card:nth-child(4)::after {
    top: -30px;
    left: -30px;
}

.team-image-border {
    /* border-radius: 140px !important; */
    height: 200px !important;
    width: 200px !important;
}

.service-card:nth-child(5)::before {
    top: 50%;
    left: -60px;
    transform: translateY(-50%) rotate(20deg);
}

.service-card:nth-child(5)::after {
    bottom: 0%;
    right: 50%;
    transform: translateX(50%) rotate(70deg);
}

.service-card:nth-child(6)::before {
    top: -20px;
    right: 50%;
    transform: translateX(50%) rotate(-10deg);
}

.service-card:nth-child(6)::after {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(40deg);
}

.service-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg,
            rgba(48, 120, 251, 0.2) 0%,
            rgba(11, 132, 35, 0.2) 100%);
    transform: rotate(45deg);
    filter: blur(50px);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.team-tab-button {
    @apply py-2 px-4 rounded-full text-sm font-medium transition-colors duration-300 ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    background-color: transparent;
}

.team-tab-button.active {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.team-tab-button:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.team-member-card {
    @apply bg-gray-800 rounded-lg shadow-lg overflow-hidden;
    position: relative;
}

.team-member-card.chairman-card {
    background-color: rgba(40, 44, 52, 0.8);
    background-image: linear-gradient(145deg,
            rgba(40, 44, 52, 0.8) 0%,
            rgba(20, 22, 26, 0.8) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member-image-wrapper {
    @apply w-full h-48 sm:h-64 overflow-hidden;
}

.team-member-image {
    @apply w-full h-full object-cover object-center;
}

.team-member-overlay {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    border-radius: 0.5rem; */
}

.team-member-overlay-content {
    position: absolute;
    bottom: -30px;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-icons {
    display: flex;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out 0.2s, transform 0.3s ease-out 0.2s;
}

.team-member-card:hover .social-icons {
    opacity: 1;
    transform: translateY(0);
}

.social-icons a {
    @apply text-white mx-3 transition-transform duration-200 hover:scale-125;
}

.social-icons svg {
    @apply w-8 h-8;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out,
        backdrop-filter 0.3s ease-in-out;
}

.sticky-header.scrolled {
    background: linear-gradient(135deg, #3078fb 0%, #0b8423 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials-slider-container {
    overflow: hidden;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card-wrapper {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
    margin-right: 2rem;
}

.testimonial-card-wrapper:last-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .testimonial-card-wrapper {
        width: 100%;
        margin-right: 0;
    }

    .testimonials-slider-track>div {
        margin-right: 1rem;
    }

    .testimonials-slider-track>div:last-child {
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .testimonial-card-wrapper {
        width: calc(50% - 1rem);
        margin-right: 2rem;
    }
}

.swiper-navigation-container {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 2rem !important;
    height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: none !important;
}

.case-card {
    width: 90%;
    background: linear-gradient(135deg, #3078fb 0%, #0b8423 100%);
    padding: 5px;
}

.case-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.case-card-content {
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    height: 11rem !important;
}

.case-card a {
    cursor: pointer;
}

@media (max-width: 769px) {
    .case-card {
        width: 100%;
    }
}


.glass-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.2);
}

.glass-card::before,
.glass-card::after {
    content: '';
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.glass-card::before {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(11, 132, 35, 0.7) 100%);
    top: -50px;
    left: -50px;
}

.glass-card::after {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(48, 120, 251, 0.7) 0%, var(--primary-green) 100%);
    bottom: -40px;
    right: -40px;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.05) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 8s infinite ease-in-out;
}

.animate-pulse-slow-reverse {
    animation: pulse-slow 8s infinite ease-in-out reverse;
}

#hero-section {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-line-number {
    display: flex;
    align-items: center;
    position: relative;
}

.accordion-line-number .accordion-number {
    font-weight: 300;
    font-size: 4rem;
    line-height: 1;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.accordion-line-number::before {
    content: '';
    position: absolute;
    left: -4rem;
    width: 3rem;
    height: 0.1rem;
    background-color: #3b82f6;
    /* Tailwind blue-600 */
}

.accordion-line-number.pink::before {
    background-color: #ec4899;
}

.accordion-line-number.orange::before {
    background-color: #da6c1d;
}

.accordion-line-number.green::before {
    background-color: green;
}


.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-arrow-rotated {
    transform: rotate(180deg);
}

.accordion-panel {
    overflow: hidden;
    transition: max-height 0.35s ease;
    max-height: 0;
}


.industry-solution {
    background: linear-gradient(135deg, #3078fb 0%, #0b8423 100%);
}


.hero-banner {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    background-color: #0d1117;
}

.hero-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(48, 120, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle, rgba(11, 132, 35, 0.1) 0%, transparent 50%);
    animation: move-particles 20s infinite linear;
}

@keyframes move-particles {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes pulse-fade {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.3;
    }
}

/* New design for content sections */
.content-item {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #2d3748;
}

.content-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .content-item {
        grid-template-columns: 1fr 1fr;
    }
}

.content-item:nth-child(even) .content-text {
    order: 2;
}

.content-item:nth-child(even) .content-image {
    order: 1;
}

.content-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.02);
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #3078fb, #0b8423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-list {
    font-style: italic;
    color: #9ca3af;
}

.gradient-text {
    background: linear-gradient(90deg, #3078fb, #0b8423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-container {
    background-color: rgba(22, 27, 34, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(48, 54, 61, 0.3);
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tech-icon-container {
    transition: transform 0.3s ease;
}

.tech-icon-container:hover {
    transform: scale(1.1);
}

.menu-active {
    color: #f1f1f1 !important;
    font-weight: bold !important;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5),
                 0 0 12px rgba(255, 255, 255, 0.3);
}

.accordion-line-number img {
    width: 100px;
    border-radius: 15px;
}

.case-card .image-container {
    background: #fff;
    align-items: center;
    display: flex;
    justify-content: center;
}

.case-card .image-container img {
    width: 60%;
    height: 60%;
}

.tech-icon {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}