﻿:root {
    --primary-color: #0b1a37;
    --secondary-color: #ff5c35;
    --accent-color: #f7941d;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f9;
    --bg-dark: #0b1a37;
    --transition: all 0.3s ease;
}

/* Zoom Stability - Prevent layout shifts during zoom */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 320px;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Ensure containers maintain proper scaling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Profile page specific zoom stability */
.profile-banner {
    width: 100%;
    min-width: 320px;
    box-sizing: border-box;
}

.profile-layout {
    width: 100%;
    box-sizing: border-box;
}

/* Prevent text from becoming too small or large during zoom */
@media (min-width: 320px) and (max-width: 1920px) {
    .profile-details h1 {
        font-size: clamp(28px, 5vw, 44px);
    }

    .profile-details p {
        font-size: clamp(18px, 3vw, 24px);
    }

    .status-section h3,
    .websites-section h3,
    .social-links-section h3 {
        font-size: clamp(20px, 2.5vw, 28px);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #e04a2a, #e6851a);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f1f1f1;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
}

.fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: grayscale(0%);
}

/* Animated line effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    filter: grayscale(30%);
    transform: translateY(-3px) scale(1.05);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 92, 53, 0.3);
}

.btn-primary:hover {
    background-color: #e04a2a;
    box-shadow: 0 8px 25px rgba(255, 92, 53, 0.4);
    filter: grayscale(20%) brightness(1.1);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
    filter: grayscale(10%);
}

/* Header */
header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: #050a30;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    font-weight: 500;
}

.top-bar-content i {
    margin-right: 5px;
    transform: rotate(15deg);
}

