/* Mobile Navigation Styles */
@media (max-width: 1146px) {

    /* Hide desktop navigation and logo */
    .logo,
    .desktop_nav {
        display: none !important;
    }

    /* Show mobile navigation wrapper */
    .mobile_nav_wrapper {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        position: relative;
        z-index: 1001;
        /*background: rgba(7, 16, 27, 0.95);*/
        backdrop-filter: blur(10px);
    }

    /* Mobile logo styling */
    .mobile_logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
    }

    .mobile_logo img {
        height: 45px;
        width: auto;        
    }

    /* Hamburger menu button - Simple White Style */
    .hamburger_menu {
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
        position: absolute;
        right: 0;
        z-index: 1002;
        right: 25px;
        top: -7px;
    }

    .hamburger_menu:hover .menu_icon,
    .hamburger_menu:hover .close_icon {
        transform: scale(1.1);
    }

    .hamburger_menu.active .menu_icon {
        display: none !important;
    }

    .hamburger_menu.active .close_icon {
        display: block !important;
    }

    /* Menu icon styling */
    .menu_icon,
    .close_icon {
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
    }

    .close_icon {
        width: 28px;
        height: 28px;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

    .hamburger_menu:hover .close_icon {
        transform: rotate(90deg) scale(1.1);
    }

    .hamburger_menu:hover .close_icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: -1;
    }

    .hamburger_menu.active .close_icon {
        animation: rotateIn 0.3s ease;
    }

    @keyframes rotateIn {
        from {
            transform: rotate(-90deg) scale(0.8);
            opacity: 0;
        }

        to {
            transform: rotate(0deg) scale(1);
            opacity: 1;
        }
    }

    /* Desktop navigation - show as mobile menu when active */
    .desktop_nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(7, 16, 27, 0.98) 0%, rgba(15, 25, 40, 0.98) 100%);
        backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 100px;
    }

    /* Show menu when active */
    .desktop_nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Navigation links styling for mobile - Enhanced Design */
    .desktop_nav .nav_links {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        list-style: none;
        padding: 20px 20px;
        margin: 0;
        width: 100%;
        max-width: 400px;
    }

    .desktop_nav .nav_links li {
        text-align: center;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.5s ease forwards;
    }

    .desktop_nav.active .nav_links li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .desktop_nav.active .nav_links li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .desktop_nav.active .nav_links li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .desktop_nav.active .nav_links li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .desktop_nav.active .nav_links li:nth-child(5) {
        animation-delay: 0.3s;
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .desktop_nav .nav_links li a {
        color: var(--white-color) !important;
        text-decoration: none;
        font-family: 'Venzia Sans SemBd', sans-serif;
        font-size: 17.92px;
        font-weight: var(--font-weight-semibold);
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 7 px 30px;
        display: block;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }

    .desktop_nav .nav_links li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(31, 137, 249, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .desktop_nav .nav_links li a:hover::before {
        left: 100%;
    }

    .desktop_nav .nav_links li a:hover {
        color: var(--primary-color) !important;
        transform: translateX(10px);
        background: rgba(31, 137, 249, 0.1);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Mobile menu close button (if needed for future enhancement) */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border: 2px solid var(--white-color);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu-close:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: rotate(90deg);
    }

    /* Make header sticky on mobile */
    header {
        position: sticky !important;
        top: 0 !important;
        background-color: var(--black-color) !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        left: 0 !important;
    }
}

/* Hide mobile navigation on desktop */
@media (min-width: 1146px) {
    .mobile_nav_wrapper {
        display: none !important;
    }

    /* Show desktop navigation on desktop */
    .desktop_nav {
        display: block !important;
    }
}

/* custom meda qurey for header text in banner begins */
@media (max-width: 1300px) {
    :root {
        --font-size-h1: 120px;
    }
}

@media (max-width: 1284px) {
    .nav_links li a {
        font-size: var(--font-size-small);

    }
}

/*    @media (max-width: 1286px) {*/
/*    .mobile_hero_section {*/
/*        display: block !important;*/
/*        background-color: #060c17;*/
/*    }*/
/*}*/
@media (max-width: 992px) {
    :root {
        --font-size-h1: 100px;
    }
}

@media (max-width: 820px) {
    :root {
        --font-size-h1: 80px;
    }
}

@media (max-width: 660px) {
    :root {
        --font-size-h1: 60px;
    }
}

/* removed 480px breakpoint; styles consolidated under 768px */
@media (max-width: 768px) {

    /* Branding - swap trophy image on mobile */
    .trophy_main {
        display: none !important;
    }

    .trophy_mobile {
        display: block !important;
        max-width: 70%;
    }

    .hero_img {
        top: -140px;
    }

    .main_container.web_design_container {
        top: 77px;
    }
	.sales_section,
	.side_bar_listing_title customized_h3,
	.side_bar_listing{
		text-align:center;
	}

}

/* consolidated 576px banner tweaks into 768px */
/* custom media qurey for header text in banner ends */




/* Responsive styling begins */
@media (max-width: 1200px) {
    .web_design_section {
        height: 1550px;
    }

    .security_image_container {
        position: relative;
        right: 0;
        width: 100%;
    }

    .sales_image_container {
        position: relative;
        height: 100%;
        top: 0;
        right: 0;
    }

    .sales_image_container_2 {
        height: 100%;
        position: relative;
        top: 40px;
        left: 0;
    }

    .sales_section .side_bar_listing {
        margin-left: 0;
    }

    .side_bar_listing {
        margin-top: 10%;
    }

    .invoicing_image_container {
        margin-top: 30px;
    }

    .web_design_section .side_bar_listing {
        margin-top: 20px;
        margin-left: 0;
        color: var(--white-color);
        text-align: center;
    }

    .business_image_container {
        position: relative;
        right: 0;
        top: 100px;
        width: 100%;
    }

    .business_subtitle,
    .business_title,
    .business_description {
        margin: 30px auto;
    }

    .invoicing_subtitle,
    .invoicing_title,
    .invoicing_description {
        text-align: center;
    }

    .web_design_image_container {
        position: relative;
        top: 150px;
        text-align: center;
    }

    .hero_text {
        margin-top: 100px;
    }

    .yt-img {
        display: block;
        top: 40%;
        left: 32%;
    }

    .crm_section {
        height: 100%;
        padding-bottom: 0;
    }

    .branding_section {
        text-align: center;
    }

    .branding_description {
        text-align: center;
        max-width: 500px;
        text-align: center;
        margin: 0 auto;
        margin-top: 20px;
    }

    .branding_title {
        margin: 0 auto;
    }

    .branding_subtitle {
        margin: 0 auto;
        max-width: 550px;
    }

    .automation_column {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .security_section {
        padding-bottom: 0;
    }

    .invoicing_description {
        margin: 0 auto;
    }

    .invoicing_description {
        max-width: 100%;
    }

    .invoicing_section .side_bar_listing {
        /* margin-top: 50%; */
        color: var(--white-color);
        text-align: center;
    }

    .business_section {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .security_section {
        padding: 70px 0;
        padding-bottom: 70px;
    }

    .brand_service_line {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-bold);
        font-size: 44px;
        line-height: 55px;
        margin: 0 auto;
        margin-top: 25px;
        text-align: center;
        text-align-last: center;
    }

    .brand_service_line span {
        font-size: 33px;
        line-height: 55px;

    }

    .brand_service_line .service-line-3 {
        line-height: 70px;
    }

    .customized_h2 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-bold);
        font-size: var(--font-size-h2);
        line-height: 65px !important;
        letter-spacing: 0%;
        text-transform: capitalize;
    }

    .customized_p {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-light);
        font-size: var(--font-size-large);
        line-height: 32px;
    }

    :root {
        --font-size-h2: 70px;
        --font-size-h3: 32px;
        --font-size-large: 24px;
    }

    .hero_description {
        max-width: 450px;
    }

    .web_design_image_container {
        position: relative;
        top: 60px;
        text-align: center;
      right: -50px;
    }

    .web_design_section {
        height: 1250px;
    }

    .create_description {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-bold);
        font-size: 44px;
        line-height: 70px;
        text-align: center;
        text-transform: uppercase;
        color: var(--black-color);
        text-align: center;
        text-align-last: center;
    }

    .create_description .span_1 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-normal);
    }

    .create_description .span_2 {
        font-size: 44px;
    }

    .create_description .span_3 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-normal);
    }

    .create_description .span_4 {
        font-size: 44px;
    }

    .create_description .span_5 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-normal);
    }

    .hero_img {
        top: -140px;
    }

    .brand_identity_title {
        margin-bottom: 20px;
    }
}

