html, body {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Mobirise Header */
.mobirise-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff7f0;
    padding: 0 40px;
    height: 72px;
    border-bottom: 1px solid #f3e5d8;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo {
    width: 36px;
    height: 36px;
}
.header-brand {
    font-size: 1.5em;
    font-weight: 900;
    color: #222;
    letter-spacing: 1px;
}
.header-nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.header-nav a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.2s;
    padding: 4px 0;
}
.header-nav a:hover {
    color: #ff9800;
}
.header-actions {
    display: flex;
    gap: 16px;
}
.header-btn {
    font-size: 1.05em;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 22px;
    text-decoration: none;
    border: 2px solid #ff9800;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.header-btn.outline {
    background: #fff7f0;
    color: #ff9800;
}
.header-btn.outline:hover {
    background: #ff9800;
    color: #fff;
}
.header-btn.solid {
    background: #ff9800;
    color: #fff;
    border: 2px solid #ff9800;
}
.header-btn.solid:hover {
    background: #fb8c00;
    border-color: #fb8c00;
}

/* Mobirise Hero Section */
.mobirise-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #fff3e0;
    padding: 70px 8vw 60px 8vw;
    min-height: 420px;
    border-radius: 0 0 32px 32px;
    flex-wrap: wrap;
}
.hero-left {
    flex: 1 1 420px;
    min-width: 300px;
    max-width: 600px;
}
.hero-title {
    font-size: 2.8em;
    font-weight: 900;
    color: #222;
    margin-bottom: 0.3em;
    line-height: 1.1;
}
.highlight-bg {
    background: #ffdbac;
    color: #222;
    border-radius: 10px;
    padding: 0 12px;
    display: inline-block;
}
.hero-features {
    display: flex;
    gap: 28px;
    margin-bottom: 18px;
    margin-top: 18px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08em;
    color: #222;
    font-weight: 600;
}
.hero-desc {
    font-size: 1.13em;
    color: #444;
    margin-bottom: 2em;
    max-width: 520px;
}
.cta-btn.mobirise {
    background: linear-gradient(90deg, #ff9800 60%, #fb8c00 100%);
    color: #fff;
    padding: 16px 44px;
    border-radius: 32px;
    font-size: 1.15em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(255,152,0,0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}
.cta-btn.mobirise:hover {
    background: linear-gradient(90deg, #fb8c00 60%, #ff9800 100%);
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 12px 32px rgba(255,152,0,0.22);
}
.hero-right {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}
.hero-image-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(255,152,0,0.10);
    border: 4px solid #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modern Nav Bar */
.modern-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #333;
    padding: 0 40px;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-brand {
    font-size: 1.7em;
    font-weight: 900;
    color: #ff9800;
    letter-spacing: 2px;
    flex: 1;
    text-align: center;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #ff9800;
}

/* Mobirise Services Section */
.mobirise-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}
.section-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: 800;
    color: #222;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(255,152,0,0.08);
    padding: 36px 28px 28px 28px;
    max-width: 270px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,152,0,0.16);
}
.service-icon {
    margin-bottom: 18px;
}
.service-card h3 {
    font-size: 1.18em;
    color: #ff9800;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}
.service-card p {
    color: #444;
    font-size: 1em;
    text-align: center;
}

/* Why Choose Us Section */
.why-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}
.why-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(255,152,0,0.08);
    padding: 32px 24px 24px 24px;
    max-width: 260px;
    min-width: 200px;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.why-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,152,0,0.16);
}
.why-icon {
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 1.13em;
    color: #ff9800;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}
.why-card p {
    color: #444;
    font-size: 0.98em;
    text-align: center;
}

/* Stats/Numbers Section */
.stats-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(255,152,0,0.08);
    padding: 32px 24px 24px 24px;
    max-width: 220px;
    min-width: 160px;
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,152,0,0.16);
}
.stat-icon {
    margin-bottom: 12px;
}
.stat-number {
    font-size: 2em;
    font-weight: 900;
    color: #ff9800;
    margin-bottom: 6px;
    text-align: center;
}
.stat-label {
    color: #444;
    font-size: 1em;
    text-align: center;
}

/* Stats + Tools Section */
.stats-tools-section {
    background: #eaf4fa;
    padding: 60px 0 60px 0;
    margin-bottom: 60px;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.stat-block {
    text-align: center;
    min-width: 180px;
}
.stat-big {
    font-size: 2.3em;
    font-weight: 900;
    color: #222;
    margin-bottom: 6px;
}
.stat-label {
    color: #444;
    font-size: 1.08em;
}
.tools-title {
    text-align: center;
    font-size: 2em;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    letter-spacing: 1px;
}
.tools-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.tool-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(59,130,246,0.08);
    padding: 32px 28px 28px 28px;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.18s, box-shadow 0.18s;
}
.tool-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(59,130,246,0.16);
}
.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.tool-title {
    font-size: 1.13em;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}
.tool-desc {
    color: #444;
    font-size: 1em;
    text-align: left;
}

/* Responsive */
@media (max-width: 800px) {
    .mobirise-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: auto;
        padding:20px;
        gap: 0;
        position: relative;
    }
    .header-left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        margin: 0;
        flex: 0 0 auto;
    }
    .hamburger {
        display: block;
        margin-left: auto;
        position: static;
    }
    .header-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff7f0;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        padding: 24px 0 16px 0;
        z-index: 150;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    .header-menu.active {
        display: flex;
    }
    .header-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin: 10px 0;
    }
    .header-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-bottom: 10px;
    }
    .header-btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    
}