.main-header {
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon img {
    width: 90%;
}

.logo-icon {
    font-size: 24px;
    color: #ff5c35;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

/* Custom House Icon */
.house-icon {
    width: 40px;
    height: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.house-roof {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid #ff5c35;
    margin-bottom: -2px;
}

.house-body {
    width: 30px;
    height: 20px;
    background-color: #050a30;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2px;
}

.house-door {
    width: 8px;
    height: 12px;
    background-color: white;
    border-radius: 1px 1px 0 0;
}

.house-window {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 1px;
    margin-bottom: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-hud {
    font-weight: 900;
    font-size: 20px;
    color: #050a30;
}

.logo-consultant {
    font-weight: 700;
    font-size: 12px;
    color: #050a30;
}

.logo-nearme {
    font-weight: 700;
    font-size: 14px;
    color: #ff5c35;
}

.nav-links {
    display: flex;
    gap: 13px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 5px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a:hover {
    color: var(--secondary-color);
    background: rgba(255, 92, 53, 0.1);
    transform: translateY(-2px);
}

.btn-login-signup {
    background-color: #ff6b4a;
    color: white;
    padding: 8px 10px 8px 20px;
    border-radius: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-login-signup:hover {
    background-color: #e04a2a;
}

.arrow-circle {
    background-color: #050a30;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    color: white;
    /* Background image with gradient overlay */
    background: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Animated Gradient Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(255, 92, 53, 0.3),
            rgba(247, 148, 29, 0.3),
            rgba(11, 26, 55, 0.4),
            rgba(255, 92, 53, 0.2),
            rgba(247, 148, 29, 0.4));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
    z-index: 1;
}

/* Additional animated overlay for more depth */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg,
            rgba(255, 92, 53, 0.1),
            transparent,
            rgba(247, 148, 29, 0.2),
            transparent,
            rgba(11, 26, 55, 0.3));
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-container {
    max-width: 900px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.hero-title {
    font-size: 66px;
    /* Larger as in image */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 70px;
    /* More space before search */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.6;
}

.hero-search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-search-container {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 100px;
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-search-container input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    padding: 20px 35px;
    color: white;
    font-size: 1.05rem;
    flex: 1;
    font-weight: 200;
}

.hero-search-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-search {
    background: #ff6b4a;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 60px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-search:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 92, 53, 0.6);
}

/* Marquee Integrated */
.marquee-wrapper {
    background: #050a30;
    color: white;
    padding: 8px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 2px solid #ff5c35;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
    gap: 60px;
    width: max-content;
}

.marquee-content span {
    font-size: 18px;
    letter-spacing: 0px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.marquee-content .orange {
    color: #ff5c35;
    font-weight: 800;
}

.marquee-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.marquee-content .dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Sections General */

section#about h2 {
    color: #000000;
    font-size: 44px !important;
    font-weight: 600;
    padding: 15px 0 15px 0;
}

section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-header {
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.section-text {
    flex: 1;
    text-align: left;
}

.section-text p:first-child {
    color: var(--secondary-color);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
}

.section-text .section-description {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.section-button {
    flex-shrink: 0;
    align-self: flex-end;
}

/* Success Stories Button */
.btn-success-stories,
.btn-success-stories-page {
    background-color: #050a30;
    color: white;
    padding: 6px 7px 6px 25px;
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    filter: grayscale(0%);
    top: -50px;
}

.btn-success-stories::before,
.btn-success-stories-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-success-stories:hover::before,
.btn-success-stories-page:hover::before {
    left: 100%;
}

.btn-success-stories:hover,
.btn-success-stories-page:hover {
    background-color: #0a1f4a;
    transform: translateY(-3px) scale(1.02);
    filter: grayscale(25%) brightness(1.1);
    box-shadow: 0 8px 20px rgba(5, 10, 48, 0.3);
}

.btn-success-stories .arrow-circle,
.btn-success-stories-page .arrow-circle {
    background-color: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
}

.btn-success-stories:hover .arrow-circle,
.btn-success-stories-page .arrow-circle {
    background-color: #e04a2a;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-button {
        align-self: stretch;
    }

    .section-text h2 {
        font-size: 2rem;
    }
}

/* Service Icons */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.service-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 92, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    box-shadow: 0 20px 40px rgba(255, 92, 53, 0.15);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
}

.service-item i {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.service-item:hover h4 {
    color: var(--secondary-color);
}

/* About Section Refining */
.about-image-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.about-image-container .video-play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.about-image-container .video-play-btn {
    color: #ffff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: transparent !important;
    border: 4px solid #ffff;
    padding-right: 14px !important;
}

.about-image-container .video-play-btn:hover {
    background: #ff5c35;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 92, 53, 0.4);
}

.about-image-container .video-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 92, 53, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.about-image-container .video-play-btn:hover::before {
    width: 120px;
    height: 120px;
}

.about-floating-logo {
    position: absolute;
    top: 50%;
    right: -66px;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.about-floating-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/float-icon-border.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    z-index: 1;
}

.about-floating-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('../images/float-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-floating-logo img {
    display: none;
}

/* Laptop Banner */
.laptop-banner {
    background: url('../images/laptop-banner.png');
    background-size: cover, cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 710px;
    color: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #ffffff;
    padding-top: 100px !important;
}

.laptop-content {
    max-width: 80%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 80px 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: -50px;
}

/* Animated Gradient Overlay for Laptop Content */
.laptop-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 92, 53, 0.2),
            rgba(247, 148, 29, 0.3),
            rgba(11, 26, 55, 0.2),
            rgba(255, 92, 53, 0.1),
            rgba(247, 148, 29, 0.2));
    background-size: 400% 400%;
    animation: laptopGradientShift 10s ease infinite;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

/* Secondary gradient layer for depth */
.laptop-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-135deg,
            rgba(255, 92, 53, 0.1),
            transparent,
            rgba(247, 148, 29, 0.15),
            transparent,
            rgba(11, 26, 55, 0.2));
    background-size: 300% 300%;
    animation: laptopGradientShift 15s ease infinite reverse;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

@keyframes laptopGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.laptop-content .subtitle {
    color: #ff5c35;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.laptop-content h2 {
    font-size: 44px;
    margin-bottom: 50px;
    font-weight: 500;
}

.laptop-content .description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 100;
}

.view-more {
    color: #ff5c35;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.laptop-mockups {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    position: relative;
    height: 400px;
}

.laptop-1,
.laptop-2 {
    width: 550px;
    position: absolute;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.laptop-1 {
    transform: rotate(-10deg) translateX(-100px);
    z-index: 1;
}

.laptop-2 {
    transform: rotate(10deg) translateX(100px);
    z-index: 2;
}

/* Testimonials */
.testimonials-section {
    background: #ffffff;
    text-align: center;
    padding-top: 0;
    padding-bottom: 140px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 44p;
    margin-bottom: 30px;
}

.section-description {
    color: #010101 !important;
    font-size: 18px;
    margin-top: 15px;
    max-width: 100%;
    line-height: 1.6;
}

.testimonials-carousel-wrapper {
    margin: 60px 0 40px;
    overflow: visible;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 0 20px;
    cursor: grab;
    user-select: none;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(61.333% - 20px);
    min-width: 210px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 40px 30px 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.95);
    background-color: #eee;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #1a1a3e;
}

.testimonial-avatar {
    position: absolute;
    top: 0px;
}

.testimonial-avatar img {
    width: 60px;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    margin-top: 25px;
    text-align: left;
}

.testimonial-content h3 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: right;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #010101;
    margin-bottom: 25px;
    text-align: left;
}

.testimonial-footer {
    background: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px -10px -10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-footer,
.testimonial-card.active .testimonial-footer {
    background: #1a1a3e;
    color: white;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.testimonial-rating {
    position: relative;
}

.testimonial-rating img {
    height: 18px;
    width: auto;
    transition: opacity 0.3s ease;
}

.stars-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.testimonial-card:hover .stars-default,
.testimonial-card.active .stars-default {
    opacity: 0;
}

.testimonial-card:hover .stars-hover,
.testimonial-card.active .stars-hover {
    opacity: 1;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 92, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    width: 40px;
    border-radius: 20px;
}

.dot:hover {
    background: var(--secondary-color);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        flex-direction: unset !important;
        align-items: center;
    }

    .testimonial-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        min-width: auto;
        margin-bottom: 30px;
    }

    .testimonial-card.active {
        transform: scale(1);
    }

    .testimonial-content h3 {
        font-size: 1.1rem;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Success Grid Refinement with Video Thumbnails */
.success-section {
    background: white;
    padding: 20px 0;
}

.success-container {
    background: #F2F3F5;
    margin: 0 40px;
    padding: 60px 40px;
    border-radius: 20px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.success-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.success-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 92, 53, 0.1), rgba(247, 148, 29, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.success-item:hover::before {
    opacity: 1;
}

.success-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 92, 53, 0.2);
}

/* Video Thumbnail Styles */
.video-thumbnail {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.video-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.success-item:hover .video-image img {
    transform: scale(1.1);
}

.video-content {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-label {
    color: #020041;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.success-item:hover .video-label {
    color: var(--secondary-color);
}

.video-title {
    color: #ff5c35;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.video-play-btn {
    background: #9ca3af;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 13px !important;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-play-btn:hover::before {
    width: 100px;
    height: 100px;
}

.video-play-btn:hover {
    background: #ff5c35;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 92, 53, 0.4);
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    display: flex !important;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: -60px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 300;
    line-height: 1;
    z-index: 2001;
    user-select: none;
}

.close-modal:hover {
    background: #ff5c35;
    border-color: #ff5c35;
    transform: scale(1.1);
    color: white;
}

/* Close button inside modal */
.close-modal-inside {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 2001;
    user-select: none;
}

.close-modal-inside:hover {
    background: #ff5c35;
    transform: scale(1.1);
}

#videoFrame {
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 992px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #videoFrame {
        height: 400px;
    }

    .success-container {
        margin: 0 20px;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .success-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
    }

    #videoFrame {
        height: 300px;
    }

    .video-content {
        padding: 12px;
    }

    .video-play-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .success-container {
        margin: 0 15px;
        padding: 30px 15px;
        border-radius: 15px;
    }
}

/* Roadmap Section with Box Layout */
.roadmap-section {
    background: white;
    padding: 80px 0;
}

.roadmap-container {
    background: #ffffff;
    margin: 0 40px;
    padding: 10px 40px;
    border-radius: 20px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    align-items: center;
}

.roadmap-info {
    position: relative;
    background-image: url('../images/mobile-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 20px 0px 0px 40px;
    color: white;
    min-height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.roadmap-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: 1;
}

.roadmap-content {
    position: relative;
    z-index: 2;
}

.roadmap-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
    width: 75%;
}

.btn-find-contractor {
    background-color: #050a30;
    color: white;
    padding: 6px 7px 6px 25px;
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
    filter: grayscale(0%);
}

.btn-find-contractor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-find-contractor:hover::before {
    left: 100%;
}

.btn-find-contractor:hover {
    background-color: #0a1f4a;
    transform: translateY(-3px) scale(1.02);
    filter: grayscale(25%) brightness(1.1);
    box-shadow: 0 8px 20px rgba(5, 10, 48, 0.3);
}

.btn-find-contractor .arrow-circle {
    background-color: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
}

.mobile-mockup {
    display: none;
}

.roadmap-form-container .contact-form {
    background: #F2F3F5;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px 85px 20px;
}

.form-subtitle {
    color: #ff5c35;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.contact-form h3 {
    font-size: 34px;
    color: #000;
    margin-bottom: 25px;
    padding-top: 25px;
    font-weight: 500;
}

.form-description {
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff5c35;
    background: white;
}

.contact-form textarea {
    margin-bottom: 25px;
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: #050a30;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    position: relative;
    overflow: hidden;
    filter: grayscale(0%);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: #0a1f4a;
    transform: translateY(-3px) scale(1.05);
    filter: grayscale(20%) brightness(1.1);
    box-shadow: 0 8px 20px rgba(5, 10, 48, 0.3);
}

@media (max-width: 992px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roadmap-container {
        margin: 0 20px;
        padding: 40px 20px;
    }

    .roadmap-info {
        min-height: 400px;
    }

    .roadmap-form-container .contact-form {
        width: 100%;
        min-height: 500px;
    }

    .mobile-mockup {
        position: relative;
        bottom: 0;
        right: 0;
        width: 200px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }

    .roadmap-container {
        margin: 0 15px;
        padding: 30px 15px;
        border-radius: 15px;
    }

    .roadmap-info {
        padding: 30px;
        min-height: 350px;
    }

    .roadmap-content h2 {
        font-size: 1.5rem;
    }

    .roadmap-form-container .contact-form {
        padding: 30px 20px;
        width: 100%;
        min-height: 400px;
    }
}

/* Coverage section */
.coverage-section {
    background: #fff;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-bottom: 30px !important;
    padding-top: 0;
}

.coverage-section .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

.coverage-title {
    font-size: 44px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    padding: 0 20px;
}

.national-coverage-img {
    max-width: 50%;
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.coverage-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    padding: 0 20px;
}
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.legend-item {
    display: flex !important;
    align-items: center !important;
}

.legend-dot {
    margin-right: 10px;
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.all-makeover {
    background-color: #8B0000;
    border: 2px solid #8B0000;
}

.legend-dot.hud-consultant {
    background-color: #E91E63;
}

.legend-dot.hud-certified {
    background-color: #FF9800;
}

.legend-dot.certified-contractor {
    background-color: #9C27B0;
}

.map-container {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-left: 40px;
    margin-right: 40px;
}

.interactive-map {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.map-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.map-toggle {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-toggle button {
    background: white;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-toggle button.active {
    background: #2196F3;
    color: white;
}

.map-toggle button:hover {
    background: #f5f5f5;
}

.map-toggle button.active:hover {
    background: #1976D2;
}

.zoom-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
}

.zoom-btn {
    width: 35px;
    height: 35px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.google-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .coverage-legend {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
        display: grid;
    }

    .legend-item {
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .coverage-title {
        font-size: 2rem;
    }

    .interactive-map {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Footer */
.footer-cta-section {
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 200px !important;
    padding-bottom: 0px !important;
}

.footer-cta-content h3 {
    font-size: 1.7rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-cta-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

.footer-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.2;
}

.footer-cta-content p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-create-profile {
    background-color: #050a30;
    color: white;
    padding: 6px 7px 6px 25px;
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    filter: grayscale(0%);
}

.btn-create-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-create-profile:hover::before {
    left: 100%;
}

.btn-create-profile:hover {
    background-color: #0a1f4a;
    transform: translateY(-3px) scale(1.02);
    filter: grayscale(25%) brightness(1.1);
    box-shadow: 0 8px 20px rgba(5, 10, 48, 0.3);
}

.btn-create-profile .arrow-circle {
    background-color: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 5px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    max-width: 130px;
    justify-content: center;
    white-space: nowrap;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.social-icon::after {
    content: '';
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 40px;
}

.social-icon {
    position: relative;
}

.social-icon span {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding-top: 100px !important;
        padding-bottom: 50px !important;
    }

    .footer-cta-content h2 {
        font-size: 2rem;
    }

    .footer-social-icons {
        gap: 12px;
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon {
        flex: 1 1 calc(50% - 15px);
        max-width: none;
        padding: 10px;
        font-size: 13px;
        gap: 8px;
    }

    .social-icon i {
        font-size: 16px;
    }

    .social-icon::after {
        left: 35px;
        height: 14px;
    }

    .social-icon span {
        font-size: 12px;
    }
}

footer {
    background: #050a30 url('../images/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 0;
    position: relative;
    margin: 0px 40px 40px 40px;
    border-radius: 20px;
    padding-bottom: 10px;
}

.footer-content-wrapper {
    background: white;
    margin: 40px;
    border-radius: 20px;
    padding: 60px 40px 40px;
    color: #333;
    text-align: center;

}

.footer-content-wrapper {
    background: white;
    margin: 40px;
    border-radius: 20px;
    padding: 60px 40px 40px;
    color: #333;
    text-align: center;
    position: relative;
}

.footer-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, rgba(254, 100, 54, 1) 0%, rgba(2, 0, 65, 1) 72%);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo-section .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo-section .logo .logo-text .logo-hud,
.footer-logo-section .logo .logo-text .logo-consultant {
    color: #333 !important;
}

.footer-description {
    color: #010101;
    font-size: 14px;
    line-height: 1.6;
    max-width: 73%;
    margin: 0 auto 40px;
}

.footer-estimate-section {
    margin-bottom: 40px;
}

.footer-estimate-title {
    color: #ff5c35;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-estimate-subtitle {
    color: #010101;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-estimate-form {
    position: relative;
    max-width: 50%;
    margin: 0 auto 40px;
}

.footer-estimate-form input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #FE6436;
    border-radius: 25px;
    font-size: 14px;
    background: #f8f9fa;
}

.footer-estimate-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #050a30;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-right: 15px !important;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.footer-nav-links a {
    color: #010101;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: #ff5c35;
}

.footer-bottom-info {
    background: linear-gradient(135deg, #ff6b4a 0%, #020041 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: white;
    padding: 12px 30px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    width: 80%;
    margin: auto;
    margin-bottom: -40px;
}

/* Footer Disclosure Section */
.footer-disclosure {
    width: 80%;
    margin: 0 auto 10px auto;
    padding: 16px 30px;
    border-radius: 10px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 50px;
}

.footer-disclosure-header {
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-disclosure-title {
    font-size: 14px;
    font-weight: 400;
    color: white;
}

.footer-disclosure-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-disclosure-link {
    color: #ffb347;
    font-size: 13px;
    text-decoration: none;
}

.footer-disclosure-link:hover {
    text-decoration: underline;
}

.footer-disclosure-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 0 0 12px 0;
}

.footer-disclosure-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.footer-disclosure-verify-link {
    color: #ffb347;
    text-decoration: underline;
}

.footer-disclosure-verify-link:hover {
    opacity: 0.85;
}

.footer-bottom-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom-info a:hover {
    opacity: 0.8;
}

footer::before {}

footer>* {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.brand-desc {
    margin: 25px 0;
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: #ff5c35;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: #ff5c35;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #ff5c35;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer-content-wrapper {
        margin: 20px;
        padding: 40px 20px 30px;
    }

    footer {
        margin: 0 20px 30px 20px;
    }

    .footer-nav-links {
        gap: 20px;
    }

    .footer-bottom-info {
        flex-direction: column;
        text-align: center;
        margin: 20px 0px -30px 0px;
        padding: 15px 20px;
        width: 100%;
    }

    .footer-disclosure {
        width: 100%;
        padding: 14px 20px;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-content-wrapper {
        margin: 15px;
        padding: 30px 15px 20px;
    }

    footer {
        margin: 0 15px 20px 15px;
    }

    .footer-nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-estimate-form {
        max-width: 100%;
    }

    .footer-bottom-info {
        margin: 20px -5px -20px 0px;
        padding: 12px 15px;
        font-size: 11px;
        width: 100% !important;
    }

    .footer-disclosure {
        width: 100%;
        padding: 12px 15px;
        font-size: 12px;
    }

    .footer-disclosure-title {
        font-size: 13px;
    }

    .footer-estimate-title {
        font-size: 24px;
    }
}

/* Forms */
.contact-form {}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-search {
        flex-direction: column;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Trusted Lenders Section */
.trusted-lenders-section {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.trusted-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 50px;
}

.lenders-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
}

.lenders-logos img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
    flex-shrink: 0;
}

.lenders-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lenders-logos {
        gap: 40px;
        display: inline-grid;
    }

    .lenders-logos img {
        height: 30px;
    }
}

/* Explore More Button */
.btn-explore-more {
    background-color: #050a30;
    color: white;
    padding: 6px 7px 6px 20px;
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-explore-more:hover {
    background-color: #0a1f4a;
    transform: translateY(-2px);
}

.btn-explore-more .arrow-circle {
    background-color: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* About Us Banner Section */
.about-banner {
    background: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.about-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    font-family: 'Lexend', sans-serif;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #ff5c35;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
}

.breadcrumb-item {
    color: white;
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-separator {
    color: white;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .about-banner {
        padding: 120px 0 80px;
    }

    .about-banner-title {
        font-size: 2.5rem;
    }
}

/* ================================
   INNER PAGES STYLES
   ================================ */

/* About Us Page */
/* About Us Banner Section */
.about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.about-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    font-family: 'Lexend', sans-serif;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #ff5c35;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
}

.breadcrumb-item {
    color: white;
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-separator {
    color: white;
    margin: 0 10px;
}

/* About Section */
#about {
    background: white;
    padding: 100px 0;
}

.about-container {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-column {
    flex: 1;
    min-width: 300px;
}

.about-content-column {
    flex: 1;
    min-width: 300px;
}

.about-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    margin: 20px 0;
    font-size: 3rem;
}

.about-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #000000;
}

.about-features {
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature-icon {
    width: 20px;
    height: 20px;
    background: #ff5c35;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-text {
    color: #000000;
    font-weight: 500;
}

.about-button {
    background: #050a30;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.about-button-arrow {
    background: #ff5c35;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    color: #ff5c35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.process-title {
    font-size: 3rem;
    color: #000000;
    margin: 0;
    font-weight: 600;
    padding-top: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.process-steps {
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-indicator-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    position: relative;
}

.step-indicator {
    width: 20px;
    height: 20px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #ff5c35;
}

.step-line {
    width: 2px;
    height: 60px;
    background: #ddd;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-content {
    flex: 1;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.step-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.step-title {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
    transition: all 0.3s ease;
}

.step-title.active {
    color: #ff6b4a;
}

.step-text {
    color: #999;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.step-text.active {
    color: #000000;
}

.progress-line {
    position: absolute;
    left: 9px;
    top: 10px;
    width: 2px;
    height: 100%;
    background: #ddd;
    z-index: 1;
}

.progress-fill {
    width: 100%;
    height: 0%;
    background: #ff5c35;
    transition: height 0.6s ease;
}

.active-indicator {
    position: absolute;
    left: -5px;
    top: 0px;
    width: 30px;
    height: 30px;
    background: rgb(5, 10, 48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.6s;
    transform: translateY(0px);
}

.active-indicator-dot {
    width: 12px;
    height: 12px;
    background: #ff5c35;
    border-radius: 50%;
}

.process-image {
    position: relative;
}

.process-image img {
    width: 100%;
    border-radius: 20px;
}

.process-image-text {
    margin-top: 20px;
    padding-right: 180px;
}

.process-image-description {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Process Section See More Button */
.process-see-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #050a30;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    align-items: center;
    font-weight: 500;
    z-index: 2;
}

.process-see-more-arrow {
    background: #ff5c35;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-see-more-arrow i {
    color: white;
    font-size: 12px;
}

/* Consultant Duties Section */
#consultant-duties {
    background: url('../images/gr-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.consultant-duties-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.consultant-duties-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 130px 5px 130px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.consultant-duties-title {
    color: white;
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 600;
}

.consultant-duties-description {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 100;
}

.consultant-duties-list {
    text-align: left;
    margin-bottom: 30px;
}

.consultant-duty-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.consultant-duty-item:last-child {
    margin-bottom: 0;
}

.consultant-duty-icon {
    width: 24px;
    height: 24px;
    background: #ff5c35;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.consultant-duty-icon i {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.consultant-duty-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 100;
}

/* Consultant Role Section */
.consultant-role-section {
    padding: 100px 0;
    background: white;
}

.consultant-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultant-role-image-container {
    position: relative;
}

.consultant-role-image-container img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #ff5c35;
    padding: 10px;
}

.consultant-role-content {
    padding-left: 40px;
}

.consultant-role-subtitle {
    color: #ff5c35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.consultant-role-title {
    font-size: 44px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    padding-top: 20px;
    padding-bottom: 10px;
}

.consultant-role-description {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 100;
}

.consultant-role-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultant-role-item {
    display: flex;
    align-items: center;
}

.consultant-role-icon {
    width: 20px;
    height: 20px;
    background: #ff5c35;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.consultant-role-text {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 100;
}

/* Consultant Role Section Reverse */
.consultant-role-section-reverse {
    padding: 100px 0;
}

.consultant-role-grid-reverse {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultant-role-section-reverse .consultant-role-content {
    padding-right: 40px;
    padding-left: 0;
}

/* Renovation Consulting Section */
.renovation-consulting-section {
    padding: 100px 0px;
    background: #F7F6F6;
    width: 95%;
    margin: auto;
    border-radius: 20px;
}

.renovation-consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.renovation-consulting-content {
    padding-right: 40px;
}

.renovation-consulting-title {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.renovation-consulting-description {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 100;
}

.renovation-consulting-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.renovation-consulting-item {
    display: flex;
    align-items: center;
}

.renovation-consulting-icon {
    width: 20px;
    height: 20px;
    background: #ff5c35;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.renovation-consulting-text {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 100;
}

.renovation-btn {
    background: #050a30;
    color: white;
    padding: 6px 7px 6px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.renovation-btn-arrow {
    background: #ff5c35;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.renovation-btn-arrow i {
    color: white;
    font-size: 12px;
}

.renovation-consulting-image-container {
    position: relative;
}

.renovation-consulting-image-container img {
    width: 100%;
    border-radius: 20px;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b4a 0%, #020041 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-section .container {
    max-width: 700px;
    width: 100%;
}

.why-us-card {
    background: rgba(20, 10, 40, 0.75);
    border-radius: 16px;
    padding: 50px 50px;
    text-align: center;
}

.why-us-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff6b4a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-us-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.why-us-divider {
    display: none;
}

.why-us-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: center;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
    display: inline-block;
}

.why-us-list li {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.8;
    padding-left: 36px;
    position: relative;
    margin-bottom: 8px;
}

.why-us-list li::before {
    content: '\2713';
    font-family: 'Lexend', Arial, sans-serif;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5c35;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1160px;
    margin: 0 auto;
    align-items: stretch;
}

.mission-card {
    background: #050a30;
    padding: 40px 30px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.vision-card {
    background: #ff5c35;
    padding: 40px 30px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.mission-title,
.vision-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.mission-subtitle {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight: 300;
}

.vision-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight: 300;
}

.mission-text,
.vision-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
    margin: 0 0 12px 0;
    font-weight: 100;
}

.mission-expanded {
    display: none;
    text-align: left;
    margin-top: 10px;
}

.mission-expanded.open {
    display: block;
}

.vision-expanded {
    display: none;
    text-align: left;
    margin-top: 10px;
}

.vision-expanded.open {
    display: block;
}

.mission-list,
.vision-list {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0 14px 0;
    text-align: left;
}

.mission-list li,
.vision-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: white;
    font-weight: 100;
    margin-bottom: 4px;
}

.mission-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.mission-learn-more-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.mission-learn-more-btn i {
    transition: transform 0.3s ease;
}

.mission-learn-more-btn.active i {
    transform: rotate(180deg);
}

/* Responsive Design for Mission Vision */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 25px;
    }

    .mission-title,
    .vision-title {
        font-size: 1.5rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #ff5c35;
    margin-bottom: 10px;
}

.stat-item p {
    color: #000000;
    font-weight: 600;
}

/* About Us Banner Section */
.about-banner {
    background: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.about-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-banner-title {
    font-size: 66px;
    font-weight: 500;
    color: white;
    margin-bottom: 30px;
    font-family: 'Lexend', sans-serif;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #ff5c35;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
}

.breadcrumb-item {
    color: white;
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-separator {
    color: white;
    margin: 0 10px;
}

/* About Us Process Section */
.process-steps {
    position: relative;
}

.process-step {
    position: relative;
}

.step-indicator {
    transition: all 0.3s ease;
}

.step-line {
    transition: all 0.3s ease;
}

.step-icon {
    transition: all 0.3s ease;
}

.progress-line {
    position: absolute;
}

.progress-fill {
    transition: height 0.6s ease;
}

.active-indicator {
    transition: 0.6s;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .about-banner {
        padding: 120px 0 80px;
    }

    .about-banner-title {
        font-size: 2.5rem;
    }

    .process-steps {
        margin-bottom: 40px;
    }

    .process-image {
        order: -1;
    }
}

/* Contact Us Page */
/* Add contact us specific styles here when needed */

/* How It Works Page */
/* Add how it works specific styles here when needed */

/* Feasibility Page */
/* Add feasibility specific styles here when needed */

/* Find Contractor Page */
/* Add find contractor specific styles here when needed */

/* Pricing Page */
/* Add pricing specific styles here when needed */

/* Tools Page */
/* Add tools specific styles here when needed */
/* ================================
   GLOBAL BUTTON STYLES UPDATE
   ================================ */

/* Update all buttons with consistent padding */
.btn,
.btn-primary,
.btn-secondary,
.btn-search,
.btn-explore-more,
.btn-find-contractor,
.btn-success-stories,
.btn-submit,
.btn-login-signup,
.about-button,
.process-see-more,
button[type="submit"],
a[class*="btn"],
button[class*="btn"] {
    padding: 6px 10px 6px 20px;
}

/* Specific button overrides */
.hero-search-container button {
    padding: 6px 40px 6px 40px !important;
}

.contact-form button {
    padding: 15px 30px 15px 30px !important;
    font-weight: 100;
    display: block;
    margin-top: -20px;
}

/* Process section See More button */
.process-image a {
    display: inline-flex !important;
}

/* About section button */
.about-section a[class*="btn"] {
    padding: 6px 7px 6px 20px !important;
}

/* Header login/signup button */
.header-actions a {
    padding: 6px 7px 6px 20px !important;
}

/* Breadcrumb styling exception - keep original padding */
.breadcrumb {
    padding: 12px 25px !important;
}

/* How It Works Page - Renovation Process Section */
.renovation-process-section {
    padding: 100px 0;
    background: white;
}

.renovation-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.renovation-process-title {
    font-size: 44px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.renovation-process-subtitle {
    font-size: 1.1rem;
    color: #000000;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
}

.renovation-process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps-left,
.process-steps-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: space-around;
}

.process-steps .step-icon {
    transform: scale(1.8) !important;
}

.process-steps .step-header {
    display: inline-flex !important;
}

.process-steps h4.step-title {
    padding-left: 16px;
    font-size: 25px;
    margin-bottom: 22px;
}

.process-step-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    width: 280px;
    z-index: 11;
    border: 1px solid transparent;
    border-radius: 15px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #ff5c35, #050a30) border-box;
}

.process-step-card:hover {
    border-color: #ff5c35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 92, 53, 0.15);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 8px;
    overflow: hidden;
    transform: scale(4.8) !important;
    margin-bottom: 22px;
}

.step-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.step-title {
    font-size: 23px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
}

.process-mobile-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-process-image {
    width: 100%;
    height: auto;
    position: relative;
    transform: scale(1.3);
    top: 100px;
    right: 0px;
}

/* Arrows removed - using image arrows instead */
.process-step-card::after {
    display: none;
}

.process-steps-left .process-step-card::after {
    display: none;
}

.process-steps-right .process-step-card::after {
    display: none;
}

/* Arrow heads removed - using image arrows instead */
.process-step-card::before {
    display: none;
}

.process-steps-left .process-step-card::before {
    display: none;
}

.process-steps-right .process-step-card::before {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .renovation-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .process-steps-left,
    .process-steps-right {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .process-step-card {
        flex: 0 0 calc(50% - 20px);
        min-width: 250px;
    }

    .process-step-card::after,
    .process-step-card::before {
        display: none;
    }

    .mobile-process-image {
        max-width: 250px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .renovation-process-title {
        font-size: 2rem;
    }

    .renovation-process-subtitle {
        font-size: 1rem;
    }

    .process-steps-left,
    .process-steps-right {
        flex-direction: column;
    }

    .process-step-card {
        flex: none;
    }

    .mobile-process-image {
        max-width: 200px;
    }
}

/* How It Works Page CSS */
.how-it-works-process-section {
    padding: 100px 0;
    background: white;
}

.how-it-works-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.how-it-works-step-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: #f8f9fa;
}

.how-it-works-step-icon {
    width: 80px;
    height: 80px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 15px;
}

.how-it-works-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.how-it-works-step-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.how-it-works-step-text {
    color: #000000;
    line-height: 1.6;
}

.how-it-works-benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.how-it-works-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.how-it-works-benefit-item {
    text-align: center;
}

.how-it-works-benefit-item i {
    font-size: 3rem;
    color: #ff5c35;
    margin-bottom: 20px;
}

.how-it-works-benefit-item h3 {
    margin-bottom: 15px;
}

.how-it-works-benefit-item p {
    color: #000000;
}

@media (max-width: 768px) {
    .how-it-works-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Individual Step Card Classes */
.step-card-1 {
    /* Initial Site Visit - Step 1 */
}

.step-card-2 {
    /* Approval & Paperwork - Step 2 */
}

.step-card-3 {
    /* Inspections & Monitoring - Step 3 */
}

.step-card-4 {
    /* Scope Of Work - Step 4 */
}

.step-card-5 {
    /* Contractor Involvement - Step 5 */
}

.step-card-6 {
    /* Project Completion - Step 6 */
}

/* Common Mistakes Section */
.common-mistakes-section {
    padding: 100px 0;
    background: #f8f9fa;
    width: 95%;
    margin: auto;
    border-radius: 20px;
    margin-top: 150px;
}

.common-mistakes-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.common-mistakes-content {
    padding-right: 20px;
}

.common-mistakes-title {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.common-mistakes-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
}

.common-mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mistake-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mistake-icon {
    width: 24px;
    height: 24px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.mistake-icon i {
    color: white;
    font-size: 12px;
}

.mistake-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.5;
}

.common-mistakes-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.common-mistakes-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .common-mistakes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .common-mistakes-content {
        padding-right: 0;
        text-align: center;
    }

    .common-mistakes-title {
        font-size: 2rem;
    }

    .mistake-item {
        text-align: left;
    }
}

/* Find Consultant CTA Section */
.find-consultant-cta-section {
    padding: 100px 0;
    background: url('../images/gr-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    width: 95%;
    margin: auto;
    border-radius: 20px;
    margin-bottom: 50px;
}


.find-consultant-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.find-consultant-cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.find-consultant-cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 100;
}

.find-consultant-cta-button {
    display: flex;
    justify-content: center;
}

.btn-find-consultant-cta {
    background-color: #050a30;
    color: white;
    padding: 6px 7px 6px 25px;
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    filter: grayscale(0%);
}

.btn-find-consultant-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-find-consultant-cta:hover::before {
    left: 100%;
}

.btn-find-consultant-cta:hover {
    background-color: #0a1f4a;
    transform: translateY(-3px) scale(1.02);
    filter: grayscale(25%) brightness(1.1);
    box-shadow: 0 8px 20px rgba(5, 10, 48, 0.3);
}

.cta-arrow-circle {
    background-color: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
}

.btn-find-consultant-cta:hover .cta-arrow-circle {
    background-color: #e04a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .find-consultant-cta-title {
        font-size: 2rem;
    }

    .find-consultant-cta-description {
        font-size: 1rem;
    }

    .find-consultant-cta-section {
        padding: 60px 0;
    }
}

/* Tools Benefits Section */
.tools-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.tools-benefits-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}

.tools-benefits-content {
    padding-right: 0px;
}

.tools-benefits-title {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1;
}

.tools-benefits-description {
    font-size: 16px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tools-benefits-list {
    display: inline-flex;
    flex-direction: column;
}

.tools-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    width: 120%;
}

.tools-benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools-benefit-icon i {
    color: white !important;
    font-size: 12px !important;
    font-weight: bold;
}

.tools-benefit-text {
    align-items: center;
    gap: 0;
    line-height: 1.6;
}

.tools-benefits-section-makeover {
    padding: 80px 0;
    background: #F6F6F6;
    width: 95%;
    margin: auto;
    border-radius: 20px;
}

.tools-benefits-section-makeover .tools-benefit-item {
    margin-bottom: 8px;
}

.tools-benefits-section-makeover .tools-benefits-description {
    margin-bottom: 35px;
}

.benefit-title {
    font-size: 14px;
    font-weight: 500;
    color: #ff5c35;
}

.benefit-description {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.tools-benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tools-benefits-image-container {
    width: 100%;
    max-width: 500px;
}

.tools-benefits-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tools-benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .tools-benefits-content {
        padding-right: 0;
    }

    .tools-benefits-title {
        font-size: 40px;
    }

    .tools-benefit-item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .tools-benefits-section {
        padding: 60px 0;
    }

    .tools-benefits-title {
        font-size: 32px;
    }

    .tools-benefits-description {
        font-size: 16px;
    }

    .benefit-title {
        font-size: 16px;
    }

    .benefit-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .tools-benefits-section {
        padding: 40px 0;
    }

    .tools-benefits-grid {
        gap: 40px;
    }

    .tools-benefits-title {
        font-size: 28px;
    }
}

/* Free Tools Section */
.free-tools-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 95%;
    margin: auto;
    border-radius: 20px;
}

.free-tools-header {
    text-align: center;
    margin-bottom: 60px;
}

.free-tools-title {
    font-size: 44px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.free-tools-description {
    font-size: 18px;
    color: #000000;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.3;
}

.free-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tool-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 60px 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
}

.tool-card.orange-card::before {}

.tool-card-content {
    position: relative;
    z-index: 2;
    color: white;
}

.tool-card-title {
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-bottom: 16px;
    line-height: 0;
}

.tool-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 300;
}

.tool-card-btn {
    background: #ff5c35;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 10px 15px 10px 18px !important;
    margin-top: -10px;
}

.tool-card-btn:hover {
    background: #e54a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 92, 53, 0.3);
}

.orange-card .tool-card-btn {
    background: rgba(25, 35, 85, 0.9);
    color: white;
}

.orange-card .tool-card-btn:hover {
    background: rgba(25, 35, 85, 1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .free-tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .free-tools-title {
        font-size: 40px;
    }

    .tool-card {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .free-tools-section {
        padding: 60px 0;
    }

    .free-tools-title {
        font-size: 32px;
    }

    .free-tools-description {
        font-size: 16px;
    }

    .tool-card {
        padding: 30px 25px;
        min-height: 300px;
    }

    .tool-card-title {
        font-size: 24px;
    }

    .tool-card-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .free-tools-section {
        padding: 40px 0;
    }

    .free-tools-title {
        font-size: 28px;
    }

    .tool-card {
        padding: 25px 20px;
    }
}

/* Tools Journey Section */
.tools-journey-section {
    padding: 80px 0;
    background: #ffffff;
}

.tools-journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.tools-journey-left {}

.tools-journey-title {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    max-width: 90%;
}

.tools-journey-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.gradient-line {
    width: 4px;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, #020041 20%, #FF5C36 81%, transparent 100%);
    border-radius: 2px;
}

.tools-journey-right {
    display: inline-flex;
    align-items: center;
    padding-left: 40px;
}

.tools-journey-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tools-journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tools-journey-left {
        justify-content: center;
        padding-right: 0;
    }

    .tools-journey-title {
        text-align: center;
        font-size: 40px;
        max-width: none;
    }

    .tools-journey-divider {
        height: 60px;
    }

    .gradient-line {
        width: 60%;
        height: 4px;
        background: linear-gradient(to right,
                transparent 0%,
                #ff5c35 20%,
                #ff5c35 80%,
                transparent 100%);
    }

    .tools-journey-right {
        padding-left: 0;
        justify-content: center;
    }

    .tools-journey-description {
        text-align: center;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .tools-journey-section {
        padding: 60px 0;
    }

    .tools-journey-title {
        font-size: 32px;
    }

    .tools-journey-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .tools-journey-section {
        padding: 40px 0;
    }

    .tools-journey-title {
        font-size: 28px;
    }

    .tools-journey-grid {
        gap: 30px;
    }
}

/* Independent Consultants Section */
.independent-consultants-section {
    padding: 80px 0;
    background: #ffffff;
}

.independent-consultants-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0px;
    align-items: center;
}

.independent-consultants-content {
    padding-right: 20px;
}

.independent-consultants-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1;
}

.independent-consultants-description {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    width: 94%;
}

.independent-consultants-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.independent-consultants-image-container {
    width: 100%;
    max-width: 500px;
}

.independent-consultants-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .independent-consultants-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .independent-consultants-content {
        padding-right: 0;
    }

    .independent-consultants-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .independent-consultants-section {
        padding: 60px 0;
    }

    .independent-consultants-title {
        font-size: 32px;
    }

    .independent-consultants-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .independent-consultants-section {
        padding: 40px 0;
    }

    .independent-consultants-grid {
        gap: 40px;
    }

    .independent-consultants-title {
        font-size: 28px;
    }
}

/* Makeover Preferred Consultants Section */
.makeover-preferred-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 95%;
    margin: auto;
    margin-top: 100px;
    border-radius: 20px;
}

.makeover-preferred-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 15px;
    align-items: center;
}

.makeover-preferred-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.makeover-preferred-image-container {
    width: 100%;
    max-width: 500px;
}

.makeover-preferred-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.makeover-preferred-content {
    padding-left: 20px;
}

.makeover-preferred-title {
    font-size: 37px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1;
}

.makeover-preferred-description {
    font-size: 15px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.5;
}

.makeover-preferred-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.makeover-preferred-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.makeover-preferred-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.makeover-preferred-icon i {
    color: white !important;
    font-size: 12px !important;
}

.makeover-preferred-text {
    display: flex;
    align-items: center;
    gap: 0;
    line-height: 1.6;
}

.preferred-title {
    font-size: 14px;
    font-weight: 500;
    color: #ff5c35;
    margin-right: 5px;
}

.preferred-description {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .makeover-preferred-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .makeover-preferred-content {
        padding-left: 0;
        order: -1;
    }

    .makeover-preferred-title {
        font-size: 40px;
    }

    .makeover-preferred-item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .makeover-preferred-section {
        padding: 60px 0;
    }

    .makeover-preferred-title {
        font-size: 32px;
    }

    .makeover-preferred-description {
        font-size: 16px;
    }

    .preferred-title {
        font-size: 16px;
    }

    .preferred-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .makeover-preferred-section {
        padding: 40px 0;
    }

    .makeover-preferred-grid {
        gap: 40px;
    }

    .makeover-preferred-title {
        font-size: 28px;
    }
}

/* Pricing Banner Specific Styles */
.pricing-banner .about-banner-container {
    max-width: 1400px;
    text-align: center;
}

.pricing-banner-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 55%;
    font-weight: 200;
    margin: auto;
}

.pricing-banner-button {
    margin-top: 40px;
}

.tools-benefits-grid-makeover {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
}

.btn-fee-sheet {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #020041;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 200;
    transition: all 0.3s ease;
    border: 2px solid #020041;
}

.btn-fee-sheet:hover {
    background: rgba(25, 35, 85, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 35, 85, 0.3);
    color: white;
    text-decoration: none;
}

.fee-sheet-arrow {
    background: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fee-sheet-arrow i {
    color: white;
    font-size: 16px;
}

.btn-fee-sheet:hover .fee-sheet-arrow {
    transform: translateX(3px);
}

/* Responsive Design for Pricing Banner */
@media (max-width: 768px) {
    .pricing-banner-description {
        font-size: 16px;
        margin: 25px 0 35px 0;
        max-width: 100% !important;
    }

    .btn-fee-sheet {
        font-size: 16px;
        padding: 12px 25px;
        gap: 12px;
    }

    .fee-sheet-arrow {
        width: 35px;
        height: 35px;
    }

    .fee-sheet-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pricing-banner-description {
        font-size: 14px;
        margin: 20px 0 30px 0;
    }

    .btn-fee-sheet {
        font-size: 14px;
        padding: 10px 20px;
        gap: 10px;
    }

    .fee-sheet-arrow {
        width: 30px;
        height: 30px;
    }
}

/* Understanding Roles Section */
.understanding-roles-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 90%;
    margin: auto;
    border-radius: 25px;







    section.understanding-roles-section .container {
        max-width: 1400px !important;
    }

    ;
}

.understanding-roles-header {
    text-align: center;
    margin-bottom: 60px;
}

.understanding-roles-title {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.understanding-roles-description {
    font-size: 16px;
    color: #000000;
    margin: 0 auto;
    line-height: 1.6;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.role-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1;
}

.role-card.active::before {
    background: linear-gradient(135deg, #1a2355 0%, #ff5c35 100%);
}

.role-card:hover::before {
    background: linear-gradient(135deg, #1a2355 0%, #ff5c35 100%);
}

.role-card.active {
    border-color: transparent;
    color: white;
}

.role-card:hover {
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.role-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 8px solid #d1d5db;
    box-sizing: border-box;
}

.role-card.active .role-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.role-card:hover .role-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.role-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.role-title {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.role-card.active .role-title {
    color: white;
}

.role-card:hover .role-title {
    color: white;
}

.role-description {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    transition: all 0.3s ease;
    font-weight: 300;
}

section.understanding-roles-section .container {
    max-width: 1400px !important;
}

.role-card.lender-role {
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #f05837, #272754) border-box;
}

.role-card.active .role-description {
    color: rgba(255, 255, 255, 0.9);
}

.role-card:hover .role-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 60px auto 0;
    }

    .understanding-roles-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .understanding-roles-section {
        padding: 60px 0;
    }

    .understanding-roles-title {
        font-size: 32px;
    }

    .understanding-roles-description {
        font-size: 16px;
    }

    .role-card {
        padding: 30px 25px;
    }

    .role-title {
        font-size: 20px;
    }

    .role-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .understanding-roles-section {
        padding: 40px 0;
    }

    .understanding-roles-title {
        font-size: 28px;
    }

    .role-card {
        padding: 25px 20px;
    }

    .role-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .role-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Key Tips Section */
.key-tips-section {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
}

.key-tips-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.key-tips-content {
    padding-right: 20px;
}

.key-tips-title {
    font-size: 39px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.key-tips-description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.4;
}

.key-tips-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.key-tips-section .container {
    max-width: 1400px !important;
}

.key-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.key-tip-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.key-tip-icon i {
    color: white !important;
    font-size: 12px !important;
    font-weight: bold;
}

.key-tip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tip-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

.tip-description {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}

.key-tips-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.key-tips-image-container {
    width: 100%;
    max-width: 500px;
}

.key-tips-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .key-tips-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .key-tips-content {
        padding-right: 0;
        order: 2;
    }

    .key-tips-image {
        order: 1;
    }

    .key-tips-title {
        font-size: 40px;
    }

    .key-tip-item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .key-tips-section {
        padding: 60px 0;
    }

    .key-tips-title {
        font-size: 32px;
    }

    .key-tips-description {
        font-size: 16px;
    }

    .tip-title {
        font-size: 16px;
    }

    .tip-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .key-tips-section {
        padding: 40px 0;
    }

    .key-tips-grid {
        gap: 40px;
    }

    .key-tips-title {
        font-size: 28px;
    }
}

/* Avoid Red Flags Section */
.avoid-red-flags-section {
    padding: 80px 0;
    background: #f8f9fa;
    
    
     /* ðŸ”¥ width control */
     /* ðŸ”¥ center align */
    background-color: #f8f9fa;
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(to right, #f8f9fa, #ff5c3559, #ff5c3640, #f8f9fa);
    background-repeat: no-repeat;
    background-size: 60% 2px; /* border width */
    background-position: center bottom;
}

.avoid-red-flags-header {
    text-align: center;
    margin-bottom: 60px;
}

.avoid-red-flags-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.avoid-red-flags-description {
    font-size: 18px;
    color: #666666;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

.red-flags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.red-flag-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.red-flag-card.center-card {
    background: #ffffff;
    border-color: #ffffff;
    color: white;
}

.red-flag-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #d1d5db;
    box-sizing: border-box;
}

.red-flag-card.center-card .red-flag-icon {
    background: rgb(255 92 53);
    border-color: rgb(209 213 219);
}

.red-flag-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.avoid-red-flags-section .container {
    max-width: 1410px !important;
}

.red-flag-card:hover {
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #f05837, #272754) border-box;
}

.red-flag-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.red-flag-card.center-card .red-flag-title {}

.red-flag-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
}

.red-flag-card.center-card .red-flag-description {}

/* Work With Trusted Contractors Section */
.trusted-contractors-section {
    background: #f8f9fa;
    padding: 80px 0;
    background: #f8f9fa;
    background-color: #f8f9fa;
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(to right, #f8f9fa, #ff5c3559, #ff5c3640, #f8f9fa);
    background-repeat: no-repeat;
    background-size: 60% 2px;
    background-position: center bottom;
}

.trusted-contractors-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.trusted-contractors-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-contractors-image-container {
    width: 100%;
    max-width: 500px;
}

.trusted-contractors-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trusted-contractors-content {
    padding-left: 20px;
}

.trusted-contractors-title {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.0;
}

.trusted-contractors-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.trusted-contractors-button {
    margin-top: 40px;
}

.btn-explore-network {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #1a2355;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.btn-explore-network:hover {
    background: #0f1a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 85, 0.3);
    color: white;
    text-decoration: none;
}

.explore-arrow {
    background: #ff5c35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.explore-arrow i {
    color: white;
    font-size: 16px;
}

.btn-explore-network:hover .explore-arrow {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .red-flags-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 60px auto 0;
    }

    .trusted-contractors-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .trusted-contractors-content {
        padding-left: 0;
        order: 2;
    }

    .trusted-contractors-image {
        order: 1;
    }

    .avoid-red-flags-title,
    .trusted-contractors-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .avoid-red-flags-section,
    .trusted-contractors-section {
        padding: 60px 0;
    }

    .avoid-red-flags-title,
    .trusted-contractors-title {
        font-size: 32px;
    }

    .avoid-red-flags-description,
    .trusted-contractors-description {
        font-size: 16px;
    }

    .red-flag-card {
        padding: 30px 25px;
    }

    .red-flag-title {
        font-size: 20px;
    }

    .red-flag-description {
        font-size: 14px;
    }

    .btn-explore-network {
        font-size: 16px;
        padding: 12px 25px;
        gap: 12px;
    }

    .explore-arrow {
        width: 35px;
        height: 35px;
    }

    .explore-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {

    .avoid-red-flags-section,
    .trusted-contractors-section {
        padding: 40px 0;
    }

    .avoid-red-flags-title,
    .trusted-contractors-title {
        font-size: 28px;
    }

    .red-flag-card {
        padding: 25px 20px;
    }

    .red-flag-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        border-width: 6px;
    }

    .red-flag-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Success Stories Page Styles */
.success-stories-main {
    padding: 100px 0;
    background: white;
}

.featured-success-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.success-item.large {
    height: 400px;
}

.success-item.large .video-image {
    height: 100%;
}

.success-item.large .video-image img {
    height: 100%;
    object-fit: cover;
}

.featured-story-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.featured-story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.story-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Design for Success Stories */
@media (max-width: 768px) {
    .featured-success-story {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .success-item.large {
        height: 250px;
    }

    .featured-story-content h3 {
        font-size: 2rem;
    }

    .story-stats {
        gap: 20px;
        justify-content: center;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .story-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Ensure video thumbnail images display properly */
.success-section .video-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.success-section .video-image {
    overflow: hidden;
    border-radius: 15px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5c35, #ff7a5c);
    border-radius: 15px;
    padding: 15px;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #050a30;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.service-features li:before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
    position: absolute;
    left: 0;
    top: 8px;
    color: #ff5c35;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon img {
        width: 40px;
        height: 40px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
    width: 95%;
    margin: auto;
    border-radius: 30px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

section.services-grid-section h2 {
    color: #000000;
    font-weight: 600;
    font-size: 44px;
}

.services-grid-section p.section-description {
    width: 70%;
    margin: auto;
    padding-top: 10px;
}

.service-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-image-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #050a30;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-image-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(135deg, #050a30, #1a2b5c);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    gap: 10px;
    margin-top: auto;
    box-sizing: border-box;
}

.service-btn:hover {
    background: linear-gradient(135deg, #ff5c35, #ff7a5c);
    transform: translateX(5px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background 0.3s ease;
}

.service-btn:hover .btn-arrow {
    background: white;
    color: #ff5c35;
}

/* Responsive Design for Services Grid */
@media (max-width: 992px) {
    .services-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 180px;
    }

    .service-image-content {
        padding: 20px;
    }

    .service-image-content h3 {
        font-size: 16px;
    }
}

/* Contact Information Section */
.contact-info-section {padding-top: 80px;padding-bottom: 0px;}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Company Information Card */
.company-info-card {
    background: linear-gradient(135deg, #ff5c35, #050a30);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
}

.company-info-card h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 70px;
    color: white;
}

.company-details {
    margin-bottom: 40px;
}

.company-detail {
    display: inline-flex;
    margin-bottom: 25px;
    gap: 15px;
    align-items: center;
}

.company-detail i {
    font-size: 18px;
    color: white;
    margin-top: 5px;
    min-width: 20px;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 15px;
    font-weight: 200;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.4;
}

.social-connect {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.connect-label {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #ff5c35;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    align-content: center;
}

.form-header {
    margin-bottom: 30px;
}

.form-subtitle {
    color: #ff5c35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-section .container {
    max-width: 1400px;
}

.company-detail i {
    background-color: #f8f9fa30;
    border-radius: 30px;
    align-content: center;
    padding: 19px;
    height: 54px;
}

.company-info-card .social-icon::after {
    display: none;
}

.form-header h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    margin: 10px 0 15px 0;
    line-height: 1.2;
}

.form-header p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    background: #ffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5c35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.submit-btn {
    background: #050a30;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ff5c35;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 92, 53, 0.3);
}

.contact-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

.contact-description p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .company-info-card,
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Lenders Page Styles */

/* Lenders Hero Section */
.lenders-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lenders-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #050a30;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #ff5c35;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ff5c35;
    color: white;
}

.btn-primary:hover {
    background: #050a30;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 92, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #050a30;
    border: 2px solid #050a30;
}

.btn-secondary:hover {
    background: #050a30;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Benefits Section */
.lenders-benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff5c35, #ff7a5c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #050a30;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Process Section */
.lenders-process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    margin-top: 60px;
}

.process-step {
    /* display: grid; */
    /* grid-template-columns: 80px 1fr 300px; */
    /* gap: 40px; */
    /* align-items: center; */
    /* margin-bottom: 60px; */
    /* position: relative; */
}

.process-step.reverse {
    grid-template-columns: 300px 1fr 80px;
}

.process-step.reverse .step-content {
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5c35, #ff7a5c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(255, 92, 53, 0.3);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #050a30;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.step-image {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.lenders-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #050a30, #1a2b5c);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.lenders-cta-section .btn-primary {
    background: #ff5c35;
}

.lenders-cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.lenders-cta-section .btn-secondary:hover {
    background: white;
    color: #050a30;
}

.btn-success-stories-page {
    left: 28rem;
    top: -4rem;
}

section.success-section .section-text .section-description {width: 65%;}

.section-title h2 {
    font-size: 44px;
    color: #000000;
    font-weight: 600;
    line-height: 1.8;
}

section.success-section.scroll-animate.fade-in.animate .section-button {
    position: absolute;
    right: 150px;
}

.main-header .container {
    max-width: 1410px;
}

/* ========================================
   MAKEOVER PREFERRED CONSULTANT PAGE STYLES
   ======================================== */
.consultant-role-grid-makeover {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0px;
    align-items: center;
}

.consultant-role-grid-reverse-makeover {
    display: grid;
    grid-template-columns: 1.4fr 1.3fr;
    gap: 0px;
    align-items: center;
}

/* Preferred Benefits Section */
.preferred-benefits-section {
    padding: 80px 0;
    background: white;
}

.preferred-benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.preferred-benefits-section .benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.preferred-benefits-section .benefit-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.requirement-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5c35, #ff7a5c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.requirement-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #050a30;
    margin-bottom: 10px;
    line-height: 1.3;
}

.requirement-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Application Process Section */
.application-process-section {
    padding: 80px 0;
    background: white;
}

.application-process-section .process-steps {
    margin-top: 60px;
}

.application-process-section .process-step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.application-process-section .process-step.reverse {
    grid-template-columns: 300px 1fr 80px;
}

.application-process-section .process-step.reverse .step-content {
    text-align: right;
}

.application-process-section .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #050a30, #1a2b5c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(5, 10, 48, 0.3);
}

.application-process-section .step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #050a30;
    margin-bottom: 15px;
}

.application-process-section .step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.application-process-section .step-image {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.application-process-section .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Preferred Consultant Banner */
.preferred-consultant-banner {
    background: linear-gradient(135deg, #050a30 0%, #1a2b5c 50%, #ff5c35 100%);
    color: white;
}

.preferred-consultant-banner .about-banner-title {
    color: white;
}

.preferred-consultant-banner .pricing-banner-description {
    color: rgba(255, 255, 255, 0.9);
}

.preferred-consultant-banner .btn-fee-sheet {
    background: white;
    color: #050a30;
}

.preferred-consultant-banner .btn-fee-sheet:hover {
    background: #ff5c35;
    color: white;
}

/* Mobile Responsive for Preferred Consultant Page */
@media (max-width: 992px) {
    .preferred-benefits-section .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .application-process-section .process-step,
    .application-process-section .process-step.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .application-process-section .step-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .preferred-benefits-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preferred-benefits-section .benefit-card {
        padding: 25px 20px;
    }

    .requirement-item {
        padding: 20px;
        gap: 15px;
    }

    .requirement-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .requirement-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .requirement-content p {
        font-size: 14px;
    }

    .application-process-section .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto;
    }

    .application-process-section .step-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .application-process-section .step-content p {
        font-size: 14px;
    }

    .application-process-section .step-image {
        height: 180px;
    }
}

@media (max-width: 480px) {

    .requirements-section,
    .preferred-benefits-section,
    .application-process-section {
        padding: 60px 0;
    }

    .preferred-benefits-section .benefit-card {
        padding: 20px 15px;
    }

    .requirement-item {
        padding: 15px;
        gap: 12px;
    }

    .requirement-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .requirement-content h3 {
        font-size: 16px;
    }

    .requirement-content p {
        font-size: 13px;
    }
}

/* Transparent Pricing Section */
.transparent-pricing-section {
    padding-bottom: 0;
}

.transparent-pricing-content {
    align-items: center;
}

.pricing-text {
    text-align: center;
}

.pricing-text h2 {
    font-size: 44px;
    font-weight: 600;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto;
}

.pricing-image {
    text-align: center;
}

.pricing-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    margin-top: 40px;
}

.pricing-image img:hover {
    transform: translateY(-5px);
}

/* Mobile Responsive for Transparent Pricing */
@media (max-width: 768px) {
    .transparent-pricing-section {
        padding: 60px 0;
    }

    .transparent-pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pricing-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pricing-text p {
        font-size: 14px;
        max-width: 100%;
    }

    .pricing-image img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .transparent-pricing-section {
        padding: 50px 0;
    }

    .transparent-pricing-content {
        gap: 30px;
    }

    .pricing-text h2 {
        font-size: 24px;
    }

    .pricing-text p {
        font-size: 13px;
    }
}

section#consultant-role {
    padding-top: 100px;
    padding-bottom: 10px;
}

section#consultant-role-2 {
    padding-top: 60px;
    padding-bottom: 40px;
}

/* View Fee Sheet Section */
.view-fee-sheet-section {
    padding: 140px 0;
    background: url('../images/make-bg.png');
    background-size: 100% 100%;
    background-attachment: fixed;
    color: white;
    text-align: center;
    width: 95%;
    margin: auto;
    border-radius: 20px;
}

.fee-sheet-content {
    max-width: 1400px;
    margin: 0 auto;
}

.fee-sheet-content h2 {
    font-size: 44px;
    font-weight: 400;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.fee-sheet-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 80%;
    font-weight: 100;
    margin: auto;
    margin-bottom: 40px;
}

.fee-sheet-button {
    margin-top: 40px;
}

.btn-download-fee-sheet {
    display: inline-flex;
    align-items: center;
    background: #020041;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    gap: 10px;
    box-shadow: 0 10px 25px #050a3029;
    padding: 10px 10px 10px 20px !important;
}

.btn-download-fee-sheet:hover {
    background: #ff5c35;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 10, 48, 0.4);
}

.download-arrow {
    width: 30px;
    height: 30px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-download-fee-sheet:hover .download-arrow {
    background: white;
    color: #ff5c35;
    transform: translateX(5px);
}

/* Mobile Responsive for View Fee Sheet Section */
@media (max-width: 768px) {
    .view-fee-sheet-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .fee-sheet-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fee-sheet-content p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .btn-download-fee-sheet {
        padding: 15px 25px;
        font-size: 14px;
        gap: 12px;
    }

    .download-arrow {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .view-fee-sheet-section {
        padding: 50px 0;
    }

    .fee-sheet-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .fee-sheet-content p {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .btn-download-fee-sheet {
        padding: 12px 20px;
        font-size: 13px;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .download-arrow {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

/* Estimate/Bid Form Section */
.estimate-bid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.estimate-bid-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.estimate-bid-header {
    margin-bottom: 50px;
}

.estimate-bid-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.estimate-bid-header p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    font-weight: 300;
}

.estimate-bid-form-container {
    background: linear-gradient(135deg, #ff5c35 0%, #050a30 100%);
    border-radius: 25px;
    padding: 120px 70px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.estimate-bid-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 0 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-field:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.field-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.field-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.form-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 20px 0;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    color: #000000;
    background: transparent;
}

.form-input::placeholder {
    color: #000000;
    font-weight: 300;
}

.form-input:focus {
    color: #050a30;
}

.form-submit {
    margin-top: 20px;
    text-align: center;
}

.btn-calculate-bid {
    display: inline-flex;
    align-items: center;
    background: #050a30;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(5, 10, 48, 0.3);
}

.btn-calculate-bid:hover {
    background: #ff5c35;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 92, 53, 0.4);
}

.calculate-arrow {
    width: 30px;
    height: 30px;
    background: #ff5c35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-calculate-bid:hover .calculate-arrow {
    background: white;
    color: #ff5c35;
    transform: translateX(5px);
}

/* Mobile Responsive for Estimate/Bid Section */
@media (max-width: 768px) {
    .estimate-bid-section {
        padding: 60px 0;
    }

    .estimate-bid-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .estimate-bid-header p {
        font-size: 14px;
        padding: 0 20px;
    }

    .estimate-bid-form-container {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 20px;
    }

    .form-field {
        padding: 0 15px;
        border-radius: 12px;
    }

    .field-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }

    .field-icon img {
        width: 18px;
        height: 18px;
    }

    .form-input {
        padding: 15px 0;
        font-size: 14px;
    }

    .btn-calculate-bid {
        padding: 15px 25px;
        font-size: 14px;
        gap: 12px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .calculate-arrow {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .estimate-bid-section {
        padding: 50px 0;
    }

    .estimate-bid-header {
        margin-bottom: 40px;
    }

    .estimate-bid-header h2 {
        font-size: 24px;
    }

    .estimate-bid-header p {
        font-size: 13px;
    }

    .estimate-bid-form-container {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .estimate-bid-form {
        gap: 15px;
    }

    .form-field {
        padding: 0 12px;
    }

    .field-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .field-icon img {
        width: 16px;
        height: 16px;
    }

    .form-input {
        padding: 12px 0;
        font-size: 13px;
    }

    .btn-calculate-bid {
        padding: 12px 20px;
        font-size: 13px;
        gap: 10px;
    }

    .calculate-arrow {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

section#mission-vision .estimate-bid-header {
    text-align: center;
}

/* ========================================
   PAGE TRANSITION EFFECTS
   ======================================== */

/* Page fade-in animation */
body {
    animation: pageLoad 0.6s ease-in-out;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for all links */
a {
    transition: all 0.3s ease;
}

/* Page sections fade-in on scroll */
section {
    opacity: 0;
    transform: translateY(30px);
    animation: sectionFadeIn 0.8s ease-out forwards;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for sections */
section:nth-child(1) {
    animation-delay: 0.1s;
}

section:nth-child(2) {
    animation-delay: 0.2s;
}

section:nth-child(3) {
    animation-delay: 0.3s;
}

section:nth-child(4) {
    animation-delay: 0.4s;
}

section:nth-child(5) {
    animation-delay: 0.5s;
}

section:nth-child(6) {
    animation-delay: 0.6s;
}

section:nth-child(7) {
    animation-delay: 0.7s;
}

section:nth-child(8) {
    animation-delay: 0.8s;
}

/* Smooth hover transitions for interactive elements */
button,
.btn,
input,
textarea {
    transition: all 0.3s ease;
}

/* Card hover effects */
.service-card,
.benefit-card,
.testimonial-card,
.requirement-item {
    transition: all 0.3s ease;
}

/* Image hover effects */
img {
    transition: transform 0.3s ease;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading animation for page content */
main {
    animation: contentLoad 0.8s ease-out;
}

@keyframes contentLoad {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Find HUD Consultant Near Me Page Styles */

/* Search Results Section */
.search-results-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.search-filters {
    margin-bottom: 40px;
}

.search-filters h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.filter-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Consultants Grid */
.consultants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.consultant-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.consultant-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.consultant-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultant-info {
    flex: 1;
}

.consultant-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.consultant-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.consultant-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.consultant-rating .stars {
    color: #ffc107;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.consultant-distance {
    text-align: right;
    color: var(--secondary-color);
    font-weight: 600;
}

.consultant-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.consultant-contact {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-contact {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-contact:not(.btn-secondary) {
    background: var(--secondary-color);
    color: white;
}

.btn-contact:not(.btn-secondary):hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.btn-contact.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-contact.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Load More Section */
.load-more-section {
    text-align: center;
}

.btn-load-more {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 92, 53, 0.3);
}

.btn-cta .arrow-circle {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consultants-grid {
        grid-template-columns: 1fr;
    }

    .consultant-header {
        flex-direction: column;
        text-align: center;
    }

    .consultant-distance {
        text-align: center;
    }

    .consultant-contact {
        flex-direction: column;
    }

    .filter-options {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .search-filters h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .consultant-card {
        padding: 20px;
    }

    .consultant-avatar {
        width: 60px;
        height: 60px;
    }

    .consultant-info h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Tips Section Styles */
.tips-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tips-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.tips-text {
    flex: 1;
    max-width: 600px;
}

.tips-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.tips-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-align: center;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
}

.tips-list::before {
    content: '';
    position: absolute;
    left: 44px;
    /* Center of 40px circle (20px - 1px for 2px line width) */
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: #ff5c35;
    z-index: 1;
}

.tip-item {
    position: relative;
    transition: all 0.3s ease;
}

.tip-item::before {
    content: '';
    position: absolute;
    left: 44px;
    /* Center of 40px circle (20px - 1px for 2px line width) */
    top: 60px;
    width: 2px;
    height: 0;
    background: #ff5c35;
    transition: height 0.4s ease;
    z-index: 2;
}

.tip-item.active::before {
    height: calc(100% - 60px);
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 3;
}

.tip-header:hover {
    background: rgba(248, 249, 250, 0.5);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 4;
}

.tip-header h3 {
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-weight: 400;
    flex: 1;
}

.tip-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    margin-left: 60px;
}

.tip-item.active .tip-content {
    padding: 0 25px 25px;
    max-height: 300px;
    opacity: 1;
}

.tip-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tip-content p:last-child {
    margin-bottom: 0;
}

.tip-detail {
    font-size: 0.95rem;
    color: #888;
}

.tips-image {
    flex: 1;
    max-width: 500px;
    position: sticky;
    top: 100px;
}

.tips-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Tips Section */
@media (max-width: 1024px) {
    .tips-content {
        flex-direction: column;
        gap: 40px;
    }

    .tips-image {
        position: static;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tips-section {
        padding: 60px 0;
    }

    .tips-text h2 {
        font-size: 2rem;
    }

    .tips-list::before {
        left: 16.5px;
        /* Center of 35px circle (17.5px - 1px for 2px line width) */
    }

    .tip-item::before {
        left: 16.5px;
        /* Center of 35px circle (17.5px - 1px for 2px line width) */
    }

    .tip-header {
        padding: 15px 20px;
        gap: 15px;
    }

    .tip-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .tip-header h3 {
        font-size: 1.1rem;
    }

    .tip-content {
        margin-left: 55px;
    }

    .tip-item.active .tip-content {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .tips-list::before {
        left: 14px;
        /* Center of 30px circle (15px - 1px for 2px line width) */
    }

    .tip-item::before {
        left: 14px;
        /* Center of 30px circle (15px - 1px for 2px line width) */
    }

    .tip-header {
        padding: 12px 15px;
        gap: 12px;
    }

    .tip-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .tip-header h3 {
        font-size: 1rem;
    }

    .tip-content {
        margin-left: 45px;
    }

    .tip-item.active .tip-content {
        padding: 0 15px 15px;
    }
}

div#main-tips h2 {
    font-size: 44px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    padding-bottom: 30px;
}

div#main-tips p {
    color: #000000;
    font-size: 17px;
}

/* Profile Cards Section */
.profile-cards-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.profile-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0 auto;
}

.profile-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    border-radius: 15px;
    background: linear-gradient(#ddd, white) padding-box, linear-gradient(to right, #ff5c35, #1a237e) border-box;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 25px;
    right: 0;
    height: 136px;
    background: #020041;
    border-radius: 0px 0px 40px 40px;
    width: 90px;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid white;
    background: white;
    margin-top: 20px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    margin-top: 20px;
}

.profile-info h3 {
    font-size: 24px;
    color: #000000;
    margin: 0 0 4px 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-distance {
    color: #000000;
    font-size: 18px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-details {
    margin-bottom: 30px;
    padding-left: 1rem;
    padding-top: 15px;
}

.detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.detail-row.full-width {
    flex-direction: column;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #000000;
    flex: 1;
    background: #ffff;
    padding: 8px 12px;
    border-radius: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.detail-row.full-width .detail-item {
    flex: none;
    white-space: normal;
    font-size: 13px;
}

.detail-item i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.detail-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.profile-actions {
    display: flex;
    gap: 15px;
}

.btn-schedule {
    flex: 1;
    background: #ff6b4a;
    color: white;
    border: none;
    padding: 15px 25px !important;
    border-radius: 25px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.btn-profile {
    background: #020041;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0px 18px 0 18px !important;
}

.btn-profile:hover {
    background: #0d1754;
    transform: translateY(-2px);
}

/* Responsive Design for Profile Cards */
@media (max-width: 1024px) {
    .profile-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .profile-cards-section {
        padding: 60px 0;
    }

    .profile-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-card {
        padding: 25px;
    }

    .detail-row {
        flex-direction: column;
        gap: 10px;
    }

    .profile-actions {
        flex-direction: column;
    }

    .btn-schedule,
    .btn-profile {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 20px;
    }

    .profile-header {
        gap: 15px;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
    }

    .profile-info h3 {
        font-size: 1.5rem;
    }

    .detail-item {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .btn-schedule,
    .btn-profile {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.profile-cards-section .container {
    max-width: 1500px !important;
}

/* Sign Up Page Styles */
.signup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    /* ðŸ”¥ FIX: uneven spacing remove */
    background: #010101;
    margin-bottom: 0;
    /* ðŸ”¥ FIX: extra bottom gap remove */
}

.signup-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1.3fr;
    gap: 30px;
    align-items: stretch;
    padding: 60px 40px;
}

/* Image Column */
.signup-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

.signup-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 90vh;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Form Column */
.signup-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 20px 0 0;
}

/* Header */
.signup-form-header h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.1;
}

.signup-form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0 0 30px 0;
    font-weight: 300;
}

/* Form */
.signup-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Form Steps */
.form-step {
    display: none;
    flex-direction: column;
    width: 100%;
}

.form-step.active {
    display: flex;
}

/* Remove forced centering on step 1 */
.form-step[data-step="1"] {
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
}

.form-step[data-step="1"] .form-row {
    justify-content: flex-start;
}

.form-step[data-step="1"] .form-actions {
    justify-content: flex-start;
    margin-top: 24px;
}
    gap: 15px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 46px;
}

.form-group textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 110px;
    padding: 14px 22px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.93rem;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5c35;
    background: rgba(255, 255, 255, 0.12);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.form-group select option {
    background: #1a1a2e;
    color: white;
}

.field-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    pointer-events: none;
}

.form-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-next,
.btn-submit,
.btn-sample,
.btn-upload,
.btn-prev {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    background: #FF5C35;
    color: white;
    border: none;
    padding: 9px 9px 9px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-prev {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 9px 18px 9px 9px;
    justify-content: space-between;
}

.btn-prev:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-next i,
.btn-submit i,
.btn-upload i,
.btn-sample i {
    background: #050a30;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-prev i {
    background: rgba(255,255,255,0.15);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-next i,
.btn-submit i,
.btn-upload i,
.btn-sample i {
    background: #050a30;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-next:hover,
.btn-submit:hover,
.btn-upload:hover,
.btn-sample:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 92, 53, 0.3);
}
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    min-height: 50px;
}

.btn-sample i {
    background: rgb(5 10 48);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: auto;
}

.btn-sample:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 50px;
    width: auto;
}

.btn-back i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: auto;
}



.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .signup-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .signup-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .signup-section {
        padding: 20px 0;
    }

    .signup-container {
        padding: 0 15px;
    }

    .signup-form-container {
        padding: 30px 20px;
    }

    .signup-form-header h1 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-next,
    .btn-submit,
    .btn-sample,
    .btn-upload,
    .btn-add-consultant,
    .btn-view-profile,
    .btn-dashboard,
    .btn-back {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .signup-form-container {
        padding: 10px 10px 10px 0px;
    }

    .signup-form-header h1 {
        font-size: 1.6rem;
    }

    .form-group input,
    .form-group select {
        padding: 14px 18px;
    }
}

.signup-form-header {}

.social-icon-item:hover {
    background-color: #020041;
}

.form-group textarea:focus {
    background: #010101 !important;
}

/* Step 3 Specific Styles */
.progress-indicators {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0;
    margin-bottom: 0px;
    padding: 20px 0;
}

.form-group textarea::placeholder {
    color: #ffffff8a;
}

.progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(1 1 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-right: 25px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.3) 0px,
            rgba(255, 255, 255, 0.3) 4px,
            transparent 4px,
            transparent 8px);
    z-index: 1;
}

.progress-step.completed {
    background: #193773;
    border-color: #FE6436;
    color: white;
    margin-right: 25px;
}

.progress-step.completed::after {
    background: repeating-linear-gradient(to right, #ffffff 0px, #ffffff 4px, transparent 4px, transparent 8px);
}

.progress-step.active {
    background: #020041;
    border-color: #ff6b4a;
    color: white;
    transform: scale(1.1);
}

.progress-step.active::after {
    background: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.3) 0px,
            rgba(255, 255, 255, 0.3) 4px,
            transparent 4px,
            transparent 8px);
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    border-color: white;
    opacity: 1;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: #FF5C35;
    border-color: #FF5C35;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::before {
    /* content: 'Ã¢Å“â€œ'; */
    font-family: Arial, sans-serif;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    line-height: 1;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {}

.highlight {
    color: #193773;
    font-weight: 600;
    background-color: #ffff;
    padding-left: 5px;
}

.highlight2 {
    color: #00a1eb;
    font-weight: 600;
    background-color: #ffff;
    padding-right: 4px;
}

.checkbox-text {
    flex: 1;
    text-align: left;
}

.btn-add-consultant {
    flex: 1;
    background: rgb(255 92 53);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    min-height: 50px;
    min-width: 340px;
    white-space: nowrap;
}

.btn-add-consultant span {
    flex: 1;
    text-align: left;
}

.btn-add-consultant i {
    background: rgb(5 10 48);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-add-consultant:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    /* Fixed dimensions to prevent movement during zoom */
    width: 120px;
    height: 100px;
    /* Prevent zoom-related movement */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    /* Ensure button stays centered regardless of zoom level */
    margin-left: -60px;
    /* Half of width */
    margin-top: -50px;
    /* Half of height */
    left: 50% !important;
    top: 50% !important;
    transform: none !important;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: none !important;
    scale: 1.05;
}

.play-button i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.play-button span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
}

/* Video Modal - Duplicate definition removed to prevent conflicts */

/* Duplicate video modal content styles removed to prevent conflicts */

/* Duplicate video close styles removed - using .close-modal instead */

/* Duplicate videoFrame styles removed - using styles from main video modal section */

/* Responsive adjustments for Step 3 */
@media (max-width: 768px) {
    .progress-indicators {
        gap: 10px;
        margin-bottom: 30px;
    }

    .progress-step {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    /* Duplicate videoFrame height removed - using main styles */
}

@media (max-width: 480px) {
    .progress-indicators {
        gap: 8px;
        flex-wrap: wrap;
    }

    .progress-step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .play-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Step 4 Specific Styles */
.schedule-link-group {
    margin-bottom: 40px;
}

.schedule-link-group input {
    border: 2px solid #FF5C35;
    background: rgba(255, 92, 53, 0.1);
}

.fee-structure-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.fee-structure-section:hover {
    border-color: rgba(255, 92, 53, 0.5);
    background: rgba(255, 92, 53, 0.05);
    transform: translateY(-2px);
}

.fee-structure-section.file-uploaded {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.fee-structure-section.file-uploaded .fee-structure-icon i {
    color: #4CAF50;
}

/* File Preview Styles */
.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    color: white;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.file-info i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.file-name {
    font-weight: 600;
    font-size: 1rem;
}

.file-size {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.remove-file {
    background: rgba(255, 92, 53, 0.2);
    border: 1px solid #ff5c35;
    color: #ff5c35;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: #ff5c35;
    color: white;
}

.fee-structure-icon {
    margin-bottom: 20px;
}

.fee-structure-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

.fee-structure-section h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.fee-structure-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.fee-options {
    margin: 30px 0;
}

.fee-option {
    margin-bottom: 25px;
}

.fee-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    cursor: pointer;
    padding: 0px 0;
}

.fee-text {
    flex: 1;
    text-align: left;
}

.fee-checkboxes {
    display: flex;
    gap: 30px;
    align-items: center;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.checkbox-option input[type="radio"] {
    display: none;
}

.radio-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option input[type="radio"]:checked+.radio-checkmark {
    background: #FF5C35;
    border-color: #FF5C35;
}

.checkbox-option input[type="radio"]:checked+.radio-checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Responsive adjustments for Step 4 */
@media (max-width: 768px) {
    .fee-option-label {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .fee-checkboxes {
        align-self: flex-end;
    }

    .fee-structure-section {
        padding: 30px 20px;
    }

    .fee-structure-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fee-checkboxes {
        gap: 20px;
    }

    .fee-structure-icon i {
        font-size: 2.5rem;
    }

    .fee-structure-section {
        padding: 25px 15px;
    }
}

/* Step 5 - Profile Success Styles */
.profile-success-section {
    text-align: center;
    padding: 0px 20px;
    margin: 30px 0;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 4rem;
    color: #ff6b4a;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.profile-success-section h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
}

.profile-success-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.success-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    min-width: 120px;
}

.feature-item i {
    font-size: 2rem;
    color: #ff6b4a;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.btn-view-profile,
.btn-dashboard {
    flex: 1;
    background: #ff6b4a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    min-height: 50px;
    min-width: 207px;
    white-space: nowrap;
}

.btn-view-profile span,
.btn-dashboard span {
    flex: 1;
    text-align: left;
}

.btn-view-profile i,
.btn-dashboard i {
    background: rgb(5 10 48);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-view-profile:hover,
.btn-dashboard:hover {
    background: #ff6b4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-dashboard {
    background: rgb(255 92 53);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-dashboard:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments for Step 5 */
@media (max-width: 768px) {
    .profile-success-section h2 {
        font-size: 1.8rem;
    }

    .success-features {
        gap: 25px;
    }

    .feature-item {
        min-width: 100px;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .success-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .profile-success-section {
        padding: 30px 15px;
    }

    .profile-success-section h2 {
        font-size: 1.6rem;
    }

    .success-features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}

/* View Profile Page Styles */
.profile-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin: 0px auto;
    max-width: 1360px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 60px;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

/* .profile-info {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
} */

.profile-picture {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details h1 {
    color: white;
    font-size: 42px;
    font-weight: 600;
    margin: 5px 0 -4px 0;
}

.profile-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    margin: 0 0 10px 0;
}

.profile-actions {
    display: flex;
    gap: 15px;
}

.btn-call-now,
.btn-send-email {
    padding: 15px 30px !important;
    border-radius: 25px;
    font-weight: 300;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-call-now {
    background: #FF5C35;
    color: white;
}

.btn-call-now:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.btn-send-email {
    background: #050a30;
    color: white;
}

.btn-send-email:hover {
    background: #0d1461;
    transform: translateY(-2px);
}

.profile-content {
    padding: 0 0 60px 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.about-section,
.services-section {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

.about-section h2,
.services-section h2 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.about-section p,
.services-section p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    font-weight: 300;
}

.service-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px 0;
}

.logo-item {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.3s ease;
    align-content: center;
}

.logo-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.logo-item img {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-section,
.websites-section,
.social-links-section {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    box-shadow: none;
}

.status-section h3,
.websites-section h3,
.social-links-section h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
}

.status-indicator.active {
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.status-label {
    color: transparent;
    font-weight: 500;
    font-size: 1rem;
    display: none;
}

.status-active-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4CAF50;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: -42px;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    padding: 5px 15px 5px 15px;
    border-radius: 30px;
}

.status-detail {
    display: inline-block;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 13px;
    background-color: #FFFFFF;
    padding: 8px 12px 5px 18px;
    border-radius: 40px;
}

.status-detail i {
    color: #FF5C35;
    width: 20px;
    font-size: 1.1rem;
}

.website-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background-color: #ffff;
    border-radius: 20px;
    padding: 0px 0px 5px 15px;
}

.website-link i {
    color: #FF5C35;
    width: 20px;
    font-size: 1.1rem;
}

.website-link a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
}

.website-link a:hover {
    color: #FF5C35;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(8, 0fr);
    gap: 6px;
}

.social-links-section .social-icon {
    width: 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    background-color: #fe643626;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-links-section .social-icon i {
    color: #FE6436;
}


.btn-schedule-consultation {
    width: auto;
    background: #ff6b4a;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 300;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 92, 53, 0.3);
}

.btn-schedule-consultation:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 92, 53, 0.4);
}

.btn-schedule-consultation i {
    background: #050a30;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: 10px;
}

/* Responsive Design with Zoom Stability */
@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        max-width: 100%;
    }

    .profile-info {
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .status-active-label {
        font-size: 13px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 10px;
    }

    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .profile-banner {
        height: 250px;
        margin: 20px;
        border-radius: 15px;
        min-height: 200px;
    }

    .profile-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .profile-picture {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .profile-details h1 {
        font-size: clamp(24px, 6vw, 32px);
        margin: 20px 0 10px 0;
    }

    .profile-details p {
        font-size: clamp(16px, 4vw, 20px);
    }

    .profile-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .profile-layout {
        padding: 20px;
        gap: 25px;
    }

    .about-section,
    .services-section {
        padding: 30px 25px;
    }

    .status-section h3,
    .websites-section h3,
    .social-links-section h3 {
        font-size: clamp(18px, 4vw, 24px);
    }
}

@media (max-width: 480px) {
    .profile-banner {
        height: 200px;
        margin: 15px;
        border-radius: 10px;
        min-height: 180px;
    }

    .profile-picture {
        width: 100px;
        height: 100px;
    }

    .profile-details h1 {
        font-size: clamp(20px, 7vw, 28px);
    }

    .profile-details p {
        font-size: clamp(14px, 5vw, 18px);
    }

    .profile-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-call-now,
    .btn-send-email {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 14px;
    }

    .service-logos {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-section,
    .services-section {
        padding: 25px 20px;
    }

    .status-section,
    .websites-section,
    .social-links-section,
    .consultation-section {
        padding: 20px;
    }

    .status-detail {
        font-size: 12px;
        padding: 6px 10px 4px 15px;
    }

    .website-link {
        padding: 8px 12px;
    }

    .social-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .social-links-section .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Profile Page Laptop Banner - Full Height */
.profile-laptop-banner {
    background: url('../images/laptop-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    height: 100vh;
    min-height: 600px;
    color: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.profile-laptop-banner .laptop-content {
    max-width: 70%;
}

.profile-laptop-banner .container {
    max-width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-laptop-banner .laptop-content {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 80px 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Animated Gradient Overlay for Profile Laptop Content */
.profile-laptop-banner .laptop-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 92, 53, 0.2),
            rgba(247, 148, 29, 0.3),
            rgba(11, 26, 55, 0.2),
            rgba(255, 92, 53, 0.1),
            rgba(247, 148, 29, 0.2));
    background-size: 400% 400%;
    animation: laptopGradientShift 10s ease infinite;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

/* Secondary gradient layer for depth */
.profile-laptop-banner .laptop-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-135deg,
            rgba(255, 92, 53, 0.1),
            transparent,
            rgba(247, 148, 29, 0.15),
            transparent,
            rgba(11, 26, 55, 0.2));
    background-size: 300% 300%;
    animation: laptopGradientShift 15s ease infinite reverse;
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

.profile-laptop-banner .laptop-content .subtitle {
    color: #ff5c35;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.profile-laptop-banner .laptop-content h2 {
    font-size: 44px;
    margin-bottom: 50px;
    font-weight: 500;
}

.profile-laptop-banner .laptop-content .description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 100;
}

.profile-laptop-banner .view-more {
    color: #ff5c35;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Responsive Design for Profile Laptop Banner */
@media (max-width: 768px) {
    .profile-laptop-banner {
        height: 80vh;
        min-height: 500px;
    }

    .profile-laptop-banner .laptop-content {
        padding: 60px 40px;
    }

    .profile-laptop-banner .laptop-content h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .profile-laptop-banner {
        height: 70vh;
        min-height: 400px;
    }

    .profile-laptop-banner .laptop-content {
        padding: 40px 30px;
    }

    .profile-laptop-banner .laptop-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .profile-laptop-banner .laptop-content .description {
        font-size: 1rem;
    }
}

section.profile-banner .profile-info {
    display: flex;
    padding-left: 60px;
}

section.contact-info-section input,
section.contact-info-section textarea {
    background: #ffffff;
}

section.contact-info-section input::placeholder,
section.contact-info-section textarea::placeholder {
    color: #66666694;
    font-weight: 100;
}

/* Sign-up Play Button Styles */
.play-button {
    position: absolute;
    background: rgb(46 46 46 / 59%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 65px 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    /* Fixed dimensions to prevent movement during zoom */
    width: 140px;
    height: 60px;
    /* Prevent zoom-related movement */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    /* Ensure button stays centered regardless of zoom level */
    margin-left: -70px;
    /* Half of width */
    margin-top: -30px;
    /* Half of height */
    left: 50% !important;
    top: 45% !important;
    transform: none !important;
}

.play-button:hover {
    background: rgba(46, 46, 46, 0.95);
    transform: none !important;
    scale: 1.05;
}

.play-button i {
    font-size: 18px;
    flex-shrink: 0;
}

.play-button span {
    font-weight: 600;
    white-space: nowrap;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    display: flex !important;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 300;
    line-height: 1;
    z-index: 2001;
    user-select: none;
}

.video-close:hover {
    background: #ff5c35;
    border-color: #ff5c35;
    transform: scale(1.1);
    color: white;
}

#videoFrame {
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    #videoFrame {
        height: 300px;
    }

    .play-button {
        font-size: 14px;
    }
}


/* â”€â”€ Workflow Section â”€â”€ */
.workflow-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.workflow-chart-wrap {
    text-align: center;
    margin-bottom: 70px;
}

.workflow-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a2e;
    margin-bottom: 10px;
}

.workflow-main-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.workflow-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.workflow-stage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.workflow-stage-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workflow-video-placeholder {
    background: linear-gradient(135deg, #0a0a2e 0%, #ff5c35 100%);
    border-radius: 14px;
    aspect-ratio: 16/9;
    max-height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    justify-self: end;
}

.workflow-stage-reverse {
    direction: ltr;
}

.workflow-stage-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff5c35;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.85;
}

.workflow-stage-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a2e;
    margin-bottom: 12px;
}

.workflow-stage-desc {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.75;
}

.workflow-video-placeholder:hover {
    opacity: 0.9;
}

.workflow-video-inner {
    text-align: center;
    color: white;
}

.workflow-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 1.4rem;
    transition: background 0.3s;
}

.workflow-video-placeholder:hover .workflow-play-btn {
    background: rgba(255,255,255,0.35);
}

.workflow-video-inner p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 768px) {
    .workflow-stage,
    .workflow-stage-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .workflow-main-title {
        font-size: 1.5rem;
    }
}

/* â”€â”€ Video Popup â”€â”€ */
.video-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-popup-overlay.active {
    display: flex;
}

.video-popup-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-popup-box video {
    width: 100%;
    display: block;
}

.video-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.video-popup-close:hover {
    background: rgba(255,255,255,0.3);
}

/* â”€â”€ Sign-up form extra styles â”€â”€ */
.step-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffff;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff5c35;
}

.upload-label {
    display: block;
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 6px;
}

.upload-label i {
    margin-right: 6px;
    color: #ff5c35;
}

.field-label-top {
    display: block;
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

.field-note {
    display: block;
    font-size: 0.78rem;
    color: #888;
    margin-top: 4px;
    line-height: 1.4;
}

.radio-inline {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}

.btn-prev {
    background: transparent;
    border: 1px solid #ccc;
    color: #555;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-prev:hover {
    border-color: #ff5c35;
    color: #ff5c35;
}

/* â”€â”€ Sign-up Success Screen â”€â”€ */
.signup-success-screen {
    text-align: center;
    padding: 20px 10px;
}

.success-icon-wrap {
    font-size: 4rem;
    color: #ff5c35;
    margin-bottom: 16px;
}

.signup-success-screen h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 12px;
}

.signup-success-screen p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.signup-success-screen .success-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.signup-success-screen .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #444;
}

.signup-success-screen .feature-item i {
    font-size: 1.4rem;
    color: #ff5c35;
}

/* Date input calendar icon white */
input[type="date"] {
    color-scheme: dark;
}

/* â”€â”€ Interview Questions Section â”€â”€ */
.interview-questions-section {
    padding: 60px 0;
    background: #f8f9fb;
}

.interview-questions-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 800px;
    margin: 0 auto;
}

.interview-questions-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #010101;
}

.interview-questions-intro {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 20px;
}

.bidbld-link {
    color: #2a3cff;
    text-decoration: underline;
}

.bidbld-link:hover {
    opacity: 0.8;
}

.interview-questions-list {
    padding-left: 22px;
    margin: 0;
}

.interview-questions-list li {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .interview-questions-card {
        padding: 28px 20px;
    }
}

/* â”€â”€ Yes/No Styled Checkboxes â”€â”€ */
.yn-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: white;
}

.yn-checkbox-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.yn-checkbox-label input[type="radio"]:checked + .checkmark {
    background: #ff5c35;
    border-color: #ff5c35;
}

.yn-checkbox-label input[type="radio"]:checked + .checkmark::after {
    border-color: white;
    opacity: 1;
}

/* ── File input polish ── */
.form-group input[type="file"] {
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.88rem;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
}

/* ── Upload Drop Area ── */
.upload-drop-area {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.upload-drop-area:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.upload-drop-area i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
    display: block;
}

.upload-drop-area h4 {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 6px 0;
}

.upload-drop-area p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ── Multi-select & Conditional Dropdown ── */
.multi-select {
    width: 100%;
    border-radius: 50px !important;
    padding: 14px 22px !important;
    background: rgba(255,255,255,0.07) !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.9rem;
    font-family: inherit;
}

.multi-select option {
    background: #1a1a2e;
    color: white;
    padding: 6px;
}

.multi-select option:checked {
    background: #ff5c35;
}

.conditional-dropdown {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Signup Video Play Button ── */
.signup-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 5, 20, 0.75);
    border: none;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 180px;
}

.signup-video-btn:hover {
    background: rgba(20, 5, 20, 0.9);
}

.signup-video-btn i {
    font-size: 2rem;
    color: white;
}

.signup-video-btn span {
    font-size: 1.3rem;
    color: white;
    font-weight: 400;
}
