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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Service Card */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

/* Experience & Leadership Cards */
.exp-card,
.leadership-card {
    transition: all 0.3s ease;
}

/* Project Card */
.project-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Testimonial Card */
.testimonial-card {
    transition: all 0.3s ease;
}

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

/* Skill Card */
.skill-card {
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateX(4px);
}

/* Team Card */
.team-card {
    transition: all 0.2s ease;
}

.team-card:hover {
    background: #f8fafc;
    transform: translateX(4px);
}

/* Social Icon */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Animated Contact Button */
.animated-contact-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Contact Section Animated Background - Lightweight */
.animated-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    z-index: 0;
}

.animated-contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: pulseLight 4s ease-in-out infinite;
}

.animated-contact-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulseLight 4s ease-in-out infinite reverse;
}

@keyframes pulseLight {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Flag Animated Section */
.flag-wave {
    position: relative;
    overflow: hidden;
}

.flag-wave::before {
    content: "🚀 🌾 💡 ⚡ 🔥";
    position: absolute;
    font-size: 120px;
    opacity: 0.03;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    animation: slideFlags 20s linear infinite;
    pointer-events: none;
}

@keyframes slideFlags {
    0% {
        transform: translateX(-20%);
    }

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

.flag-icon {
    animation: bounceGlobe 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes bounceGlobe {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Tags */
.tag {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    border-radius: 9999px;
    padding: 2px 8px;
    font-size: 10px;
}

.tag:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

/* Custom Scrollbar - Global */
.custom-scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Blog Scroll Container - Scrollbar only shows when content overflows */
.blog-scroll-container {
    max-height: 400px;
    overflow-y: auto;
}

/* Hide scrollbar when not needed (but keep functionality) */
.blog-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

/* For Webkit browsers - scrollbar only visible on hover or when scrolling */
.blog-scroll-container::-webkit-scrollbar {
    width: 4px;
    background: transparent;
}

.blog-scroll-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.blog-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-scroll-container:hover::-webkit-scrollbar-thumb,
.blog-scroll-container:active::-webkit-scrollbar-thumb {
    background: #94a3b8;
    opacity: 1;
}

/* Firefox scrollbar styling */
.blog-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

/* Custom Scrollbar for other elements */
.custom-scroll::-webkit-scrollbar {
    width: 3px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Line Clamp Utilities */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Alpine.js Cloak */
[x-cloak] {
    display: none !important;
}

/* Current Badge Animation */
@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

.animate-pulse {
    animation: pulse-green 2s ease-in-out infinite;
}

/* Carousel Image Transitions */
.carousel-image {
    transition: opacity 0.5s ease-in-out;
}

/* Carousel Dot Indicator Animation */
.carousel-dot {
    transition: all 0.3s ease;
}

/* Hover effect on project card */
.project-card:hover .carousel-dot-active {
    transform: scale(1.1);
}

/* Print Styles */
@media print {

    .animated-contact-btn,
    .animated-contact-bg,
    .carousel-dot {
        display: none;
    }

    body {
        background: white;
    }
}

/* Responsive */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}

/* Focus Styles */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 8px;
}

/* Carousel container */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Image fade transition */
.image-fade-enter-active,
.image-fade-leave-active {
    transition: opacity 0.5s ease;
}

.image-fade-enter,
.image-fade-leave-to {
    opacity: 0;
}

/* Modal styles */
.modal-open {
    overflow: hidden;
}

/* Blog card hover effects */
.blog-card {
    transition: all 0.3s ease;
}

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

/* Placeholder image styles */
.placeholder-img {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Loading spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Truncate text */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== CLIENT LOGO CAROUSEL STYLES ========== */
.clients-section {
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    animation: marqueeScroll 30s linear infinite;
}

/* Continuous smooth scroll - no restart visible */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

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

/* Pause on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Individual logo styling */
.client-logo-item {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.client-logo-item .grayscale {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo-item:hover .grayscale {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Logo container styling */
.client-logo-item>div {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-track {
        gap: 1.5rem;
    }
}

/* Fade edges for smooth effect */
.clients-section .relative {
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* ========== TECH LOGO CAROUSEL STYLES ========== */
.tech-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tech-marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    animation: techMarqueeScroll 25s linear infinite;
}

/* Continuous smooth scroll */
@keyframes techMarqueeScroll {
    0% {
        transform: translateX(0);
    }

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

/* Pause on hover */
.tech-marquee-container:hover .tech-marquee-track {
    animation-play-state: paused;
}

/* Tech logo styling */
.tech-logo-item {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-logo-item .grayscale {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.tech-logo-item:hover .grayscale {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-marquee-track {
        gap: 1.5rem;
    }
}

/* Barcode modal animation */
.barcode-modal {
    animation: barcodeFadeIn 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes barcodeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image icon styling */
.social-icon img {
    filter: none;
}

/* For contact section white images */
.bg-white\/20 img {
    filter: brightness(0) invert(1);
}

/* ========== PREMIUM CONTACT SECTION - NAVY BLUE ========== */

#contact {
    position: relative;
    isolation: isolate;
    min-height: 260px;
}

/* ===== NAVY BLUE GRADIENT BACKGROUND - STATIC ===== */
.contact-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 25%, #14275a 50%, #1a3a7a 75%, #1D4ED8 100%);
    z-index: 0;
    overflow: hidden;
}

/* Animated Gradient Orbs - Navy Theme */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.5), rgba(37, 99, 235, 0.2));
    animation-duration: 25s;
}

.orb-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), rgba(29, 78, 216, 0.2));
    animation-duration: 30s;
    animation-delay: 3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25), rgba(29, 78, 216, 0.1));
    animation-duration: 35s;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(25px, -20px) scale(1.2) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 25px) scale(0.8) rotate(240deg);
    }

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

