/* =========================================
   PARALLAX HERO SECTION - AlanWebs
   Inspired by Unfold's parallax mountain scene
   Customized for digital agency branding
   ========================================= */

/* ---- Scroll Distance Spacer ---- */
.hero_scrollDist {
    position: relative;
    width: 100%;
    height: 200vh;
    z-index: 1;
}

/* ---- Fixed Main Container ---- */
.hero_parallax_main {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    background: #0a0f1a;
    overflow: hidden;
    z-index: 1;
}

.hero_parallax_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.hero_video_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* ---- SVG Viewport ---- */
.hero_parallax_main svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.hero_main_title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 900;
    font-size: 110px;
    letter-spacing: 12px;
    text-transform: uppercase;
}

.hero_initial_caption {
    font-size: 22px;
}

.hero_title_frame {
    stroke: #00bca9;
    stroke-width: 2px;
    stroke-dasharray: 120 40;
    opacity: 0.7;
    animation: crawlBorder 30s linear infinite;
}

@keyframes crawlBorder {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 1000;
    }
}

.hero_reveal_title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 900;
    font-size: 54px;
    letter-spacing: 6px;
    text-transform: uppercase;
    transform: translateY(-20px);
}

.hero_reveal_sub {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    fill: #333333;
    transform: translateY(-25px);
}

/* Default styling for image on large screens - shifted upward */
.hero_reveal_elements image {
    transform: translateY(-45px);
}

/* Smooth float/shake animation for the reveal image wrapper */
.hero_reveal_image_wrap {
    animation: smoothFloatShake 8s ease-in-out infinite;
}

@keyframes smoothFloatShake {

    0%,
    100% {
        transform: translate(0, 0);
    }

    15% {
        transform: translate(-2px, -4px);
    }

    30% {
        transform: translate(2px, -1px);
    }

    45% {
        transform: translate(-1px, -5px);
    }

    60% {
        transform: translate(3px, 2px);
    }

    75% {
        transform: translate(-2px, -3px);
    }

    90% {
        transform: translate(1px, -1px);
    }
}

/* ---- Cloud Mask Fill ---- */
.hero_parallax_main svg mask rect {
    fill: #fff;
}

/* ---- Hero Overlay Content ---- */
.hero_overlay_content {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
    width: 90%;
    max-width: 800px;
}

.hero_tagline {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00bca9;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 0.5s;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: none !important;
}

.hero_subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 0.9s;
    text-shadow: -1px -1px 0 rgba(0, 188, 169, 0.6), 1px -1px 0 rgba(0, 188, 169, 0.6), -1px 1px 0 rgba(0, 188, 169, 0.6), 1px 1px 0 rgba(0, 188, 169, 0.6), 0 4px 15px rgba(0, 0, 0, 0.5);
    display: none !important;
}

.hero_cta_wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 1.2s;
}

.hero_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.hero_cta_btn.primary {
    background: #00bca9;
    color: #ffffff;
    border: 2px solid #00bca9;
    box-shadow: 0 4px 20px rgba(0, 188, 169, 0.3);
}

.hero_cta_btn.primary:hover {
    background: #00d4bf;
    border-color: #00d4bf;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 188, 169, 0.5);
    transform: translateY(-3px);
}

.hero_cta_btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero_cta_btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn_text_mobile {
    display: none;
}

/* ---- Scroll Indicator ---- */
.hero_scroll_indicator {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
}

.hero_scroll_indicator span {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero_scroll_mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.hero_scroll_mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #00bca9;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseDot 2s ease-in-out infinite;
}

@keyframes scrollMouseDot {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ---- Floating Particles ---- */
.hero_particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.hero_particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 188, 169, 0.4);
    border-radius: 50%;
    animation: heroParticleFloat linear infinite;
}

.hero_particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-duration: 6s;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.hero_particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-duration: 8s;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
    background: rgba(0, 188, 169, 0.2);
}

.hero_particle:nth-child(3) {
    left: 55%;
    top: 30%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.hero_particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-duration: 9s;
    animation-delay: 0.5s;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.hero_particle:nth-child(5) {
    left: 85%;
    top: 15%;
    animation-duration: 5s;
    animation-delay: 3s;
    width: 3px;
    height: 3px;
}

.hero_particle:nth-child(6) {
    left: 40%;
    top: 80%;
    animation-duration: 10s;
    animation-delay: 1.5s;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes heroParticleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120px) translateX(30px);
        opacity: 0;
    }
}

/* ---- Gradient Overlays on parallax scene ---- */
.hero_gradient_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #0a0f1a 0%, transparent 100%);
    z-index: 4;
    pointer-events: none;
}

