/* Custom Styles for StartHub Landing Page */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span:not([class*="fa-"]),
div,
button,
input,
textarea,
li,
.navbar-brand,
.nav-link {
    font-family: 'Outfit', sans-serif !important;
}

html,
body {
    font-family: 'Outfit', sans-serif !important;
    color: #2D3142;
    /* Base light background with smokey orange glowing points at edges */
    background:
        radial-gradient(circle at 0% 10%, rgba(217, 125, 84, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(217, 125, 84, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% -10%, rgba(217, 125, 84, 0.15) 0%, transparent 40%),
        radial-gradient(circle at -10% 90%, rgba(217, 125, 84, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #fdfbf9 0%, #f4f6fc 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    z-index: 0;
}

/* Halftone design at the edges */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    /* Halftone dot pattern */
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.12) 20%, transparent 20%),
        radial-gradient(rgba(0, 0, 0, 0.12) 20%, transparent 20%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    /* Fade out the center to only show pattern at the edges */
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 40%, black 100%);
    mask-image: radial-gradient(ellipse at center, transparent 40%, black 100%);
}

/* Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    display: inline-block;
}

.nav-link {
    font-weight: 500;
    color: #555;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff5e7e;
    /* Nice color change on hover */
}

/* Animated underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Slight offset below the text */
    left: 50%;
    width: 0;
    height: 3px;
    background: #ff5e7e;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-phone {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    text-decoration: none;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #ff5e7e, #ff4066);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 94, 126, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 94, 126, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
}

.hero-badge-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-badge {
    background: #ff5e7e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-right: 15px;
}

.hero-badge-text {
    color: #5b6fb4;
    font-weight: 600;
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a365d;
    margin: 25px 0;
}