/* ===== FULL SECTION BACKGROUND ICONS - WITH BLUR ===== */
.bg-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-icon {
    position: absolute;
    font-size: 2.2rem;
    animation: floatBottomToTop 25s ease-in-out infinite;
    pointer-events: none;
    filter: blur(4px) drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
    opacity: 0.9;
}

.bg-icon i {
    display: block;
    transition: transform 0.3s ease;
}

@keyframes floatBottomToTop {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.3);
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    25% {
        transform: translateY(50vh) rotate(90deg) scale(1.2);
        opacity: 0.9;
    }

    50% {
        transform: translateY(20vh) rotate(180deg) scale(0.8);
        opacity: 1;
    }

    75% {
        transform: translateY(-10vh) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }

    95% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* 15 Icons with Blur Effect - Very Light Colors */
.bg-icon-1 {
    left: 3%;
    animation-duration: 28s;
    animation-delay: 0s;
    font-size: 3.2rem;
    color: #bfdbfe;
    text-shadow: 0 0 60px rgba(191, 219, 254, 0.3), 0 0 120px rgba(191, 219, 254, 0.15);
}

.bg-icon-2 {
    left: 10%;
    animation-duration: 32s;
    animation-delay: 3s;
    font-size: 2.6rem;
    color: #fbcfe8;
    text-shadow: 0 0 60px rgba(251, 207, 232, 0.3), 0 0 120px rgba(251, 207, 232, 0.15);
}

.bg-icon-3 {
    left: 17%;
    animation-duration: 26s;
    animation-delay: 5s;
    font-size: 3.6rem;
    color: #bfdbfe;
    text-shadow: 0 0 60px rgba(191, 219, 254, 0.3), 0 0 120px rgba(191, 219, 254, 0.15);
}

.bg-icon-4 {
    left: 24%;
    animation-duration: 34s;
    animation-delay: 2s;
    font-size: 2.8rem;
    color: #ddd6fe;
    text-shadow: 0 0 60px rgba(221, 214, 254, 0.3), 0 0 120px rgba(221, 214, 254, 0.15);
}