.hero_gradient_top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.4) 0%, transparent 100%);
    z-index: 4;
    pointer-events: none;
}

/* ---- Service Chips (hidden - hero is cleaner without them) ---- */
.hero_service_chips {
    display: none;
}

.hero_chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero_chip:hover {
    background: rgba(0, 188, 169, 0.12);
    border-color: rgba(0, 188, 169, 0.3);
    color: #00bca9;
    transform: translateY(-2px);
}

.hero_chip i {
    font-size: 14px;
    color: #00bca9;
}

.about_stats_bar {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 80px auto 0;
    background: transparent;
    border: 1px solid #00bca9;
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 10px 30px rgba(0, 188, 169, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about_stats_bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #00bca9 0%, #009a8a 100%);
    border-radius: 20px; /* match parent */
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about_stats_bar:hover::before {
    opacity: 1;
}

.about_stats_bar:hover {
    transform: translateY(-5px);
    border-color: #00bca9;
    box-shadow: 0 20px 45px rgba(0, 188, 169, 0.4);
}

.about_stats_inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}

.about_stat_item {
    text-align: center;
}

.about_stat_number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #00bca9;
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.about_stats_bar:hover .about_stat_number {
    color: #ffffff;
}

.about_stat_label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.about_stats_bar:hover .about_stat_label {
    color: rgba(255, 255, 255, 0.9);
}

/* ---- Keyframes ---- */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Hide old banner elements ---- */
.home_banner_section .home_banner_content,
.home_banner_section .bg_vedio_sec,
.home_banner_section #mobile-banner,
.home_banner_section .bubble_sect,
.home_banner_section .archivesSection {
    display: none !important;
}

/* ---- Responsive ---- */

/* Tablets */
@media (max-width: 1024px) {
    .hero_main_title {
        font-size: 100px;
        letter-spacing: 8px;
    }

    .hero_initial_caption {
        font-size: 20px;
    }

    .hero_title_frame {
        transform: scale(0.9);
        transform-origin: 600px 215px;
    }

    .hero_reveal_title {
        font-size: 52px;
        letter-spacing: 4px;
        transform: translateY(-30px);
    }

    .hero_reveal_sub {
        font-size: 16px;
        transform: translateY(-35px);
    }

    .hero_reveal_elements image {
        transform: translateY(-55px);
    }

    .hero_overlay_content {
        bottom: 28%;
    }

    .hero_tagline {
        font-size: 14px;
    }

    .hero_subtitle {
        font-size: 15px;
    }

    .about_stats_inner {
        gap: 30px;
    }

    .about_stat_number {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero_scrollDist {
        height: 160vh;
    }

    .hero_main_title {
        font-size: 65px;
        letter-spacing: 4px;
    }

    .hero_initial_caption {
        font-size: 14px;
        font-weight: 700;
    }

    .hero_reveal_title {
        font-size: 44px;
        letter-spacing: 4px;
        transform: translateY(-45px);
    }

    .hero_reveal_sub {
        font-size: 14px;
        letter-spacing: 1px;
        transform: translateY(-50px);
    }

    .hero_reveal_elements image {
        transform: translateY(-70px);
    }

    .hero_overlay_content {
        bottom: 25%;
    }

    .hero_tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero_subtitle {
        font-size: 13px;
        line-height: 1.5;
    }

    .hero_cta_wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero_cta_btn {
        padding: 12px 24px;
        font-size: 12px;
        width: 220px;
        justify-content: center;
    }

    .btn_text_desktop {
        display: none;
    }

    .btn_text_mobile {
        display: inline;
    }

    .hero_title_frame {
        transform: scale(0.65);
        transform-origin: 600px 215px;
    }

    .hero_service_chips {
        display: none;
    }

    .about_stats_inner {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about_stat_item {
        flex: 0 0 40%;
    }

    .about_stat_number {
        font-size: 24px;
    }

    .about_stat_label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero_scroll_indicator {
        bottom: 100px;
    }

    .hero_particles {
        display: none;
    }
}

/* ---- Sections above fixed hero ---- */
/* Ensure all page content after hero scrolls above it */
.premium_about_us_section,
.why_choose_us_sec,
.premium_outline_services,
.strongteamwrap_mainsec,
.parallax_projects_section,
.dev_process_section,
.techstack_section,
.premium_team_section,
.testimonial_section,
.premium_faq_section,
.premium_cta_section {
    position: relative;
    z-index: 2;
}

/* Light sections get white background */
.why_choose_us_sec,
.strongteamwrap_mainsec,
.testimonial_section {
    background-color: #fdfdfd;
}

/* Dark sections keep their own backgrounds */
.premium_about_us_section {
    background-color: #09090e;
}

.premium_outline_services {
    background-color: #ffffff;
}

.techstack_section {
    background-color: #0f0f1a;
}

.premium_cta_section {
    background-color: #0f0f1a;
}

.parallax_projects_section {
    background-color: #09090e;
}

.dev_process_section {
    background-color: #fdfdfd;
}

.premium_team_section {
    background-color: #fdfdfd;
}

.premium_faq_section {
    background-color: #fdfdfd;
}

/* Override canvas-wrap overflow for parallax to work */
.homepage_custombody .canvas-wrap {
    overflow: visible;
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero_main_title {
        font-size: 50px;
        letter-spacing: 2px;
    }

    .hero_initial_caption {
        font-size: 11px;
        font-weight: 700;
    }

    .hero_title_frame {
        transform: scale(0.5);
        transform-origin: 600px 215px;
    }

    .hero_reveal_title {
        font-size: 36px;
        letter-spacing: 2px;
        transform: translateY(-55px);
    }

    .hero_reveal_sub {
        font-size: 12px;
        letter-spacing: 0.5px;
        transform: translateY(-60px);
    }

    .hero_reveal_elements image {
        transform: translateY(-85px);
    }

    .hero_overlay_content {
        bottom: 22%;
    }
}

/* =========================================
   HOMEPAGE BLACK THEME SECTION OVERRIDES
   ========================================= */

/* 1. Force black background on all main homepage sections and canvas-wrap */
.homepage_custombody .canvas-wrap,
.homepage_custombody section.premium_about_us_section,
.homepage_custombody section.why_choose_us_sec,
.homepage_custombody section.premium_outline_services,
.homepage_custombody section.strongteamwrap_mainsec,
.homepage_custombody section.parallax_projects_section,
.homepage_custombody .scroll-stack-container,
.homepage_custombody section.dev_process_section,
.homepage_custombody section.techstack_section,
.homepage_custombody section.testimonial_section,
.homepage_custombody section.premium_team_section,
.homepage_custombody section.premium_faq_section,
.homepage_custombody section.premium_cta_section {
    background: #000000 !important;
    background-color: #000000 !important;
}

.homepage_custombody .faq_section_header .section_subtitle {
    color: #cbd5e1 !important;
}

/* 3. Why Choose Us Section - Mobile/Tablet Card Customizations */
.homepage_custombody .why_choose_box {
    background: #0c0d12 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.homepage_custombody .why_choose_box:hover {
    border-color: rgba(0, 188, 169, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 188, 169, 0.15) !important;
}

.homepage_custombody .why_choose_box h3 {
    color: #ffffff !important;
}

.homepage_custombody .why_choose_box p {
    color: #94a3b8 !important;
}

.homepage_custombody .why_choose_icon_wrap {
    box-shadow: 0 8px 20px rgba(0, 188, 169, 0.2), 0 0 0 6px #0c0d12 !important;
}

.homepage_custombody .why_choose_box:hover .why_choose_icon_wrap {
    box-shadow: 0 12px 25px rgba(0, 188, 169, 0.35), 0 0 0 6px #0c0d12 !important;
}

/* 4. Testimonials Section - Card Customizations */
.homepage_custombody .testimonial_card {
    background: #0c0d12 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.homepage_custombody .testimonial_card:hover {
    border-color: rgba(0, 188, 169, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 188, 169, 0.15) !important;
}

.homepage_custombody .testimonial_text {
    color: #e2e8f0 !important;
}

.homepage_custombody .testimonial_client {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.homepage_custombody .client_info h3,
.homepage_custombody .client_info h4 {
    color: #f8f9fa !important;
}

.homepage_custombody .client_info span {
    color: #94a3b8 !important;
}

/* 5. FAQ Section - Accordion Dark-Theme Customizations */
.homepage_custombody section.premium_faq_section {
    border-top: none !important;
}

.homepage_custombody .faq_accordion_item {
    background: #0c0d12 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.homepage_custombody .faq_accordion_item:hover {
    background: #111218 !important;
    border-color: rgba(0, 188, 169, 0.4) !important;
}

.homepage_custombody .faq_accordion_item.active {
    background: rgba(0, 188, 169, 0.05) !important;
    border-color: #00bca9 !important;
}

.homepage_custombody .faq_question_title {
    color: #ffffff !important;
}

.homepage_custombody .faq_action_icon {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.homepage_custombody .faq_icon_plus,
.homepage_custombody .faq_icon_minus {
    color: #cbd5e1 !important;
}

.homepage_custombody .faq_accordion_content p {
    color: #cbd5e1 !important;
}

/* 6. Section Spacing / Padding Reductions (Removing large black gaps) */
.homepage_custombody section.premium_about_us_section {
    padding: 60px 0 30px 0 !important;
}

.homepage_custombody section.why_choose_us_sec {
    padding: 95px 0 40px 0 !important;
}

.homepage_custombody section.premium_outline_services {
    padding: 60px 0 !important;
}

.homepage_custombody section.strongteamwrap_mainsec {
    padding: 40px 0 !important;
}

.homepage_custombody section.dev_process_section {
    padding: 60px 0 !important;
}

.homepage_custombody section.techstack_section {
    padding: 60px 0 50px 0 !important;
}

.homepage_custombody section.testimonial_section {
    padding: 50px 0 40px 0 !important;
}

.homepage_custombody section.premium_team_section {
    padding: 60px 0 !important;
}

.homepage_custombody section.premium_faq_section {
    padding: 60px 0 !important;
}

.homepage_custombody section.premium_cta_section {
    padding: 60px 0 !important;
}

/* =========================================
   HOMEPAGE SECTION ACCENT & TITLE DESIGNS
   ========================================= */

/* 1. About Section: Title is White, Decorative line is Green (#00bca9) */
/* 1. About Section: Title is White, Decorative line is Green (#00bca9) */
.premium_about_us_section .about_content_wrapper h2 {
    color: #ffffff !important;
}

.premium_about_us_section .title_line_before {
    background: #00bca9 !important;
}

/* 2. Why Choose Us Section (Inverse): Title is Green (#00bca9), Decorative line is White (#ffffff) */
.why_choose_us_sec .section_maintitle h2 {
    color: #00bca9 !important;
}

.why_choose_us_sec .section_maintitle .title_line_before {
    background: #ffffff !important;
}

/* 3. Clients Section (Inverse): Title is Green (#00bca9), Decorative line is White (#ffffff) */
.strongteamwrap_mainsec .section_maintitle h2 {
    color: #00bca9 !important;
}

.strongteamwrap_mainsec .section_maintitle .title_line_before {
    background: #ffffff !important;
}

/* 4. Projects Section: Title is White (#ffffff), Decorative line is Green (#00bca9) */
.parallax_projects_section .section_maintitle h2 {
    color: #ffffff !important;
}

.parallax_projects_section .section_maintitle .title_line_before {
    background: #00bca9 !important;
}

/* 5. Development Process Section (Inverse): Title is Green (#00bca9), Decorative line is White (#ffffff) */
.dev_process_section .section_maintitle h2 {
    color: #00bca9 !important;
}

.dev_process_section .section_maintitle .title_line_before {
    background: #ffffff !important;
}

/* 6. Techstack Section: Title is White (#ffffff), Decorative line is Green (#00bca9) */
.techstack_section .section_maintitle h2 {
    color: #ffffff !important;
}

.techstack_section .section_maintitle .title_line_before {
    background: #00bca9 !important;
}

/* 7. Team Section: Title is White (#ffffff), Decorative line is Green (#00bca9) */
.premium_team_section .team_section_header h2 {
    color: #ffffff !important;
}

.premium_team_section .team_section_header .title_line_before {
    background: #00bca9 !important;
}

/* 8. FAQ Section (Inverse): Title is Green (#00bca9), Decorative line is White (#ffffff) */
.premium_faq_section .faq_section_header h2 {
    color: #00bca9 !important;
}

.premium_faq_section .faq_section_header .title_line_before {
    background: #ffffff !important;
}

/* 9. Enforce center alignment for all section subtitles (Team, FAQ, Tech Stack) on all screens */
.homepage_custombody .section_subtitle,
.section_subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 10. Custom Hero Title Typography (Responsive) */
.hero_custom_title_1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 900;
    font-size: 65px;
    letter-spacing: 2px;
}

.hero_custom_title_2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 900;
    font-size: 90px;
    letter-spacing: 4px;
}

@media (max-width: 1024px) {
    .hero_custom_title_1 {
        font-size: 50px;
        letter-spacing: 1px;
    }

    .hero_custom_title_2 {
        font-size: 75px;
        letter-spacing: 2px;
    }
}

@media (max-width: 767px) {
    .hero_custom_title_1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero_custom_title_2 {
        font-size: 48px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero_custom_title_1 {
        font-size: 22px;
        letter-spacing: 0px;
    }

    .hero_custom_title_2 {
        font-size: 34px;
        letter-spacing: 1px;
    }
}