@media (max-width: 1285px) {
    :root {
        --font-size-small: 26px;
    }

    .mobile_hero_section {
        display: block !important;
        background-color: var(--secondary-color);
        margin-top: -150px;
    }

    .hero_section {
        display: none !important;
    }

    /* Mobile Hero Part 1 - Just Image */
    .mobile-hero-part-1 {
        width: 100%;
        /* height: 400px; */
        position: relative;
        overflow: hidden;
    }

    header {
        position: sticky !important;
        top: 0 !important;
        background-color: var(--black-color) !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        left: 0 !important;
    }

    .mobile-hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top center;
        /* position: relative;
        top: -120px; */
    }

    /* Mobile Hero Part 2 - Image with Text */
    .mobile-hero-part-2 {
        width: 100%;
        min-height: 300px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-hero-bottom-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: top center;
        z-index: 1;
    }

    .mobile-hero-text-container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 40px 20px;
        color: var(--white-color);
        max-width: 100%;
    }

    .mobile-hero-description {
        margin: 0 auto 15px;
        letter-spacing: 0.02em;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
    }

    /* Use design system font sizes */
    .mobile-hero-text-container h3 {
        font-size: var(--font-size-h2);
    }

    .mobile-hero-text-container p {
        font-size: var(--font-size-small);
    }

    .mobile-hero-description-1 {
        margin-bottom: 20px;
        max-width: 859px;
        color: var(--gray);
    }

    .mobile-hero-description-2 {
        font-weight: 600;
        max-width: 600px;
        color: var(--gray);

    }

    .mobile-blue-span {
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-hero-divider {
        color: var(--primary-color);
        margin: 0 5px;
    }

    /* Mobile hero overlay layout */
    .hero_section {
        position: relative;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }

    .hero_background_image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero_background_image img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: top center !important;
    }

    .hero_section .main_container {
        position: relative;
        z-index: 2;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .hero_text_container {
        position: relative;
        z-index: 3;
        text-align: center;
        padding: 20px;
        max-height: calc(100vh - 40px);
        overflow: hidden;
        margin-bottom: 20px;
    }

    .hero_img {
        top: -120px;
    }
}