.bg-icon-5 {
    left: 31%;
    animation-duration: 30s;
    animation-delay: 7s;
    font-size: 3rem;
    color: #fde68a;
    text-shadow: 0 0 60px rgba(253, 230, 138, 0.3), 0 0 120px rgba(253, 230, 138, 0.15);
}

.bg-icon-6 {
    left: 38%;
    animation-duration: 27s;
    animation-delay: 4s;
    font-size: 3.4rem;
    color: #a7f3d0;
    text-shadow: 0 0 60px rgba(167, 243, 208, 0.3), 0 0 120px rgba(167, 243, 208, 0.15);
}

.bg-icon-7 {
    left: 45%;
    animation-duration: 33s;
    animation-delay: 1s;
    font-size: 2.6rem;
    color: #fbcfe8;
    text-shadow: 0 0 60px rgba(251, 207, 232, 0.3), 0 0 120px rgba(251, 207, 232, 0.15);
}

.bg-icon-8 {
    left: 52%;
    animation-duration: 29s;
    animation-delay: 6s;
    font-size: 3.1rem;
    color: #bfdbfe;
    text-shadow: 0 0 60px rgba(191, 219, 254, 0.3), 0 0 120px rgba(191, 219, 254, 0.15);
}

.bg-icon-9 {
    left: 59%;
    animation-duration: 31s;
    animation-delay: 8s;
    font-size: 3.4rem;
    color: #ddd6fe;
    text-shadow: 0 0 60px rgba(221, 214, 254, 0.3), 0 0 120px rgba(221, 214, 254, 0.15);
}

.bg-icon-10 {
    left: 66%;
    animation-duration: 25s;
    animation-delay: 2.5s;
    font-size: 2.9rem;
    color: #fde68a;
    text-shadow: 0 0 60px rgba(253, 230, 138, 0.3), 0 0 120px rgba(253, 230, 138, 0.15);
}

.bg-icon-11 {
    left: 73%;
    animation-duration: 35s;
    animation-delay: 4.5s;
    font-size: 3rem;
    color: #a7f3d0;
    text-shadow: 0 0 60px rgba(167, 243, 208, 0.3), 0 0 120px rgba(167, 243, 208, 0.15);
}

.bg-icon-12 {
    left: 80%;
    animation-duration: 28s;
    animation-delay: 6.5s;
    font-size: 3.2rem;
    color: #bfdbfe;
    text-shadow: 0 0 60px rgba(191, 219, 254, 0.3), 0 0 120px rgba(191, 219, 254, 0.15);
}

.bg-icon-13 {
    left: 87%;
    animation-duration: 30s;
    animation-delay: 1.5s;
    font-size: 2.8rem;
    color: #fbcfe8;
    text-shadow: 0 0 60px rgba(251, 207, 232, 0.3), 0 0 120px rgba(251, 207, 232, 0.15);
}

.bg-icon-14 {
    left: 93%;
    animation-duration: 32s;
    animation-delay: 5.5s;
    font-size: 3rem;
    color: #fde68a;
    text-shadow: 0 0 60px rgba(253, 230, 138, 0.3), 0 0 120px rgba(253, 230, 138, 0.15);
}

.bg-icon-15 {
    left: 97%;
    animation-duration: 27s;
    animation-delay: 3.5s;
    font-size: 2.6rem;
    color: #ddd6fe;
    text-shadow: 0 0 60px rgba(221, 214, 254, 0.3), 0 0 120px rgba(221, 214, 254, 0.15);
}

/* ===== ANIMATED GRID LINES ===== */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-line {
    position: absolute;
    background: rgba(59, 130, 246, 0.06);
    animation: gridMove 20s linear infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes gridMove {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }

    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}

/* ===== LOGO RING ===== */
.logo-ring {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 auto 3px;
}

