﻿.peer:checked~.peer-checked\:translate-x-0 {
    transform: translateX(0);
}

.peer:checked~.peer-checked\:block {
    display: block;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: "Figtree", sans-serif;
}

p {
    font-weight: 300 !important;
}

.nav-menu {
    font-family: "Sora", sans-serif;
}

.cta-button {
    font-family: "Figtree", sans-serif;
    color: #1f1f1f;
}

.hero-heading {
    font-family: "Sora", sans-serif;
    font-weight: 500;
    line-height: 130% !important;
}

.hero-para {
    font-family: "Figtree", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px !important;
    line-height: 144% !important;
}




/* Multi-line Marquee Styles Current opportunities */
.marquee-line {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.track-rtl,
.track-ltr {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}

/* Right to Left Animation */
.track-rtl {
    animation: marqueeRTL 20s linear infinite;
}

/* Left to Right Animation */
.track-ltr {
    animation: marqueeLTR 20s linear infinite;
}

@keyframes marqueeRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeLTR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}



/* Bullet Icon */
.icon {
    font-size: 24px;
    font-weight: bold;
}


.dotted-bg {
    background-color: #121212;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

    .glass-card:hover {
        border-color: rgba(255, 215, 0, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
.hover-bg-primary-90:hover {
    background-color: rgb(212 163 59 / 0.9);
}
.hover-border-gold {
    transition: all .25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

 .hover-border-gold:hover {
        border-color: rgb(212 163 59 / 0.9) !important; /* Your Gold */
  }

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: testimonialScroll 35s linear infinite;
    will-change: transform;
}

.scroll-wrapper:hover .animate-scroll {
    animation-play-state: paused !important;
}

.t-card {
    width: 360px;
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition: all .35s ease;
    position: relative;
    overflow: visible !important;
    z-index: 10;
}

    .t-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 25%;
        width: 50%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255,215,0,.7), transparent);
    }

    .t-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255,255,255,.07), transparent 60%);
        pointer-events: none;
    }

    .t-card:hover {
        transform: translateY(-6px) scale(1.02);
        border-color: rgba(255,215,0,0.25);
        box-shadow: 0 14px 34px rgba(0,0,0,0.45);
        z-index: 50;
    }

@media (min-width: 768px) {
    .md\:h-\[65vh\] {
        height: 70vh !important;
    }
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 2.5rem !important;
        line-height: 1;
    }
}

.gap-4 {
    gap: 2rem !important;
}

@layer utilities {

    /* Dotted Background */
    .dotted-bg {
        background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 14px 14px;
    }

    /* Infinite Scroll Animation */
    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .animate-slide {
        animation: slide 20s linear infinite;
    }

    .pause-on-hover:hover {
        animation-play-state: paused;
    }
}


.domain-logo {
    max-height: 50px; /* same height */
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1); /* clean look */
    transition: 0.2s ease;
}

    .domain-logo:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }