/* Tablet responsive for testimonial image */
@media (min-width: 600px) and (max-width: 1024px) {
    .testimonial-image {
        width: 300px;
        height: 400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0.75rem;
    }
}

@media (min-width: 1025px) and (max-width: 1279px) {
    .dropdown-content {
        min-width: 0 !important;
        width: 90vw !important;
        left: -320px !important;
        transform: translateX(-50%) translateY(10px);
        border-radius: 0.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        max-width: 98vw;
    }

    .dropdown-container {
        flex-direction: row;
        gap: 1rem;
        padding: 0 1rem;
    }

    .dropdown-categories {
        flex: 0 0 180px;
        min-width: 100px;
        border-right: 1px solid var(--border);
        border-bottom: none;
        padding-right: 1rem;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .dropdown-items {
        padding: 0 1rem;
    }
}

/* Responsive dropdown for mobile and tablet */
@media (max-width: 900px) {
    .dropdown-grid {
        flex-direction: column;
        min-width: 0;
        max-width: 95vw;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .dropdown-list {
        max-height: 180px;
        padding: 10px 10px 0 10px;
    }

    .dropdown-image {
        flex: none;
        max-width: 100%;
        min-width: 0;
        min-height: 80px;
        max-height: 120px;
        border-left: none;
        border-top: 1px solid #ffe066;
        justify-content: flex-start;
        padding: 10px 0 10px 0;
    }

    .dropdown-image img {
        max-width: 80vw;
        max-height: 90px;
        margin: 0 auto;
        display: block;
    }
}



@media (max-width: 1024px) {
    .login-btn {
        min-width: 180px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .login-btn {
        min-width: 220px;
        width: 100%;
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

@media (max-width: 1024px) {
    .image-glow-wrapper {
        height: 340px;
    }

    .hero-img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .image-glow-wrapper {
        height: 220px;
    }

    .hero-img {
        max-width: 400px;
    }

    .hero-image-container {
        min-width: 400px;
    }
}

@media (max-width: 480px) {
    .image-glow-wrapper {
        height: 140px;
    }

    .hero-img {
        max-width: 500px;
    }

    .hero-title,
    .hero-title1 {
        font-size: 1.2rem;
    }

    .hero-image-container {
        min-width: 500px;
    }
}

/* Section shadow effect for animated sections */
.section-animate {
    transition: box-shadow 0.5s, background 0.5s;
}

/* Animation base */
.animated {
    opacity: 1 !important;
    pointer-events: auto;
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}

/* Animations */
[data-animate="fade-left"].animated {
    transform: translateX(0);
    opacity: 1;
    animation: fadeLeft 1s both;
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
    opacity: 1;
    animation: fadeRight 1s both;
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
    opacity: 1;
    animation: zoomIn 1s both;
}

[data-animate="zoom-out"].animated {
    transform: scale(1);
    opacity: 1;
    animation: zoomOut 1s both;
}

[data-animate="rotate-in"].animated {
    transform: rotate(0);
    opacity: 1;
    animation: rotateIn 1s both;
}

[data-animate="blink"].animated {
    animation: blink 1.2s both;
    opacity: 1;
}

[data-animate="fade-up"].animated {
    transform: translateY(0);
    opacity: 1;
    animation: fadeUp 1s both;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }

    to {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover effects for all main buttons */
.hero-button,
.hero-button1,
.purchase-button,
.choose-btn,
.submit-button,
.cta-button,
.view-all-button {
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


.submit-button:hover,
.purchase-button:hover {
    box-shadow: 0 8px 24px rgba(255, 230, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.10);
    background: #ffe600 !important;
    color: #222 !important;
    filter: brightness(1.1);
    animation: blink 0.7s;
}

.hero-button:hover,
.hero-button1:hover,
.choose-btn:hover,
.view-all-button:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(255, 230, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.10);
    background: #ffe600 !important;
    color: #222 !important;
    filter: brightness(1.1);
    animation: blink 0.7s;
}

:root {
    --background: #09090b;
    --foreground: #fafafa;
    --primary: #facc15;
    --primary-foreground: #000;
    --border: #27272a;
    --muted: #18181b;
    --card: #18181b;
    --golden: #FFA629;
    --login: #FAFF00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Responsive breakpoints */
@media (max-width: 1280px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.5rem;
    }

    .image-glow-wrapper {
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(9, 9, 11, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    align-items: center
}

.header__logo-img {
    height: 32px;
    max-width: 120px;
    width: auto;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .header__logo-img {
        height: 40px;
    }
}

.header__nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header__nav--desktop {
    display: none;
}

.nav__link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
}

.nav__link:hover {
    color: var(--primary) !important;

}

.nav__link.active,
.nav__link.active:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Header CTA Container */
.header__cta-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Button Styles */
.header__cta-container .cta-button {
    background: transparent;
    border: 1px solid var(--foreground);
    color: var(--foreground);
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: fit-content;
}

.cta-button:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Login Button Styles */
.login-btn {
    background-color: var(--primary);
    color: #222222;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.08);
    border: none;
    cursor: pointer;
}

.login-btn:hover,
.login-btn:focus {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    outline: none;
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.15);
}

/* Enhanced Dropdown Styles */
.dropdown-grid {
    height: 500px;
    max-height: 500px;
}

.dropdown-list {
    overflow-y: auto;
    max-height: 220px;
}

@media (max-width: 900px) {
    .dropdown-grid {
        height: auto;
        max-height: none;
        min-width: 0;
        width: 100vw;
        border-radius: 12px;
    }

    .dropdown-list {
        max-height: none;
        overflow-y: visible;
        height: auto;
        padding: 10px 10px 0 10px;
    }

    .dropdown-item {
        min-height: 44px;
        font-size: 15px;
        padding: 8px 10px;
    }

    .dropdown-image {
        flex: none;
        max-width: 100%;
        min-width: 0;
        min-height: 80px;
        max-height: 120px;
        border-left: none;
        border-top: 1px solid #ffe066;
        justify-content: flex-start;
        padding: 10px 0 10px 0;
    }

    .dropdown-image img {
        max-width: 80vw;
        max-height: 90px;
        margin: 0 auto;
        display: block;
    }
}

/* Hide scrollbar but keep functionality */
.dropdown-content {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.dropdown-content::-webkit-scrollbar {
    display: none;
}

/* Ensure scrolling still works */
.dropdown-content {
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    overflow-y: scroll;
    /* Keep scrolling enabled */
}

/* Apply same to dropdown items if needed */
.dropdown-items {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dropdown-items::-webkit-scrollbar {
    display: none;
}

/* Dropdown item icon yellow background */
.dropdown-item-icon {
    background: var(--login);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    color: var(--background);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: -540px;
    width: 1310%;
    min-width: 800px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    max-height: 500px;
    overflow-y: auto;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-container {
    display: flex;
    padding: 0 1rem;
    gap: 1.5rem;
    height: 100%;
}

.dropdown-categories {
    flex: 0 0 200px;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}


.category-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.5rem;
    /* Reduced padding */
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1rem;
    /* Smaller font */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    /* Spacing between buttons */
}

.category-btn:hover,
.category-btn.active {
    color: var(--primary);
    background-color: rgba(250, 204, 21, 0.1);
}

.category-btn i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.dropdown-items {
    flex: 1;
    padding: 0 1rem;
    max-height: 460px;
    /* Adjusted for scroll */
    overflow-y: auto;
}

.dropdown-section-title {
    font-size: 1rem;
    /* Smaller title */
    margin-bottom: 1rem;
    /* Reduced spacing */
    color: var(--foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.view-all {
    font-size: 0.8rem;
    /* Smaller view all */
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-all:hover {
    text-decoration: underline;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dropdown-item {
    padding: 0.75rem;
    /* Reduced padding */
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    min-height: 60px;
    position: relative;
    /* Fixed height for consistency */
}

.dropdown-items::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--card));
    pointer-events: none;
}

.dropdown-item:hover {
    background-color: rgba(250, 204, 21, 0.05);
    border-color: rgba(250, 204, 21, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.1);
}

.dropdown-item-icon {
    flex-shrink: 0;
    width: 32px;
    /* Smaller icon */
    height: 32px;
    margin-right: 0.75rem;
}

.dropdown-item h3 {
    font-size: 0.9rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.dropdown-item p {
    font-size: 0.75rem;
    /* Smaller description */
    color: #a1a1aa;
    line-height: 1.4;
    /* Tighter line height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dropdown-content-right {
    flex: 0 0 220px;
    /* Adjusted width */
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropdown-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    max-height: 300px;
    /* Control image height */
}

.dropdown-image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 180px;
    margin-bottom: 1rem;
}



.dropdown-image-container:hover .dropdown-image {
    transform: scale(1.05);
}

.dropdown-image-caption {
    font-size: 0.9rem;
    color: var(--foreground);
    margin-top: 0.5rem;
    text-align: center;
}

.dropdown-promo {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(250, 204, 21, 0.05));
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: auto;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.dropdown-promo-title {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dropdown-promo-text {
    font-size: 0.85rem;
    color: #a1a1aa;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.dropdown-promo-btn {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background-color: var(--primary);
    color: #000;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-promo-btn:hover {
    background-color: #ffe600;
    transform: translateY(-2px);
}

/* Animation for dropdown */
@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Hover Behavior */
@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Tablet and Mobile Behavior */
@media (max-width: 1024px) {
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        min-width: 100%;
        max-height: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
    }

    .nav-dropdown.open .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .dropdown-container {
        flex-direction: column;
    }

    .dropdown-categories {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .category-btn {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .dropdown-items {
        padding: 0;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .dropdown-categories {
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .category-btn {
        flex: 1 0 auto;
    }
}

/* Mobile dropdown styles */
@media (max-width: 1024px) {
    .header__nav--mobile .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        max-height: 70vh;
        overflow-y: auto;
        background-color: var(--card);
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        animation: fadeIn 0.3s ease-out;
    }

    .header__nav--mobile .dropdown-container {
        flex-direction: column;
    }

    .header__nav--mobile .dropdown-categories {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .header__nav--mobile .category-btn {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: 0.25rem;
        transition: all 0.2s ease;
    }

    .header__nav--mobile .category-btn:hover {
        background-color: rgba(250, 204, 21, 0.1);
    }

    .header__nav--mobile .dropdown-items {
        padding: 0;
    }

    .header__nav--mobile .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .header__nav--mobile .dropdown-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }

    /* Animation for dropdown */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Desktop large screens */
@media (min-width: 1280px) {
    .dropdown-content {
        min-width: 900px;
    }

    .dropdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dropdown-content-right {
        flex: 0 0 300px;
    }

    .dropdown-image-container {
        height: 220px;
    }
}

/* Mobile Menu Styles */
.header__nav--mobile {
    display: none;
    flex-direction: column;
    background-color: var(--muted);
    padding: 1rem 1.5rem;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border);
}

.header__nav--mobile.active {
    display: flex;
}

.mobile-cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    align-items: center;
}

.header__nav--mobile .cta-button,
.header__nav--mobile .login-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    /* Tablet view adjustments */
    .header__cta-container {
        gap: 0.75rem;
    }

    .cta-button,
    .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Hide desktop CTA container on mobile */
    .header__cta-container {
        display: none;
    }

    /* Show mobile menu CTA buttons */
    .mobile-cta-container {
        display: flex;
    }
}

@media (min-width: 769px) {

    /* Hide mobile CTA buttons on desktop */
    .mobile-cta-container {
        display: none;
    }

    /* Show desktop CTA container */
    .header__cta-container {
        display: flex;
    }
}

.cta-button {
    background: transparent;
    border: 1px solid var(--foreground);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.cta-button:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.header__mobile-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__nav--mobile {
    display: none;
    flex-direction: column;
    background-color: var(--muted);
    padding: 1rem 1.5rem;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border);
}



.header__cta--mobile {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .header__nav--desktop {
        display: flex;
    }


    .header__cta {
        display: inline-block;
    }
}

/* Animation Classes for Header */
.animate-logo {
    animation: logoIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
}

@keyframes logoIn {
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.animate-nav {
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInNav 0.5s ease-out 0.3s forwards;
}

@keyframes fadeInNav {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-nav-item {
    opacity: 0;
    transform: translateY(10px);
    animation: navItemIn 0.5s ease-out forwards;
}

@keyframes navItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.animate-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: ctaPulse 2s infinite 1s;
}

.animate-cta .cta-icon {
    display: inline-block;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.animate-cta:hover .cta-icon {
    transform: translateX(5px);
    opacity: 1;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(250, 204, 21, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
    }
}

.animate-mobile-toggle {
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.header__nav--mobile {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 80vh;
    overflow-y: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.header__nav--mobile::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.header__nav--mobile.active {
    transform: translateY(0);
    opacity: 1;
}

.animate-mobile-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.header__nav--mobile.active .animate-mobile-item {
    opacity: 1;
    transform: translateX(0);
}

/* Active link animation */
.nav__link.active {
    position: relative;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    animation: underlineGrow 0.3s ease-out;
    transform-origin: left;
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Hover effects */

@keyframes linkHover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hero Section CSS */
.hero {
    padding: 0;
    background: linear-gradient(to bottom right, #000, #0d0d0d);
    color: white;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
}

/* .container {
    width: 100%;
    max-width: 1400px;
    
   
} */

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
    margin: 0;
}

.hero-text {
    flex: 0 0 45%;
    max-width: 600px;
    
}

.hero-title, .hero-title1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.hero-title1 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.typewriter-text {
    color: var(--primary);
    border-right: 3px solid var(--primary);
    padding-right: 5px;
    animation:  0.7s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
   
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}

.hero-button, .hero-button1 {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    z-index: 1;
    
}

.hero-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* .hero-button:hover {
    background-color: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
} */

.hero-button1 {
    border: 2px solid white;
    color: white;
}

/* .hero-button1:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
} */

.hero-image-container {
    flex: 1;
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

.image-glow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-glow {
    position: absolute;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    
    z-index: 0;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 0.9; }
}

.hero-img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    transform-style: preserve-3d;
    animation: perspectiveTilt 12s ease-in-out infinite;
}

@keyframes perspectiveTilt {
    0%, 100% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    25% {
        transform: perspective(1000px) rotateY(5deg) rotateX(2deg) scale(1.02);
    }
    50% {
        transform: perspective(1000px) rotateY(0deg) rotateX(5deg) scale(1.03);
    }
    75% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title, .hero-title1 {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .hero-image-container {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 6rem 0 4rem;
    }
    .hero-text {
        flex: 1;
        max-width: 100%;
        padding: 0;
    }
    .hero-image-container {
        height: auto;
        min-height: 400px;
        width: 100%;
        justify-content: center;
    }
    .hero-img {
        height: auto;
        width: 100%;
        max-width: 600px;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title, .hero-title1 {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-button, .hero-button1 {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .hero-image-container {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: auto;
       
    }
    .hero-content{
        gap:1rem;
    }
    .hero-title, .hero-title1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-button, .hero-button1 {
        width: 100%;
        text-align: center;
    }
    .hero-image-container {
        min-height: 300px;
    }
}
.whatsapp-float-img {
    position: fixed;
    right: 32px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #facc15;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: whatsapp-blink 1s infinite alternate;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}

.whatsapp-float-img:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: scale(1.08);
}

.whatsapp-img {
    width: 38px;
    height: 38px;
    display: block;
}

@keyframes whatsapp-blink {
    0% {
        box-shadow: 0 0 0 0 #facc15, 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 0 16px 8px #facc15, 0 8px 24px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-img {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-img {
        width: 30px;
        height: 30px;
    }
}

.animated-3d-image-section {
    
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    perspective: 1200px;
    background:
        linear-gradient(to bottom, #09090b 0%, transparent 10%, transparent 90%, #09090b 100%),
        radial-gradient(ellipse at center, #facc15 0%, #09090b 100%);
    background-blend-mode: overlay;
}

/* Wrapper initially without animation */
.animated-3d-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateX(100%) rotateY(-45deg) scale(0.7);
    transition: all 0.6s ease-out;
}

/* Active animation state */
.animated-3d-wrapper.animate {
    animation: imageEntry 2.5s ease forwards;
    opacity: 1;
}

/* Image styles */
.animated-3d-image {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    transform: rotateY(15deg) rotateX(5deg) scale(0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    animation: pulseZoom 5s ease-in-out infinite alternate;
}

/* Entry Animation */
@keyframes imageEntry {
    0% {
        opacity: 0;
        transform: translateX(100%) rotateY(-45deg) scale(0.7);
    }

    50% {
        opacity: 1;
        transform: translateX(0%) rotateY(10deg) scale(1.05);
    }

    100% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }
}

/* Breathing Zoom */
@keyframes pulseZoom {
    0% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }

    100% {
        transform: rotateY(5deg) rotateX(2deg) scale(1.02);
    }
}

@media (max-width: 768px) {
    .animated-3d-image {
        border-radius: 12px;
    }
}

/* Services Section Styles */
.services {
    padding: 5rem 0;

}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-button {
    display: absolute;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

}

.view-all-button:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.2);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--foreground);
    position: relative;
    display: block;
    width: fit-content;
    /* Better than fixed percentage */
    padding: 0 1rem;
    /* Prevents text from touching edges on mobile */
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100%;
    /* Full width of the text */
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        bottom: -8px;
        height: 1.5px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
        width: 90%;
        /* Allows better text wrapping on small screens */
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        bottom: -6px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-text {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-duration {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    display: block;
    position: relative;
    text-align: center;
    width: 100%;
}

.service-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-card:hover .service-title::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;

}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    border-radius: 10px;
}

.service-card:hover .service-image {
    filter: grayscale(0%);
}

.service-description {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin-top: auto;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--foreground);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* AI projects */

.ai .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ai .service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

.ai .service-card:hover {
    transform: scale(1.03);
}

.ai .card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ai .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* Card Stats Styles */
.card-image-wrapper {
    position: relative;
}

.service-card {
    position: relative;
    background: var(--card);
    /* or your card background color */
    padding: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.card-content {
    position: relative;
    padding-top: 1rem;
}

.card-stats {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    font-size: 0.875rem;
    color: #fff;
}

.stat-items {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.stat-items i {
    color: var(--golden);
}



.stat-items .fa-heart {
    color: #f43f5e;
}

.stat-items .count {
    font-weight: 500;
}

/* Likes interaction styles */
.likes-count {
    cursor: pointer;
    transition: all 0.2s ease;
}

.likes-count:hover {
    color: #f43f5e;
}

.likes-count.liked {
    animation: heartBeat 0.5s;
    color: #f43f5e;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Count display styles */
.stat-items .count {
    font-weight: 600;
    margin-left: 2px;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal video {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    outline: none;
}

.video-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

.video-modal[style*="display: flex"] {
    display: flex !important;
}

.ai .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ai .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--golden);
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.ai .service-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: black;
    font-size: 20px;
    margin-left: 2px;
}

.ai .card-content {
    padding: 16px 20px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai .card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
}

.ai .card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: left;
}

.purchase-button {
    position: relative;
    padding: 10px 16px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.purchase-button:hover {
    background-color: #eab308;
}

.arrow-icon {
    margin-left: 6px;
    font-size: 14px;

}

.ai .view-all-container {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .ai .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ai .services-grid {
        grid-template-columns: 1fr;
    }
}

/* package section */

.packages-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.packages-section h2 {
    font-size: 2rem;
    color: var(--foreground);
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.packages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.package-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(235, 186, 10, 0.1);
    border-color: var(--primary);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.package-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--foreground), transparent);
    margin: 0 auto 20px;
    width: 100%;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
    text-align: left;
}

.package-features li {
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.choose-btn {
    display: block;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
}

.choose-btn:hover {
    background-color: var(--golden);
    transform: translateY(-2px);
}

/* For the popular package */
.package-card.highlighted {
    border: 2px solid var(--primary);
}

/* Tablet View (768px and below) */
@media (max-width: 1024px) {
    .packages {
        gap: 20px;
    }

    .package-card {
        max-width: 45%;
        flex: 1 1 45%;
    }
}

/* Mobile View (below 768px) */
@media (max-width: 768px) {
    .packages-section {
        padding: 40px 16px;
    }

    .packages {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        max-width: 100%;
    }

    .package-title {
        font-size: 1.3rem;
    }

    .package-price {
        font-size: 1.5rem;
    }

    .choose-btn {
        font-size: 1rem;
        padding: 10px 16px;
    }
}



/* About Section Styles */
.about {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
    min-width: 50%;
}

.about-image {
    flex: 1;
    position: relative;

}

.about-img {
    width: 100%;
    height: auto;
    background-color: var(--card);
    border-radius: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;

}

.about-img:hover {
    transform: scale(1.02);
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
}

.about-description {
    color: #a1a1aa;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 600px;
}

.stats-container {
    position: relative;
    padding: 2rem 0;
}

.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 40%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-row {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    flex: 1;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        min-width: 100%;
    }

    .about-image {
        margin-top: 40px;
    }

    .stat-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .stat-item {
        padding: 1rem;
    }
}

/* Base */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: none;
}

/* Different animation styles */
.animated[data-animate="fade-in"] {
    animation: fadeIn 0.8s forwards;
}

.animated[data-animate="fade-left"] {
    animation: fadeLeft 0.8s forwards;
}

.animated[data-animate="zoom-in"] {
    animation: zoomIn 0.8s forwards;
}

.animated[data-animate="zoom-out"] {
    animation: zoomOut 0.8s forwards;
}

.animated[data-animate="scale-in"] {
    animation: scaleIn 0.8s forwards;
}

.animated[data-animate="flip-up"] {
    animation: flipUp 0.8s forwards;
}

.animated[data-animate="flip-down"] {
    animation: flipDown 0.8s forwards;
}

.animated[data-animate="slide-up"] {
    animation: slideUp 0.8s forwards;
}

.animated[data-animate="slide-down"] {
    animation: slideDown 0.8s forwards;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.2);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flipUp {
    from {
        transform: rotateX(90deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipDown {
    from {
        transform: rotateX(-90deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Projects Section Styles */
.projects {
    padding: 5rem 0;
    padding-top: 1.5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
    border-color: var(--primary);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}


.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.project-description {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.project-link:hover {
    color: #eab308;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-tag {
    background-color: var(--muted);
    color: #a1a1aa;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}





/* Responsive Adjustments */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 3rem 0;
    }

    .project-image {
        height: 180px;
    }
}

@media (max-width: 640px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 220px;
    }
}

/* Base Setup */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: none;
}

/* Unique Animations */
.animated[data-animate="fade-in"] {
    animation: fadeIn 0.8s ease-out forwards;
}

.animated[data-animate="fade-left"] {
    animation: fadeLeft 0.8s ease-out forwards;
}

.animated[data-animate="zoom-in"] {
    animation: zoomIn 0.8s ease-out forwards;
}

.animated[data-animate="zoom-out"] {
    animation: zoomOut 0.8s ease-out forwards;
}

.animated[data-animate="slide-up"] {
    animation: slideUp 0.8s ease-out forwards;
}

.animated[data-animate="slide-down"] {
    animation: slideDown 0.8s ease-out forwards;
}

.animated[data-animate="flip-up"] {
    animation: flipUp 0.8s ease-out forwards;
}

.animated[data-animate="flip-down"] {
    animation: flipDown 0.8s ease-out forwards;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.2);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes flipUp {
    from {
        transform: rotateX(90deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0);
        opacity: 1;
    }
}

@keyframes flipDown {
    from {
        transform: rotateX(-90deg);
        opacity: 0;
    }

    to {
        transform: rotateX(0);
        opacity: 1;
    }
}


/* blog */
blogs {
    padding: 5rem 0;
    padding-top: 1.5rem;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
    border-color: var(--primary);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-category {
    background-color: var(--primary);
    color: var(--primary-foreground);
    width: fit-content;

    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.blog-description {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #a1a1aa;
}

.blog-readmore {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
}

.blog-readmore:hover {
    color: #eab308;
}


/* Process Section */
.process-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background-color: var(--background);
}

.process-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 0;

    /* Hide scrollbar for Firefox */
}

.process-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.process-step {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    margin: 0 10px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background-color: rgba(206, 180, 77, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    scroll-snap-align: start;
}

.process-step.active {
    background-color: rgba(250, 204, 21, 0.1);
    border-color: var(--primary);
}

.process-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.process-step.active .process-number {
    color: var(--primary);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--foreground);
}

.process-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Original Desktop Arrow Styling (sides) */
.process-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFA629;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.process-nav:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.process-nav.left {
    left: -60px;
}

.process-nav.right {
    right: -60px;
}

.process-nav[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

/* Tablet and Mobile - Bottom Arrows */
@media (max-width: 1324px) {
    .process-step {
        flex: 0 0 calc(50% - 20px);
    }

    .process-wrapper {
        padding-bottom: 60px;
        /* Add space for bottom arrows */
    }

    .process-nav {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .process-nav.left {
        left: 50%;
        transform: translateX(calc(-50% - 30px));
        right: auto;
    }

    .process-nav.right {
        right: 50%;
        transform: translateX(calc(50% + 30px));
        left: auto;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex: 0 0 calc(100% - 20px);
    }

    .process-wrapper {
        padding-bottom: 50px;
    }

    .process-nav.left {
        left: 40%;
        transform: translateX(-50%);
    }

    .process-nav.right {
        right: 40%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .process-nav {
        width: 40px;
        height: 40px;
    }

    .process-nav.left {
        left: 35%;
    }

    .process-nav.right {
        right: 35%;
    }

    .process-step {
        padding: 30px;
        min-width: 280px;
    }
}

@media (max-width: 360px) {
    .process-nav {
        width: 36px;
        height: 36px;
    }

    .process-nav.left {
        left: 30%;
    }

    .process-nav.right {
        right: 30%;
    }

    .process-step {
        padding: 25px;
        min-width: 260px;
    }
}

/* testimonial section */
.testimonial-section {
    padding: 5rem 0;

    color: white;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--foreground);
}

.testimonial-track {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: left;
    height: 420px;
    margin-top: 3rem;
    perspective: 1000px;
}

.testimonial-card {
    position: absolute;
    width: 800px;
    height: 100%;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.9) translateX(100px);
    transition: all 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
    pointer-events: auto;
}

.testimonial-card.next {
    opacity: 0.4;
    transform: scale(0.9) translateX(576px);
    filter: blur(4px);
    z-index: 5;
}


.testimonial-card.prev {
    opacity: 0;
    transform: scale(0.9) translateX(-120px);
    z-index: 0;
}


.testimonial-image {
    flex: 0 0 40%;
    height: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.03);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.testimonial-header {
    margin-bottom: 2rem;
}

.client-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    line-height: 1.2;
}

.client-role {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #d1d1d1;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(244, 162, 97, 0.2);
    font-family: Georgia, serif;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0a66c2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.linkedin-link:hover {
    color: #004182;
    transform: translateX(5px);
}

.linkedin-logo {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-button {
    width: 50px;
    height: 50px;
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.testimonial-button:hover {
    background-color: var(--primary);
    color: #111;
    border-color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonial-track {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        perspective: none;
    }

    .testimonial-card {
        position: relative;
        width: 100%;
        max-width: 90vw;
        min-width: unset;
        height: auto;
        flex-direction: column;
        opacity: 0;
        transform: translateX(0) scale(0.95);
        z-index: 0;
        pointer-events: none;
    }

    .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
        z-index: 1;
    }

    .testimonial-card.next,
    .testimonial-card.prev {
        display: none;
    }

    .testimonial-image {
        flex: none;
        width: 100%;
        height: 240px;
        border-radius: 0.75rem;
    }

    .testimonial-image img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .client-name {
        font-size: 1.8rem;
        text-align: center;
    }

    .client-role {
        text-align: center;
        font-size: 1rem;
    }

    .testimonial-content {
        text-align: center;
        padding: 1rem 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
        padding-left: 0;
    }

    .testimonial-text::before {
        display: none;
    }

    .testimonial-controls {
        margin-top: 2rem;
    }

    .testimonial-button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .client-name {
        font-size: 1.5rem;
    }

    .client-role {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .linkedin-logo {
        width: 100px;
        margin-left: 80px;

    }
}

/* Tablet-specific styles (481px - 1023px) */
@media (min-width: 481px) and (max-width: 1023px) {
    .testimonial-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .testimonial-track {
        height: auto;
        min-height: 500px;
        perspective: none;
        margin-top: 2rem;
    }

    .testimonial-card {
        width: 90%;
        max-width: 600px;
        height: auto;
        min-height: 800px;
        flex-direction: column;
        transform: scale(0.95) translateX(100px);
    }

    .testimonial-card.active {
        transform: scale(1) translateX(0);
    }

    .testimonial-card.next {
        transform: scale(0.9) translateX(300px);
    }

    .testimonial-image {
        flex: none;
        height: 420px;
        width: 100%;
        object-position: contain;
    }

    .testimonial-content {
        padding: 1rem;
    }

    .client-name {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .client-role {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        text-align: center;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }

    .testimonial-text::before {
        display: none;
    }

    .linkedin-link {
        align-self: center;
    }

    .testimonial-controls {
        margin-top: 1.5rem;
    }

    .testimonial-button {
        width: 46px;
        height: 46px;
    }
}

/* Adjustments for smaller tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
    .testimonial-card {
        max-width: 550px;
        min-height: 380px;
    }

    .client-name {
        font-size: 1.8rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Clients Section */
.clients-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.client-title {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-logos-container {
    position: relative;
    padding: 2rem 0;
    /* Add padding for gradient effect */
}

/* Gradient overlay for top and bottom */
.client-logos-container::before,
.client-logos-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.client-logos-container::before {
    top: 0;
    background: linear-gradient(to bottom, var(--background) 0%, transparent 100%);
}

.client-logos-container::after {
    bottom: 0;
    background: linear-gradient(to top, var(--background) 0%, transparent 100%);
}

.client-logos-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scroll 20s linear infinite;
    will-change: transform;
    padding: 1rem 0;
}

.client-logo {
    height: 5rem;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
   
    /* filter: grayscale(100%) brightness(0.8); */
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Tooltip for company names */
.client-logo::after {
    content: attr(data-company);
    position: absolute;
    left: 50%;
    bottom: -2.5rem;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.client-logo:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -3rem;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.client-logos-container:hover .client-logos-track {
    animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .client-logo {
        height: 3rem;
    }
    
    .client-logo::after {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .client-logo {
        height: 3rem;
    }
    
    .client-logos-track {
        gap: 2rem;
    }
    
    .client-logo::after {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}
/* Contact Section */
.contact {
    padding: 5rem 0;
}

.section-description {
    text-align: center;
    color: #71717a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 250px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a1a1aa;
    cursor: pointer;
}

.contact-item:hover {
    color: var(--primary);
}

.info-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.icon-colored {
    color: var(--primary);
}

.contact-form {
    flex: 1;
    display: grid;
    gap: 1.5rem;
    min-width: 250px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
}

.form-input {
    background-color: black;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--foreground);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #eab308;
}

.container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    background-color: var(--primary);
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 90px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intro-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.6;
}

.intro-section .cta-button {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.cta-button:hover {
    background-color: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.intro-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #000;
    font-size: 0.9rem;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.desktop-only {
    display: none;
}

/* Responsive Breakpoints */
@media (min-width: 480px) {
    .intro-section {
        padding: 4rem 1.5rem;
    }

    .intro-title {
        font-size: 2.25rem;
    }

    .intro-subtitle {
        font-size: 1.05rem;
    }

    .feature-item {
        font-size: 1rem;
    }
}

@media (min-width: 640px) {
    .intro-section {
        padding: 5rem 2rem;
        min-height: 50vh;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .intro-subtitle {
        font-size: 1.1rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .intro-features {
        flex-direction: row;
        gap: 1.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (min-width: 768px) {
    .intro-title {
        font-size: 2.75rem;
    }

    .intro-section .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .intro-title {
        font-size: 3rem;
    }

    .intro-subtitle {
        font-size: 1.125rem;
        max-width: 600px;
    }

    .desktop-only {
        display: inline;
    }
}

@media (min-width: 1280px) {
    .intro-section {
        padding: 6rem 0;
    }

    .intro-title {
        font-size: 3.5rem;
    }
}

/* Optional: Add decorative elements */
.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Footer Styles */
.footer {
    background-color: var(--muted);
    color: var(--foreground);
    padding: 4rem 0 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border);
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--primary);
    color: var(--background);
    transform: translateY(-3px);
}

.footer-links-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 0.95rem;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--golden);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--golden);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 3rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-about {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .newsletter-input,
    .newsletter-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer .container {
        padding: 0 1rem;
    }

    .footer {
        padding-top: 2.5rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .cta-button {
        display: inline-block;
    }



    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-text {
        max-width: 50%;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        max-width: 50%;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* @media (max-width: 1024px) {
  .mobile-menu-button {
    display: block;
  }
} */

/* Hide mobile menu icon from 1025px and up */
@media (min-width: 1025px) {
    .header__mobile-toggle {
        display: none;
    }

    .header__nav--mobile {
        display: none !important;
    }

    .nav__link {
        color: var(--foreground);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
        padding: 0.5rem 1rem;
    }

    .nav__link:hover {
        color: var(--primary) !important;

    }

    .nav__link.active,
    .nav__link.active:hover {
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
    }

    .nav__link.active,
    .nav__link.active:hover {
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
    }

    /* .header__nav--mobile.active{
    display: flex !important;
} */
    .header__nav--mobile {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .header__nav--mobile.active {
        transform: translateY(0);
        opacity: 1;
    }

    .animate-mobile-item {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
    }

    .header__nav--mobile.active .animate-mobile-item {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 1024px) {

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .header__content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header__logo-img {
        width: 110px;
    }

    .header__nav--desktop {
        display: none;
        /* Hide desktop nav */
    }

    /* .header__nav--mobile {
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    padding: 1rem 1.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  } */

    .header__cta-container {
        display: none;
        /* Hide desktop CTA buttons */
    }

    #mobileMenuToggle {
        display: block;
    }

    .mobile-cta-container {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    /* .nav__link {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  } */

    .login-btn {
        width: 100%;
        text-align: center;
    }
}