.ring-spinner {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top: 1.5px solid rgba(96, 165, 250, 0.5);
    border-right: 1.5px solid rgba(96, 165, 250, 0.15);
    animation: spin 3s linear infinite;
}

.ring-spinner::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-bottom: 1.5px solid rgba(96, 165, 250, 0.25);
    animation: spin 4s linear infinite reverse;
}

.logo-container {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 3s ease-in-out infinite;
}

.logo-container img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    padding: 2px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(29, 78, 216, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    }
}

/* ===== DIVIDER LINE ===== */
.divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 2px auto 4px;
    width: 80px;
}

.divider-line-inner {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.divider-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.divider-dot:first-child {
    animation-delay: 0s;
}

.divider-dot:last-child {
    animation-delay: 1s;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(2);
        opacity: 0.8;
    }
}

/* ===== CONTACT CHIPS ===== */
.contact-chip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px 3px 8px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-chip i {
    opacity: 0.7;
}

.contact-chip:hover {
    transform: translateY(-1px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chip-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-chip:hover .chip-glow {
    opacity: 1;
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-chip-email i {
    color: #60a5fa;
}

.contact-chip-phone i {
    color: #34d399;
}

.contact-chip-location i {
    color: #fbbf24;
}

/* ===== SOCIAL BUTTONS ===== */
.social-premium {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-premium:hover {
    transform: translateY(-2px) scale(1.05);
}

.premium-btn-group {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
}

.premium-btn-group:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.premium-btn {
    position: relative;
    padding: 3px 10px;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.premium-btn-main {
    padding: 3px 12px 3px 10px;
}

.premium-btn-download {
    padding: 3px 8px;
    border-left: 1px solid rgba(96, 165, 250, 0.1);
}

.premium-btn-single {
    position: relative;
    padding: 3px 12px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
}

.premium-btn-single:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.premium-btn:hover {
    color: white;
}

/* Show logos with real colors - NO filter */
.premium-btn img {
    filter: none !important;
    display: block;
}

.premium-btn i {
    font-size: 11px;
}

.btn-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.premium-btn:hover .btn-hover-effect {
    width: 200%;
    height: 200%;
}

/* ===== ACCENT LINE ===== */
.accent-line {
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15));
}

.accent-diamond {
    width: 4px;
    height: 4px;
    background: rgba(96, 165, 250, 0.15);
    transform: rotate(45deg);
    animation: diamondPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: rotate(45deg) scale(1.5);
        opacity: 0.8;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    #contact {
        padding: 0.5rem 0.4rem;
        min-height: 220px;
    }

    .bg-icon {
        font-size: 1.8rem !important;
        opacity: 0.8 !important;
        filter: blur(3px) drop-shadow(0 0 30px rgba(255, 255, 255, 0.1)) !important;
    }

    .bg-icon-1,
    .bg-icon-3,
    .bg-icon-5,
    .bg-icon-7,
    .bg-icon-9,
    .bg-icon-11,
    .bg-icon-13,
    .bg-icon-15 {
        display: none;
    }

    .bg-icon-2,
    .bg-icon-4,
    .bg-icon-6,
    .bg-icon-8,
    .bg-icon-10,
    .bg-icon-12,
    .bg-icon-14 {
        font-size: 2rem !important;
        opacity: 0.85 !important;
    }

    .orb-1 {
        width: 100px;
        height: 100px;
    }

    .orb-2,
    .orb-3 {
        width: 80px;
        height: 80px;
    }

    .logo-ring {
        width: 36px;
        height: 36px;
    }

    .ring-spinner {
        width: 46px;
        height: 46px;
    }

    .ring-spinner::after {
        width: 52px;
        height: 52px;
    }

    .logo-container {
        width: 36px;
        height: 36px;
    }

    .logo-container img {
        width: 30px;
        height: 30px;
    }

    .contact-chip {
        padding: 2px 8px 2px 6px;
        font-size: 10px;
    }

    .contact-chip i,
    .contact-chip span {
        font-size: 10px !important;
    }

    .premium-btn {
        padding: 2px 8px;
        font-size: 10px;
    }

    .premium-btn i {
        font-size: 10px;
    }

    .premium-btn-main {
        padding: 2px 10px 2px 8px;
    }

    .premium-btn-download {
        padding: 2px 6px;
    }

    .premium-btn-single {
        padding: 2px 10px;
        font-size: 10px;
    }

    .premium-btn-single i {
        font-size: 10px;
    }

    h2 {
        font-size: 1.1rem !important;
    }

    p.text-xs {
        font-size: 10px !important;
    }

    .divider-line {
        width: 60px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .bg-icon {
        font-size: 2.2rem !important;
        opacity: 0.85 !important;
        filter: blur(3px) drop-shadow(0 0 30px rgba(255, 255, 255, 0.1)) !important;
    }
}

/* ===== PREMIUM BARCODE MODAL ===== */

/* Modal animation */
.barcode-modal {
    animation: barcodeSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes barcodeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

/* QR Code glow pulse animation */
@keyframes qrGlowPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

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

.barcode-modal .animate-pulse {
    animation: qrGlowPulse 3s ease-in-out infinite;
}

/* QR Code container hover effect */
.barcode-modal .relative .bg-white {
    transition: all 0.3s ease;
}

.barcode-modal .relative .bg-white:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

/* Corner accent animation */
.barcode-modal .border-t-2,
.barcode-modal .border-l-2,
.barcode-modal .border-r-2,
.barcode-modal .border-b-2 {
    transition: all 0.3s ease;
}

.barcode-modal .relative:hover .border-t-2,
.barcode-modal .relative:hover .border-l-2 {
    border-color: #8b5cf6;
}

.barcode-modal .relative:hover .border-r-2,
.barcode-modal .relative:hover .border-b-2 {
    border-color: #8b5cf6;
}

/* Badge hover effects */
.barcode-modal .inline-flex.items-center.gap-2 {
    transition: all 0.3s ease;
}

.barcode-modal .inline-flex.items-center.gap-2:hover {
    transform: scale(1.02);
}

/* Button hover effects */
.barcode-modal .bg-gradient-to-r,
.barcode-modal .flex-1 {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.barcode-modal .hover\:scale-\[1\.02\] {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== BARCODE MODAL - FULL WIDTH FOOTER ===== */

/* Footer container */
.barcode-modal .space-y-2\.5 {
    width: 100%;
}

/* Download button full width */
.barcode-modal .w-full {
    width: 100%;
}

/* 50/50 buttons container */
.barcode-modal .flex.gap-2\.5.w-full {
    width: 100%;
    display: flex;
    gap: 0.625rem;
}

/* Each button takes 50% width */
.barcode-modal .flex-1 {
    flex: 1;
    min-width: 0;
}

/* Download button specific styles */
.barcode-modal .from-emerald-500 {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.barcode-modal .from-emerald-500:hover {
    transform: translateY(-2px);
}

/* Button text and icon alignment */
.barcode-modal .flex.items-center.justify-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .barcode-modal {
        max-width: 95%;
        margin: 0 auto;
    }

    .barcode-modal img {
        width: 180px;
        height: 180px;
    }

    .barcode-modal .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .barcode-modal .p-6 {
        padding: 1.25rem;
    }

    /* Footer buttons full width on mobile */
    .barcode-modal .flex.gap-2\.5.w-full {
        flex-direction: row;
        gap: 0.5rem;
    }

    .barcode-modal .flex-1 {
        flex: 1;
        min-width: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .barcode-modal .w-full.py-3 {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }
}

@media (max-width: 480px) {
    .barcode-modal .flex.gap-2\.5.w-full {
        flex-direction: column;
        gap: 0.5rem;
    }

    .barcode-modal .flex-1 {
        width: 100%;
        flex: none;
    }

    .barcode-modal .px-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .barcode-modal .p-6 {
        padding: 1rem;
    }
}