.hero-title span {
    color: #8b5cf6;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-group-custom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-secondary-custom {
    background: linear-gradient(90deg, #8b5cf6, #c026d3);
    color: white;
    border: none;
    padding: 10px 10px 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary-custom i {
    background: white;
    color: #d946ef;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-secondary-custom:hover {
    color: white;
    transform: translateY(-2px);
}

.email-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a365d;
    text-decoration: none;
}

.email-contact i {
    color: #64748b;
}

/* Hero Right Side */
.hero-image-wrapper {
    position: relative;
    text-align: center;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.yellow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: #ffd600;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-height: 110%;
    object-fit: cover;
    border-radius: 0 0 225px 225px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.card-engagement {
    bottom: 20%;
    left: -10%;
}

.card-engagement h6 {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
}

.card-engagement .val {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.badge-green {
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
}

.card-social {
    bottom: 5%;
    right: 5%;
    display: flex;
    gap: 15px;
    padding: 15px 25px;
}

.card-social i {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.card-social i:hover {
    transform: scale(1.1);
}

.social-ig {
    color: #E1306C;
}

.social-fb {
    color: #1877F2;
}

.social-tk {
    color: #000000;
}

.social-tw {
    color: #1DA1F2;
}

.social-be {
    color: #1769ff;
}

.card-event {
    top: 10%;
    right: 0%;
    width: 200px;
    text-align: left;
}

.event-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.event-icon {
    width: 30px;
    height: 30px;
    background: #ffd600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.event-title {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.event-sub {
    font-size: 10px;
    color: #64748b;
}

.event-members {
    display: flex;
    margin-bottom: 10px;
    font-size: 10px;
    color: #64748b;
    align-items: center;
}

.event-members .avatars {
    display: flex;
    margin-right: 5px;
}

.event-members img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: #ddd;
}

.event-members img:first-child {
    margin-left: 0;
}

.event-btn {
    width: 100%;
    padding: 8px;
    background: #ff5e7e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.floating-plus {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 120px;
    color: #a78bfa;
    line-height: 1;
    font-weight: 900;
    text-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-image-wrapper {
        margin-top: 50px;
        height: 400px;
    }

    .yellow-circle {
        width: 300px;
        height: 300px;
    }
}

/* Additional Sections */
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title-white {
    color: white;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #ff5e7e;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.modern-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.bg-blue-light {
    background: #e0f2fe;
    color: #0284c7;
}

.bg-green-light {
    background: #dcfce7;
    color: #16a34a;
}

.bg-orange-light {
    background: #ffedd5;
    color: #ea580c;
}

.bg-purple-light {
    background: #f3e8ff;
    color: #9333ea;
}

.bg-red-light {
    background: #fee2e2;
    color: #dc2626;
}

.bg-teal-light {
    background: #ccfbf1;
    color: #0d9488;
}

.text-blue {
    color: #0284c7;
}

.text-green {
    color: #16a34a;
}

.text-orange {
    color: #ea580c;
}

.text-purple {
    color: #9333ea;
}

.text-red {
    color: #dc2626;
}

.text-teal {
    color: #0d9488;
}

.bg-deep-blue {
    background: #0f172a;
    color: white;
}

.core-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.core-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff5e7e;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.core-value-item:hover .core-value-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.service-list li:last-child {
    border-bottom: none;
}

.industry-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 32px;
    color: #1a365d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.industry-item:hover .industry-icon {
    background: #ff5e7e;
    color: white;
    transform: translateY(-5px);
}

.industry-item p {
    font-weight: 600;
    font-size: 14px;
    color: #334155;
}

/* Timeline Process */
.process-timeline {
    position: relative;
    padding-bottom: 30px;
}

/* --- Trust Cards (Why Choose Us) --- */
.trust-card {
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.trust-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Pulsing CTA Button --- */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.animate-pulse-btn {
    animation: pulse-animation 2s infinite;
    transition: transform 0.3s ease;
}

.animate-pulse-btn:hover {
    transform: scale(1.05);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #cbd5e1;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }

    .process-step {
        margin-bottom: 30px;
    }
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    margin: 0 auto 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 12px;
    color: #64748b;
}

.bg-step-1 {
    background: #0284c7;
}

.bg-step-2 {
    background: #16a34a;
}

.bg-step-3 {
    background: #f59e0b;
}

.bg-step-4 {
    background: #9333ea;
}

.bg-step-5 {
    background: #0f172a;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #334155;
}

.why-choose-list li i {
    color: #ff5e7e;
    margin-top: 4px;
    font-size: 18px;
}

.footer-section {
    background: #0f172a;
    color: white;
    padding: 30px 0;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-contact a,
.footer-contact span {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: white;
}

/* --- Advanced Text / Dashboard Elements --- */
.adv-badge-wrapper {
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.adv-badge-pill {
    background: #ff5e7e;
    /* Pink pill color matching the screenshot */
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-right: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.adv-badge-text {
    color: #5b6fb4;
    /* Blueish text color matching the screenshot */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.dynamic-text-rotator {
    transition: opacity 0.5s ease-in-out;
}

.adv-heading-wrapper {
    margin: 15px 0 25px 0;
}

.adv-heading-main {
    color: #1a365d;
    font-weight: 800;
    line-height: 1.15;
}

.adv-heading-highlight {
    color: #8b5cf6;
    /* Vibrant purple matching the screenshot */
    font-weight: 800;
    line-height: 1.2;
    /* Optional: Can add gradient here if they want later */
}

/* Helper to ensure hero title overrides don't conflict */
h1.hero-title .adv-heading-main {
    color: #1a365d;
}

/* --- Block CTA Button (Mobile & Desktop) --- */
.mobile-block-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.btn-block-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a855f7, #c026d3);
    padding: 12px 16px 12px 24px !important;
    border-radius: 35px !important;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4) !important;
    text-decoration: none;
    color: white !important;
    transition: transform 0.3s ease;
}

.btn-block-style:hover {
    transform: translateY(-3px);
}

.btn-block-style .btn-text {
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    letter-spacing: 0.5px;
}

.btn-block-style i {
    width: 32px !important;
    height: 32px !important;
    background: white !important;
    color: #c026d3 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.email-contact {
    color: #1a365d;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: color 0.2s ease;
}

.email-contact:hover {
    color: #c026d3;
}

@media (max-width: 768px) {
    .mobile-block-cta {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-block-style {
        padding: 15px 10px 15px 20px !important;
    }

    .btn-block-style .btn-text {
        font-size: 14px;
        margin-right: 15px;
    }

    .email-contact {
        font-size: 14px;
        margin-left: 24px;
    }
}

/* Global Footer Features */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff5e7e;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 126, 0.4);
}

.back-to-top:hover {
    background-color: #e04a6c;
    transform: translateY(-5px) !important;
}

.hover-bounce {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-bounce:hover {
    transform: translateY(-5px) scale(1.1);
    color: #ff5e7e !important;
}

.footer-link {
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #ff5e7e !important;
    padding-left: 5px;
    opacity: 1 !important;
}

.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Fix Stacking Contexts and Z-Index Overlaps Globally */
.fixed-top {
    z-index: 1050 !important;
}

.offcanvas-backdrop {
    z-index: 1045 !important;
}

.offcanvas {
    z-index: 1055 !important;
    background-color: white !important;
}

.animate__animated {
    position: relative;
    z-index: 1;
    /* keep animations below overlays */
}

.whatsapp-btn {
    z-index: 900 !important;
}

.back-to-top {
    z-index: 900 !important;
}

/* News Grid Section */
.news-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-item {
    margin-bottom: 50px;
}

.news-title {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    min-height: 48px;
}

.news-read-more {
    display: inline-block;
    background-color: #f2f2f2;
    color: #4da6ff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.2s;
}

.news-read-more:hover {
    background-color: #e5e5e5;
    color: #3399ff;
}

.news-read-more i {
    font-size: 12px;
    margin-left: 4px;
    color: #999;
}

/* News Grid Section */
.news-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-item {
    margin-bottom: 50px;
}

.news-title {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    min-height: 48px;
}

.news-read-more {
    display: inline-block;
    background-color: #f2f2f2;
    color: #4da6ff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.2s;
}

.news-read-more:hover {
    background-color: #e5e5e5;
    color: #3399ff;
}

.news-read-more i {
    font-size: 12px;
    margin-left: 4px;
    color: #999;
}

/* Solid Black Input Borders */
.form-control,
.form-select {
    border: 1px solid #000000 !important;
    border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    border-color: #000000 !important;
    outline: none !important;
}

/* Dynamic Rotator Transitions */
.dynamic-title-rotator,
.dynamic-badge-rotator {
    transition: opacity 0.5s ease-in-out;
}