@media (min-width: 1201px) and (max-width: 1284px) {
    .crm_section_tablet {
        height: 1300px;
        background-color: var(--secondary-color);
    }

    .crm_part_1_section .main_container {
        top: 70px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .crm_title {

        margin-top: -60px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    :root {
        --font-size-h2: 55px;
        --font-size-larger: 32px;
        --font-size-small: 26px;
    }

    .branding_title {
        margin-bottom: 20px;
    }

    .brand_service_line,
    .create_description {
        display: none;
    }

    .brand_service_line_mobile {
        display: block;
    }

    .brand_service_line_mobile img,
    .create_description_mobile img {
        width: 800px;
    }

    .automation_header {
        min-height: 600px;
    }

    .automation_title {
        margin-bottom: 10px;
    }

    .automation_subtitle {
        max-width: 620px;
    }

    .automation_description {
        max-width: 650px;
    }

    .crm_part_1_section img {
        height: 300px;
    }

    .sales_image_container_2 {
        top: 80px;
    }

    .crm_part_3_section img {
        height: 250px;
    }

    .invoicing_img {
        width: 600px;
    }

    .yt-img {
        display: block;
        top: 53%;
        left: 32%;
        width: 300px;
    }

    .create_description_mobile {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .create_title {
        margin-bottom: 10px;
    }

    .missing_leads_description {
        margin: 40px auto;
    }

    .mobile_hero_section {
        display: block !important;
        background-color: var(--secondary-color);
        margin-top: -100px;
    }

    .hero_section {
        display: none !important;
    }

    /* Mobile Hero Part 1 - Just Image */
    .mobile-hero-part-1 {
        width: 100%;
        /* height: 400px; */
        position: relative;
        overflow: hidden;
    }

    header {
        position: sticky !important;
        top: 0 !important;
        background-color: var(--black-color) !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        left: 0 !important;
    }

    .mobile-hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top center;
    }

    /* Mobile Hero Part 2 - Image with Text */
    .mobile-hero-part-2 {
        width: 100%;
        min-height: 300px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-hero-bottom-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: top center;
        z-index: 1;
    }

    .mobile-hero-text-container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 40px 20px;
        color: var(--white-color);
        max-width: 100%;
    }

    .mobile-hero-description {
        margin: 0 auto 15px;
        letter-spacing: 0.02em;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
    }

    /* Use design system font sizes */
    .mobile-hero-text-container h3 {
        font-size: var(--font-size-h2);
    }

    .mobile-hero-text-container p {
        font-size: var(--font-size-small);
    }

    .mobile-hero-description-1 {
        margin-bottom: 20px;
        max-width: 859px;
    }

    .mobile-hero-description-2 {
        font-weight: 600;
        max-width: 487px;
    }

    .mobile-blue-span {
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-hero-divider {
        color: var(--primary-color);
        margin: 0 5px;
    }

    /* Mobile hero overlay layout */
    .hero_section {
        position: relative;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }

    .hero_background_image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero_background_image img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: top center !important;
    }

    .hero_section .main_container {
        position: relative;
        z-index: 2;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .hero_text_container {
        position: relative;
        z-index: 3;
        text-align: center;
        padding: 20px;
        max-height: calc(100vh - 40px);
        overflow: hidden;
        margin-bottom: 20px;
    }

    .hero_img {
        top: -120px;
    }

    .row_2 {
        margin-top: 0px;
    }

    .missing_leads_title {
        max-width: 700px;
    }

    .crm_section_tablet {
        height: 1200px;
        background-color: var(--secondary-color);
    }

    .crm_part_4_section .side_bar_listing {
        margin-top: 40px;
    }

    .brand_identity_section {
        padding-top: 180px;
    }

}
@media (max-width: 992px) {
        .mobile_hero_section{
        display: block !important;
        background-color: var(--secondary-color);
        margin-top: 0px;
    }
}
@media (min-width: 769px) and (max-width: 992px) {
    .business_title {
        max-width: 550px;
    }
.marketing_image_container {
    display: flex;
    align-items:center;
    justify-content: center;
}
    .security_title {
        max-width: 700px;
    }

    .security_description {
        max-width: 600px;
    }

    .marketing_container {
        margin-top: 100px;
        text-align: center;
    }
}

@media (min-width: 590px) and (max-width: 768px) {
    .automation_header {
        background-size: cover !important;
        min-height: 400px !important;
    }

    .automation_section .main_container {
        top: 100px !important;
    }
}

@media (max-width: 768px) {

    /* Hide desktop hero and show mobile hero */
    .hero_section {
        display: none !important;
    }
.missing_leads_description_2 {

    margin-bottom: 70px !important;
}
    .automation_section .main_container {
        top: 40px;
    }

    .automation_subtitle {
        max-width: 350px;
    }

    .mobile_hero_section {
        display: block !important;
        background-color: #060c17;
    }

    /* Mobile Hero Part 1 - Just Image */
    .mobile-hero-part-1 {
        width: 100%;
        /* height: 400px; */
        position: relative;
        overflow: hidden;
    }

    header {
        position: sticky !important;
        top: 0 !important;
        background-color: var(--black-color) !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        left: 0 !important;
    }

    .mobile-hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top center;
    }

    .brand_identity_title {
        margin-bottom: 15px;
    }
.col_xl_5_mobile{
    display: block;
}
.col_xl_5_desktop{
    display: none;
}
    /* Mobile Hero Part 2 - Image with Text */
    .mobile-hero-part-2 {
        width: 100%;
        min-height: 300px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-hero-bottom-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top center;
        z-index: 1;
    }

    .mobile-hero-text-container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 40px 20px;
        color: var(--white-color);
        max-width: 100%;
    }

    .mobile-hero-text {
        line-height: 1.2;
        letter-spacing: 0.05em;
        text-align: center;
        color: var(--white-color);
        margin-bottom: 20px;
        font-weight: 500;
    }

    .mobile-hero-description {
        margin: 0 auto 15px;
        letter-spacing: 0.02em;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
    }

    /* Use design system font sizes */
    .mobile-hero-text-container h3 {
        font-size: var(--font-size-h2);
    }

    .mobile-hero-text-container p {
        font-size: var(--font-size-small);
    }

    .mobile-hero-description-1 {
        margin-bottom: 20px;
    }

    .mobile-hero-description-2 {
        font-weight: 500;
    }

    .mobile-blue-span {
        color: var(--primary-color);
        font-weight: 500;
    }

    .mobile-hero-divider {
        color: var(--primary-color);
        margin: 0 5px;
    }

    /* Mobile hero overlay layout */
    .hero_section {
        position: relative;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }

    .hero_background_image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero_background_image img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: top center !important;
    }

    .hero_section .main_container {
        position: relative;
        z-index: 2;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .hero_text_container {
        position: relative;
        z-index: 3;
        text-align: center;
        padding: 20px;
        max-height: calc(100vh - 40px);
        overflow: hidden;
        margin-bottom: 20px;
    }

    .hero_img {
        top: -120px;
    }

    .business_cta_mobile {
        display: block;
        margin-top: 0px;
    }

    .business_image_container {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
    }

    .business_cta {
        display: none;
    }

    .business_subtitle {
        margin: 0 auto;
        margin-bottom: 20px;
        max-width: 320px;
    }

    .business_title {
        max-width: 400px;
        margin: 10px auto;
    }

    .business_description {
        max-width: 400px;
        color: var(--white-color);
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .invoicing_description {
        color: var(--white-color);
        max-width: 427px;
        margin-bottom: 60px;
    }

    .web_design_title {
        margin-bottom: 0px;
    }

    .invoicing_section .side_bar_listing {
        margin-top: 50px
    }

    .hero_description {
        max-width: 100%;
    }

    .overlay_gradient {
        top: -100px;
        height: 100%;
        z-index: 2;
        background: radial-gradient(circle 900px at center, rgba(31, 137, 249, 0.6) 0%, rgba(31, 137, 249, 0.4) 25%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero_text_container {
        z-index: 3;
        position: relative;
        padding-top: 0;
    }

    .hero_text_overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0px;
        background: linear-gradient(to bottom, transparent 0%, rgba(7, 16, 27, 0.3) 30%, rgba(7, 16, 27, 0.8) 100%);
        backdrop-filter: blur(10px);
    }

    .customized_h2 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-bold);
        font-size: var(--font-size-h2);
        line-height: 30px !important;
        letter-spacing: 0%;
        text-transform: capitalize;
    }

    .customized_p {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-light);
        font-size: var(--font-size-large);
        line-height: 25px;
    }
