@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');


:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --bg-gradient-start: #0f172a;
    --bg-gradient-end: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-gradient-start);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    color: var(--text-light);
}

/* Abstract Growth Lines Background */
.abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow: hidden;
}

.abstract-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vh;
    background: conic-gradient(from 180deg at 50% 50%, rgba(14, 165, 233, 0.1) 0deg, transparent 60deg, transparent 300deg, rgba(14, 165, 233, 0.1) 360deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(315deg);
    }
}

/* Typography */
.headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .subheadline {
        margin-left: 0;
        margin-right: 0;
    }
}

/* CTA Buttons */
.cta-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.cta-primary:hover,
.cta-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    color: #fff;
}

.cta-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover,
.cta-secondary:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Animated Digital Asset Icons */
.icon-grid {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.floating-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: absolute;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.3);
}

/* Positioning and animation delays */
.icon-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite 1s;
}

.icon-3 {
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite 2s;
}

.icon-4 {
    bottom: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite 1.5s;
}

/* Center piece (optional abstract node) */
.icon-grid::after {
    content: '< />';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    font-family: monospace;
    letter-spacing: -2px;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@media (max-width: 991px) {
    .icon-grid {
        height: 350px;
    }

    .floating-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

/* Navbar */
.custom-navbar {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 1030;
}

.custom-navbar.scrolled,
.custom-navbar.scrolled-mobile-open {
    background-color: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.custom-navbar .nav-link {
    color: #4f5760;
    transition: color 0.3s ease;
    position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #1f2933;
}

.custom-navbar .nav-link.nav-link-green,
.custom-navbar .nav-link.active.nav-link-green {
    color: #56a86d;
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 100%;
}

@media (max-width: 991px) {
    .custom-navbar {
        background-color: #ffffff;
        padding: 0.5rem 0;
    }

    .custom-navbar .nav-link::after {
        display: none;
    }

    /* .custom-navbar .navbar-collapse {
        margin-top: 10px;
        padding: 0;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        right: 15px;
        width: 320px;
        max-width: calc(100vw - 30px);
        z-index: 9999;
        border-radius: 4px;
        transform-origin: top right;
        transition: transform 0.3s ease, opacity 0.3s ease;
    } */

    .custom-navbar .navbar-nav {
        gap: 0 !important;
    }

    .custom-navbar .nav-item {
        margin-bottom: 0;
        border-bottom: 1px solid #e9ecef;
    }

    .custom-navbar .nav-item:last-child {
        border-bottom: none;
    }

    .custom-navbar .nav-link {
        color: #798086 !important;
        padding: 12px 20px !important;
        font-weight: 400;
        font-size: 15px;
    }

    .custom-navbar .nav-link.nav-link-green,
    .custom-navbar .nav-link.active.nav-link-green {
        color: #71b870 !important;
    }

    .mobile-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px 15px 15px;
        border-bottom: 1px solid #e9ecef;
        margin-bottom: 0;
    }

    .mobile-logo-box {
        background-color: #172141;
        /* dark blue */
        color: #ffffff;
        padding: 8px 15px;
        font-size: 14px;
        position: relative;
        display: inline-block;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .mobile-logo-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #d4af37 70%, #7e7e7e 30%);
    }

    .close-menu-btn {
        border: 2px solid #555;
        border-radius: 3px;
        padding: 2px 6px;
        color: #333;
        font-size: 13px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Trust & Credibility Section */
.trust-section {
    background-color: #ffffff;
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-label {
    color: var(--primary-color);
    letter-spacing: 3px;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
}

.trust-subheading {
    color: #475569;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.7); */
    transition: all 0.3s ease;
}

.logo-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.logo-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.logo-text {
    display: none;
    /* Hide text if present since we are using images */
}

/* Custom Global Utilities */
.tracking-wide {
    letter-spacing: 0.1em;
}

.max-w-2xl {
    max-width: 42rem;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 700;
}

.text-dark {
    color: #0f172a !important;
}

.bg-light {
    background-color: #f8fafc !important;
}

/* About Section */
.about-section {
    background-color: var(--bg-gradient-start);
}

.about-image-wrapper {
    perspective: 1000px;
}

.about-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 60%);
    z-index: 0;
    filter: blur(40px);
}

.experience-badge {
    bottom: -20px;
    right: -20px;
    min-width: 140px;
    text-align: center;
}

.cta-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

/* Core Services */
.services-section {
    background-color: #f8fafc;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1);
}

.explore-link {
    position: relative;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.explore-link i {
    transition: transform 0.3s;
}

.explore-link:hover i {
    transform: translateX(5px);
}

/* Video Capabilities */
.video-capabilities {
    background-color: #0c1222;
}

.custom-icon-list li {
    transition: transform 0.2s ease;
}

.custom-icon-list li:hover {
    transform: translateX(5px);
}

.icon-circle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.video-mockup-wrapper {
    transition: transform 0.4s ease;
}

.video-mockup-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
}

.play-button {
    width: 80px;
    height: 80px;
    transition: all 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
    background-color: white !important;
    color: var(--primary-color) !important;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.6) !important;
}

/* Why Us Section */
.why-us-section {
    background-color: #ffffff;
}

.icon-box-lg {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(14, 165, 233, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover .icon-box-lg {
    background: var(--primary-color);
    color: white !important;
    transform: rotate(-10deg) scale(1.05);
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, #0c1222 100%);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 52px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

@media (max-width: 991px) {
    .timeline-line {
        top: 52px;
        width: 150%;
    }

    .timeline-container .row {
        padding-bottom: 20px;
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.timeline-step {
    flex: 0 0 auto;
    width: 140px;
    margin: 0 auto;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    border: 4px solid #0c1222;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.timeline-step:hover .step-circle {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5) !important;
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-bg-layer {
    background: radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
}

/* Footer Section */
.footer {
    background: linear-gradient(rgba(12, 18, 34, 0.9), rgba(12, 18, 34, 0.95)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    position: relative;
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.contact-info i {
    width: 25px;
    text-align: center;
}

.list-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.4);
    border-color: var(--primary-color);
}

/* Inner Page Styles (About Us) */
.page-header-banner {
    min-height: 40vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    padding-top: 80px;
    padding-bottom: 40px;
}

.transition-hover {
    transition: all 0.3s ease;
}

.hover-border-primary:hover {
    border-color: var(--primary-color) !important;
}

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-5px);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.group-hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.group-hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1) !important;
}

.transform-translate-50 {
    transform: translate(0, 0);
}

@media (min-width: 768px) {
    .transform-translate-50 {
        transform: translate(25%, 25%);
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgb(252 252 253 / 75%) !important;
    content: var(--bs-breadcrumb-divider, "/");
}

/* Logo */
.logo-img {
    width: 180px;
    max-width: 46vw;
    height: auto;
    display: block;
}

.mobile-logo {
    width: 150px;
    height: auto;
    display: block;
}

/* =========================
   Mobile Business Menu
========================= */

@media (max-width:991px) {

    .custom-navbar .navbar-collapse {

        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;

        background: #ffffff;
        z-index: 9999;

        padding: 0;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);

        transition: right 0.35s ease;
    }

    /* when menu opens */
    .custom-navbar .navbar-collapse.show {
        right: 0;
    }

    /* nav items */
    .custom-navbar .navbar-nav {
        padding: 10px 0;
    }

    .custom-navbar .nav-item {
        border-bottom: 1px solid #eee;
    }

    .custom-navbar .nav-link {
        padding: 14px 22px !important;
        font-size: 16px;
        color: #4b5563 !important;
    }

    .custom-navbar .nav-link:hover {
        background: #f8f9fa;
        color: #111827 !important;
    }

    .custom-navbar .nav-link.active {
        color: #0f172a !important;
    }

    /* mobile header */
    .mobile-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
    }

    /* close button */
    .close-menu-btn {
        border: 1px solid #ddd;
        background: #fff;
        color: #1f2937;
        font-size: 16px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }

}