﻿/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 70px;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Improved Navbar Styles with Better Contrast */
.navbar {
    background: linear-gradient(135deg, #0a1f38 0%, #0d2b4e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(10, 31, 56, 0.98);
        backdrop-filter: blur(8px);
        padding: 8px 0;
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

    .navbar-brand i {
        margin-right: 0.5rem;
    }

.navbar-nav {
    align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.2s ease;
    position: relative;
}

.brand-text {
    background: linear-gradient(to right, #fff, #c9e2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #4facfe;
    transition: width 0.2s ease;
}
.nav-link:hover::after {
    width: 60%;
}
.hover-underline {
    position: relative;
}

    .hover-underline::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
        transition: width 0.3s ease;
    }

    .hover-underline:hover::after {
        width: 70%;
    }

/* Dropdown menu styles */
.dropdown-menu {
    background: #0d2b4e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.dropdown-item {
    color: #ffffff;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu-dark {
    background: linear-gradient(135deg, #0d2b4e 0%, #123d6e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-animate {
    animation: fadeInDown 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Search bar styles */
.search-container {
    margin-left: 20px;
}

.search-input {
    position: relative;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}


    .search-box:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.25);
        width: 250px;
    }

    .search-box::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }

.search-btn {
    color: #ffffff !important;
}

/* Nav progress bar */
/* Progress bar - visible but subtle */
.nav-progress {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%) !important;
    height: 2px;
}

.navbar:hover .nav-progress {
    width: 100%;
}

@keyframes progressBarGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* PRO badge - now clearly visible */
.badge.bg-warning {
    background-color: #ffc107;
    color: #0d2b4e;
    font-size: 0.65rem;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(-45deg, #1a3a6a 0%, #1e5799 25%, #207cca 50%, #2989d8 75%, #7db9e8 100%);
    background-size: 400% 400%;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-gradient {
    background: linear-gradient(to right, #fff 0%, #c9e2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

    .scroll-down i {
        animation: bounce 2s infinite;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .wave-shape svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 100px;
        animation: wave-animation 10s linear infinite;
    }

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 12px 30px;
}

.btn-3d {
    box-shadow: 0 5px 0 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    position: relative;
}

    .btn-3d:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 0 0 rgba(0,0,0,0.2);
    }

    .btn-3d:active {
        transform: translateY(2px);
        box-shadow: 0 3px 0 0 rgba(0,0,0,0.2);
    }

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Why B2B Networking Section Styles */
#why-b2b {
    position: relative;
    overflow: hidden;
}

    #why-b2b::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('Images/network-pattern-light.png') repeat;
        opacity: 0.05;
        z-index: 0;
    }

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(20px);
    }

    75% {
        transform: translateY(20px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.why-content .line-animate {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLine 0.8s forwards;
    animation-delay: calc(var(--line-index) * 0.3s);
}

@keyframes fadeInLine {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section Styles */
.feature-box {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 15px;
    padding: 40px 25px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}

    .feature-box:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .feature-box .icon-box {
        transition: all 0.5s ease;
    }

    .feature-box:hover .icon-box {
        transform: rotateY(180deg);
        background: #333 !important;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

        .hero-section h1 {
            font-size: 2.2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

    .search-input {
        width: 100%;
        margin-top: 15px;
    }

    .search-box:focus {
        width: 100%;
    }
}
/* Mobile menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
    }

    .dropdown-menu {
        margin-left: 1rem;
        border: none;
        background: rgba(0,0,0,0.1);
    }
}