.missing_leads_description_2{
    margin-bottom: 40px;
}
    .customized_h3 {
        font-size: var(--font-size-large);
    }

    :root {
        --font-size-h4: 25px;
        --font-size-p: 16px;
        --font-size-h2: 30px;
        --font-size-h3: 18px;
        --font-size-large: 20px;
    }
.missing_leads_description{
    max-width: 450px;
}
    .brand_cta_container {
        width: 100%;
    }

    .automation_section {
        padding-bottom: 120px;
    }

    .security_image_container_mobile {
        width: 700px;
        left: -70px;
        top: 30px;
        position: relative;
    }

    .missing_leads_subtitle {
        font-size: 20px;
    }

    .main_btn {
        padding: 15px 45px;
        font-size: 20px;
        line-height: 22px;
        max-width: 320px;
        width: 100%;
        border-radius: 0px;
    }

    .branding_title {
        color: var(--gray);
        max-width: 100%;
        margin: auto auto;
    }

    .business_image_desktop {
        display: none;
    }

    .business_image_mobile {
        display: block;
    }

    .side_bar_listing h3 {
        font-size: 30px;
    }

    .branding_subtitle {
        margin-top: 10px;
        max-width: 270px;
    }

    .branding_description {
        margin-top: 20px;
        text-align: center;
        padding: 0 20px;
    }

    .hero_text {
        letter-spacing: 5%;
        /*padding-bottom: 30px;*/
        margin-top: 65px;
        font-size: 30px;
        line-height: 40px;
    }

    .hero_description span {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-light);
    }

    .invoicing_title {
        margin-bottom: 0;
    }

    .hero_description {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-semibold);
        font-size: 23px;
    }

    .branding_section {
        padding: 50px 0;
        padding-bottom: 0px;
        z-index: 1;
    }

    .hero_text_overlay {
        height: 290px;
    }

    .branding_image_container {
        position: relative;
        top: -40px;
        right: 0;
    }

    .trophy_blur_container {
        position: relative;
        padding-top: 20px;
    }

    .brand_service_line {
        display: none;
    }

    .brand_service_line span {
        font-size: 28px;
        line-height: 30px;

    }

    .brand_services {
        margin-bottom: 40px;
    }

    .brand_identity_section {
        padding: 50px 0;
        position: relative;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .automation_header {
        min-height: 300px;
        background-image: url("../images/ai-img-mobile.png");
        background-size: contain;
        background-position: top;
    }

    .automation_description {
        left: 0;
        margin-top: 20px;
    }

    .security_text {
        width: 100%;
    }

    .security_section {
        padding: 50px 0;
        padding-bottom: 50px;
        text-align: center;
    }


    .security_image_container {
        display: none;
    }

    .security_text .side_bar_listing {
        margin-top: 30px;
    }

    .sales_text {
        padding-top: 50px;
        width: 100%;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .sales_section .side_bar_listing {
        margin-left: 0px;
    }

    .sales_image_container_2 {
        height: 100%;
        position: relative;
        top: 90px;
        left: 0;
    }

    .sales_section {
        padding-bottom: 150px;
    }

    .crm_section {
        padding: 50px 0;
        height: 100%;
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .crm_title {
        margin-bottom: 0;
        max-width: 300px;
    }

    .crm_description {
        margin-top: 300px;
    }

    .row_2 {
        margin-top: 0px;
    }

    .invoicing_section {
        padding-bottom: 50px;
    }

    .web_design_section {
        padding-top: 50px;
        padding-bottom: 80px;
        height: 100%;
        text-align: center;
    }

    .web_design_container {
        padding-top: 30px;
    }

    .web_design_section .side_bar_listing {
        margin-left: 0;
        margin-top: 30px;
    }

    .marketing_section {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .marketing_container {
        background-color: var(--secondary-color);
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
    }

    .marketing_image_container {
        display: block;
    }

    .create_content {
        padding-top: 50px;
    }

    .create_description {
        display: none;
    }

    .create_description_mobile {
        display: block;
        text-align: center;
    }

    .create_description .span_1 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-normal);
    }

    .create_description .span_2 {
        font-size: 40px;
    }

    .create_description .span_3 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-normal);
    }

    .create_description .span_4 {
        font-size: 40px;
    }

    .create_description .span_5 {
        font-family: 'Venzia Sans', sans-serif;
        font-weight: var(--font-weight-normal);
    }

    .business_title {
        width: 100%;
    }

    .business_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero_section {

        /*/*height: 850px;*/
        background: var(--secondary-color);
    }
    .business_subtitle {
        max-width: 250px;
    }
    .web_design_container {
        padding-top: 0;
    }
    .missing_leads_section {
        text-align: center;
        padding-top: 70px;
        padding-bottom: 50px;
        background-color: var(--secondary-color);
    }