@media (max-width: 700px) {
    .mobirise-hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px 2vw 18px 2vw;
        border-radius: 0 0 12px 12px;
        min-height: unset;
    }
    .hero-left, .hero-right {
        max-width: 100%;
        min-width: 0;
        padding: 0;
    }
    .hero-title {
        font-size: 1.5em;
    }
    .hero-image-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    html, body {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
        background: #f9f9f9;
    }
    .mobirise-header {
        padding: 0 0 0 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none !important;
    }
    .header-left, .header-brand, .header-logo {
        margin: 0 !important;
        padding: 0 !important;
    }
    .header-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #fff7f0 !important;
        z-index: 999 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 32px 0 0 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .header-menu.active {
        display: flex !important;
    }
    .menu-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2em;
        color: #222;
        border: none;
        cursor: pointer;
        z-index: 1001;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .header-nav, .header-actions {
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .header-nav a, .header-btn {
        width: 90% !important;
        margin: 0 auto 12px auto !important;
        font-size: 1.1em !important;
        border-radius: 8px !important;
    }
    .mobirise-hero, .mobirise-section, .stats-tools-section {
        padding: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        margin: 0 0 18px 0 !important;
        box-shadow: none !important;
    }
    .hero-left, .hero-right {
        padding: 0 0 0 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: 1.1em !important;
        margin-bottom: 0.2em;
        text-align: center !important;
    }
    .highlight-bg {
        padding: 0 6px !important;
        border-radius: 4px !important;
    }
    .hero-features {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 10px 0 10px 0 !important;
        width: 100% !important;
    }
    .hero-feature {
        width: 95% !important;
        justify-content: center !important;
        font-size: 0.98em !important;
        padding: 8px 0 8px 0 !important;
        border-radius: 8px !important;
        margin: 0 auto 6px auto !important;
        background: #fff7f0 !important;
        box-shadow: none !important;
    }
    .hero-image-circle {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        margin: 0 auto !important;
        box-shadow: none !important;
        border: 2px solid #ff9800 !important;
    }
    .cta-btn.mobirise {
        font-size: 1em !important;
        padding: 12px 0 !important;
        width: 95% !important;
        margin: 16px auto 0 auto !important;
        display: block !important;
        border-radius: 24px !important;
    }
    .tool-card, .service-card, .why-card, .stat-card {
        padding: 10px 0 10px 0 !important;
        border-radius: 8px !important;
        margin: 0 0 10px 0 !important;
        box-shadow: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    .tool-title, .service-card h3, .why-card h3 {
        font-size: 1em !important;
        margin-bottom: 6px !important;
        text-align: center !important;
    }
    .tool-desc, .service-card p, .why-card p, .stat-label {
        font-size: 0.93em !important;
        text-align: center !important;
    }
    .tools-row, .services-cards, .why-cards, .stats-cards {
        gap: 6px !important;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: center !important;
    }
    .stats-row {
        gap: 6px !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .stat-block {
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 0 12px 0 !important;
        text-align: center !important;
    }
    .stat-big, .stat-number {
        font-size: 1em !important;
        text-align: center !important;
    }
    .tools-title, .section-title {
        font-size: 1.1em !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    #hero {
        height: auto !important;
        min-height: unset !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 1100px) {
    .mobirise-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 2vw 30px 2vw;
        border-radius: 0 0 18px 18px;
    }
    .hero-left {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-right {
        margin-top: 30px;
        padding-right: 0;
    }
    .hero-title {
        font-size: 2.1em;
    }
    .hero-image-circle {
        width: 220px;
        height: 220px;
    }
    .services-cards {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .service-card {
        max-width: 100%;
        width: 100%;
    }
    .why-cards {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .why-card {
        max-width: 100%;
        width: 100%;
    }
    .stats-cards {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .stat-card {
        max-width: 100%;
        width: 100%;
    }

    
}

@media (max-width: 900px) {
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .tools-row {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .tool-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Hamburger styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 200;
}
.header-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
@media (max-width: 800px) {
    .hamburger {
        display: block;
    }
    .header-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff7f0;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        padding: 24px 0 16px 0;
        z-index: 150;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    .header-menu.active {
        display: flex;
    }
    .header-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
        margin: 0 0 18px 0;
    }
    .header-nav a {
        font-size: 1.1em;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 24px;
        width: 100%;
    }
    .header-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 24px;
    }
    .header-btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    
}

@media screen and (max-width:1180px) and (max-height: 820px) {
    .hero-img-circle{
        width: 200px !important;
    height: 200px !important;
    }
}

@media screen and (max-width:820px) and (max-height: 1180px) {
    .hero-img-circle{
        width: 200px !important;
    height: 200px !important;
    }
}

/* Hero features always flex, stack on mobile */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
    margin-top: 18px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08em;
    color: #222;
    font-weight: 600;
    background: #fff7f0;
    border-radius: 8px;
    padding: 6px 14px;
    box-shadow: 0 2px 8px rgba(255,152,0,0.06);
}
@media (max-width: 700px) {
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hero-feature {
        width: 100%;
        justify-content: flex-start;
        font-size: 1em;
    }

    .logo{
        margin-left: 0px;
    }
    
}

.mobirise-hero, .stats-tools-section, .mobirise-section {
    word-break: break-word;
}

/* Hero image circle responsive */
.hero-img-circle {
    width: 512px ;
    height: 512px;
}
@media (max-width: 600px) {
    .hero-img-circle {
        width: 280px !important;
        height: 280px !important;
    }

    .logo{
        margin-left: 0!important;
    }

}

.logo{
    width: 150px;
}

@media screen and (max-width:1920px) and (max-height: 1080px) {

    .logo{
        margin-left: 280px;
    }

}

@media screen and (max-width: 1536px) and (max-height: 864px) {
    .logo {
        margin-left: 110px;
    }
}

.navbar-expand-lg .navbar-collapse{
    padding-right: 100px !important;
}
