@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --tp-ff-body: 'Outfit', sans-serif;
    --tp-ff-heading: 'Outfit', sans-serif;

    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --dark-bg: #0f172a;

    --tp-theme-1: var(--accent-primary);
    --tp-theme-primary: #f59e0b;
    --tp-common-black: #0f172a;
    --tp-text-body: #64748b;

    /* Premium Gradients */
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    --hero-gradient: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08), transparent 40%);
}

/* Lenis Fix for Scroll */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Global Styles */
body {
    background-color: #fcfdfe;
    color: var(--tp-text-body);
    font-family: var(--tp-ff-body);
    -webkit-font-smoothing: antialiased;
    /* Removed overflow: hidden or similar that might block scroll */
}

/* Visibility Fixes */
.corporate-hero-title,
.corporate-hero__section-box p,
.tp-services-item,
.tp-title,
.tp-subtitle,
.tp-title-sm {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Premium Header Redesign */
#header-sticky {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
}

.tp-header-sticky.header-sticky {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.tp-logo img {
    height: 45px !important;
    width: auto !important;
    transition: transform 0.3s ease;
}

.tp-logo:hover img {
    transform: scale(1.05);
}


/* Nav Menu Active & Hover Animation */
.tp-main-menu ul li a {
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    transition: all 0.3s ease;
    padding: 25px 0 !important;
}

.tp-main-menu ul li.active a,
.tp-main-menu ul li:hover a {
    color: var(--accent-primary) !important;
}

/* Replicating/Overriding the bottom line for active state */
.tp-main-menu ul li.active a::after,
.tp-main-menu ul li:hover a::after {
    width: 90% !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: var(--accent-primary) !important;
    bottom: 15px !important;
}

.tp-main-menu ul li.active a::before,
.tp-main-menu ul li:hover a::before {
    width: 50% !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: var(--accent-secondary) !important;
    bottom: 15px !important;
}

/* Floating Header Concept (Fixed) */
#header-sticky:not(.header-sticky) {
    margin-top: 0 !important;
}

/* Hero Section - Tightened Space */
.corporate-hero__area {
    background: var(--hero-gradient), #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
}


.corporate-hero-title {
    font-size: 72px !important;
    line-height: 1 !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em;
}

/* PREMIUM SERVICE CARDS */
.tp-services-item {
    background: var(--card-gradient) !important;
    border: 1px solid rgba(59, 130, 246, 0.1) !important;
    border-radius: 30px !important;
    padding: 60px 45px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tp-services-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e0efff 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tp-services-item:hover {
    transform: translateY(-15px) rotateX(5deg) !important;
    box-shadow: 0 40px 80px rgba(59, 130, 246, 0.12) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.tp-services-item:hover::before {
    opacity: 1;
}

.tp-services-item__icon {
    background: #ffffff;
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease;
}

.tp-services-item:hover .tp-services-item__icon {
    transform: scale(1.1) rotate(10deg);
}

.tp-sv-title a {
    color: #0f172a !important;
    font-weight: 700;
}

/* Premium Buttons */
.tp-btn,
.corporate-btn {
    border-radius: 100px !important;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 0 40px !important;
    height: 60px !important;
    line-height: 60px !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3) !important;
}

.corporate-btn span {
    position: relative;
    z-index: 99;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    color: #ffffff !important;
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s;
}

.cursor-follower.active {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid transparent;
}

@media (min-width: 1024px) {

    body,
    a,
    button,
    .tp-btn,
    .corporate-btn,
    .swiper-slide,
    .popup-video {
        cursor: none !important;
    }
}

/* Footer Refinement */
footer {
    background: #020617 !important;
}

.tp-footer-widget__title h3 {
    color: #fff !important;
}

/* Highlight */
.tp-section-highlight::after {
    height: 15px;
    background: rgba(255, 220, 96, 0.35);
    bottom: 8px;
    border-radius: 3px;
    transform: skewX(-15deg);
}

/* PREMIUM FAQ DESIGN */
.tp-custom-accordio .accordion-items {
    background: var(--card-gradient) !important;
    border: 1px solid rgba(59, 130, 246, 0.1) !important;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tp-custom-accordio .accordion-items:hover {
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.tp-custom-accordio .accordion-buttons {
    padding: 25px 30px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp-custom-accordio .accordion-buttons:not(.collapsed) {
    color: var(--accent-primary) !important;
}

.tp-custom-accordio .accordion-body {
    padding: 0 30px 25px 30px !important;
    font-size: 17px;
    line-height: 1.6;
    color: var(--tp-text-body);
}

.faq-accordio-border {
    border: none !important;
}

/* MOBILE RESPONSIVENESS OVERRIDES */
@media (max-width: 991px) {
    .corporate-hero-title {
        font-size: 42px !important;
        line-height: 1.2 !important;
    }

    .corporate-hero__area {
        padding-top: 140px;
        padding-bottom: 80px;
        text-align: center;
    }

    .corporate-hero__img-box {
        margin-top: 50px;
    }

    .tp-services-item {
        padding: 40px 25px !important;
        margin-bottom: 20px;
    }

    .tp-title-sm,
    .tp-title {
        font-size: 32px !important;
    }

    .breadcrumb__title {
        font-size: 38px !important;
    }

    .breadcrumb__area {
        padding-top: 150px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 767px) {
    .corporate-hero-title {
        font-size: 32px !important;
    }

    .tp-btn,
    .corporate-btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .corporate-hero__btn-box {
        flex-direction: column;
        align-items: center;
    }

    .corporate-btn.mr-30 {
        margin-right: 0 !important;
    }

    .tp-custom-accordio .accordion-buttons {
        font-size: 16px !important;
        padding: 20px !important;
    }

    /* Fix for some sections having too much horizontal padding on mobile */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Force fix for any horizontal scrolling */
html,
body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}