.footer_description.customized_p {
    margin-top: 30px;
}
    .yt-img {
            position: absolute;
        left: 20%;
        top: 49%;
        display: block;
        height: 300px;
        width: 300px;
    }

    .hero_description_2 {
        padding: 0 60px;
    }

    .brand_service_line_mobile {
        display: block;
        color: var(--white-color);
    }

    .missing_leads_subtitle_2 {
        margin: 40px 0;
    }

    .crm_section .side_bar_listing_cta {
        margin-bottom: 60px;
    }

    .security_image_container_mobile {
        width: 700px;
        display: block;
    }

    .sales_section .side_bar_listing_cta_desktop {
        display: none;
    }

    .sales_section .side_bar_listing_cta_mobile {
        display: block;
        margin-top: 0px;
        text-align: center;
    }

    .invoicing_image_container:last-child {
        margin-top: 20px;
    }

    .web_design_image_container {
        margin-top: 70px;
    }

    .web_design_section {
        height: 990px;
    }

    .create_title {
        margin-bottom: 10px;
    }

    .missing_leads_description {
        margin: 20px auto;
    }

    .brand_identity_subtitle {
        margin-top: 60px;
    }

    .security_title {
        margin: 0 auto;
        margin-bottom: 0;
        max-width: 280px;
    }

    .sales_subtitle {
        margin-top: 0;
        padding: 0 20px;
    }

    .sales_title {
        color: var(--gray);
        margin: 0;
        padding: 0 20px;
        margin-bottom: 5px;
    }

    .brand_cta_container {
        margin-top: 40px;
    }

    .automation_title {
        margin-bottom: 0;
    }

    .automation_columns {
        padding-top: 40px;
    }

    .sales_section .side_bar_listing h3 {
        max-width: 350px;
		width:100%;
		margin-left:auto;
		margin-right:auto;

    }

    .marketing_title {
        margin-bottom: 10px;
    }

    .marketing_subtitle {
        margin: 0 auto;
        margin-bottom: 20px;
        max-width: 300px;
    }

    .sales_description {
        margin: 0px auto;
        margin-top: 20px;
    }

    footer {
        padding: 50px 0;
    }

    .footer_description {
        font-size: 12px;
    }

    .footer_logo_container {
        width: 200px;
        padding-top: 20px;
        margin: 0 auto;
    }

    .mobile-hero-description-1 {
        font-weight: 300;
    }

    .mobile-hero-description-2 {
        font-weight: 600;
    }

    .mobile-hero-description-1,
    .mobile-hero-description-2 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .mobile-hero-description-2{
        padding: 0 35px;
    }
}

@media (max-width: 576px) {
    .web_design_section {
        height: 1090px;
    }
.business_description {
        padding: 0 20px;
    }
.web_design_description {
    padding: 0 20px;
}

.crm_section_tablet {
    height: 900px;
    background-color: var(--secondary-color);
}
    /* Adjust mobile hero for smaller screens */
    /* .mobile-hero-part-1 {
        height: 350px;
    }
    
    .mobile-hero-part-2 {
        min-height: 280px;
    } */

    /* consolidated mobile hero text sizing under 768px */

    /* Adjust mobile hero for smaller screens */
    /* consolidated legacy hero-mobile selectors under 768px */

    /* Ensure hero section is properly contained on small mobile screens */
    /* removed vh-based hero heights at 576px */

    /* Ensure hero background image is fully visible on small mobile screens */
    /* removed legacy background image overrides for 576px */
    .automation_description {
        padding: 0 25px;
    }

    .web_design_image_container {
                top: 60px !important;
                right: -20px;
    }

    .overlay_gradient {
        top: -100px;
        height: 100%;
        z-index: 2;
        opacity: 0.5;
        background: radial-gradient(circle 600px at center, rgba(31, 137, 249, 0.6) 0%, rgba(31, 137, 249, 0.4) 25%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    }

    .contact_info {
        gap: 20px;
        justify-content: space-between !important;
    }

    .contact_info_container {
        text-align: center;
    }

    .contact_text a,
    .contact_text {
        font-size: 11px;
    }

    .main_nav_container {
        padding-bottom: 25px;
        padding-top: 25px;
    }

    .hero_content {
        padding-top: 0px;
    }

    .hero_description_1 {
        padding: 0 10px;
    }

    .hero_text {
        margin-top: 0px;
    }

    .web_design_subtitle {
        max-width: 250px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .hero_text_overlay {
        position: absolute;
        bottom: 200px;
        left: 0;
        width: 100%;
        height: 400px;
        backdrop-filter: blur(1px);
    }

    .hero_img {
        top: -70px;
    }

    .yt-img {
        position: absolute;
        left: 25%;
        top: 49%;
        width: 200px;
        height: 200px;
    }

    .branding_title {
        color: var(--gray);
        /* max-width: 270px; */
        margin: auto auto;
    }

    .branding_subtitle {
        margin: 0 auto;
        margin-top: 10px;
        max-width: 270px;
    }

    .branding_description {
        margin-top: 20px;
        text-align: center;
        padding: 0 20px;
    }

    .automation_subtitle {
        margin: 0 auto;
        max-width: 270px;
    }

    .automation_section ul {
        max-width: 300px;
		margin:auto;
    }

    .side_bar_listing_cta {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .security_image_container_mobile {
        width: 700px;
        left: -170px;
        top: 30px;
        position: relative;
    }

    .sales_image_container_2 {
        height: 100%;
        position: relative;
        top: 50px;
        left: 0;
    }

    .sales_section .side_bar_listing_cta_mobile {
        margin-top: 5px;
    }

    .invoicing_description {
        padding: 0 10px;
    }

    .web_design_section .side_bar_listing_cta {
        margin-top: 60px;
    }

    .marketing_image_container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .marketing_image_container img {
        width: 200px;
    }
    .business_title {
        max-width: 250px;
}
}
@media (max-width: 1600px) {
    .brand_service_line .service-line-1, .brand_service_line .service-line-4{
        font-size: 32.05px;
        line-height: 56px;
    }
     .brand_service_line .service-line-2, .brand_service_line .service-line-3{
        font-size: 42.05px;
        line-height: 56px;
    }
        :root {
        --font-size-h1-med: 65.75px !important;
        --font-size-larger: 43.63px;
        }
    .customized_h2{
        line-height: 88px;
    }
    .create_description .create_line_1, .create_description .create_line_2{
         font-size: 42.05px;
        line-height: 56px;
    }
    .create_description .create_line_3{
        font-size: 32.05px;
        line-height: 56px;
    }
    .crm_part_4_section .side_bar_listing {
    margin-top: 30px;
    }
}

@media (min-width: 1285px) and (max-width: 1600px) {
    .nav_links li a {
        font-size: 12px;
    }

    :root {

        --font-size-h1: 132.84px !important;
        --font-size-h1-med: 65.75px !important;
        --font-size-h2: 42.46px !important;
        --font-size-h3: 42.46px !important;
        --font-size-h4: 32.05px !important;
        --font-size-large: 38.02px !important;
        --font-size-largest: 55.02px !important;
        --font-size-larger: 43.63px;
        --font-size-p: 47.25px !important;
        --font-size-small: 23.89px !important;
        --font-size-regular: 20px !important;
        --font-size-tiny: 15.25px !important;
        --font-size-micro: 16.85px !important;
        --font-size-h1-small: 13.75px;
    }

    .customized_h2 {
        line-height: 88px !important;
    }

    .branding_section {
        padding: 60px 0;
    }

    .brand_identity_section {
        padding-top: 179px;
    }

    .crm_part_4_section .side_bar_listing {
        margin-top: 36px;
    }

    .invoiving_content {
        padding-top: 188px
    }

    .web_design_section {
        padding-top: 33px;
    }

    .marketing_section {
        padding-top: 118px;
    }

    .create_description,
    .brand_service_line {
        line-height: 56px;
    }
}

@media (min-width: 1148px) and (max-width: 1286px) {
    .nav_links li a {
        font-size: 10px;
    }

}

@media (max-width: 768px) {
    .hero_text_container {
        margin-top: -55px;
    }

    .branding_title {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 250px;
    }

    .automation_content {
        margin-top: -92px;
    }

    .automation_column {
        padding-left: 50px;
        padding-right: 20px;
    }

    .security_description {
        padding-left: 20px;
        padding-right: 20px;
    }

    .security_section .side_bar_listing_cta .main_btn {
        padding: 15px 57px;
    }

    .crm_part_1_section .main_container {
        top: 30px;
    }

    .crm_part_4_section .crm_description {
        padding-left: 20px;
        padding-right: 20px;
    }

    .crm_part_4_section .side_bar_listing_title {
        margin-top: 60px;
    }

    .desktop_nav .nav_links li a {
        font-size: 17.92px;
    }

    .crm_part_4_section {
        min-height: 600px;
        background: var(--secondary-color);
    }

    .invoiving_content {
        padding-top: 190px;
    }

    :root {
        --font-size-h1: 132.84px !important;
        --font-size-h1-med: 65.75px !important;
        --font-size-h2: 25.46px !important;
        --font-size-h3: 42.46px !important;
        --font-size-h4: 32.05px !important;
        --font-size-large: 19.02px !important;
        --font-size-largest: 55.02px !important;
        --font-size-larger: 22.63px;
        --font-size-p: 47.25px !important;
        --font-size-small: 23.89px !important;
        --font-size-regular: 20px !important;
        --font-size-tiny: 15.25px !important;
        --font-size-micro: 16.85px !important;
        --font-size-h1-small: 13.75px;
    }

    .contact_info {
        justify-content: center;
    }

    .main_nav_container {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .hamburger_menu {
        right: 25px;
        top: -7px;
    }

    .hero_background_image {
        top: 50px;
    }

    .hero_text_container {
        padding-bottom: 0;
    }

    .hero_content {
        margin-top: 15vh;
    }

    .web_design_image_container {
        top: 50px;
    }

    /* Contact Modal Mobile Styles */
    .contact-modal-content {
        max-width: 95%;
        max-height: 75vh;
        border-radius: 15px;
    }

    .contact-modal-header {
        padding: 24px 18px 12px;
    }

    .contact-modal-title {
        font-size: 24px;
    }

    .contact-modal-subtitle {
        font-size: 14px;
    }

    .contact-modal-body {
        padding: 16px 18px 22px;
    }

    .contact-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        padding: 12px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .wpcf7-form input[type="submit"] {
        padding: 14px 20px;
        font-size: 16px;
    }
}