/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

/* Hero Section Styles */
.hero-section {
    height: 85vh;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem;
    height: 85vh;
}

.hero-left {
    text-align: left;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
    display: block;
    font-size: 50px;
}

.hero-headline .line-3 {
    color: #B37800;
}

.hero-description {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    margin-bottom: 1.5rem;
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #FED705;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(254, 215, 5, 0.2);
    max-width: 380px;
}

.highlight-item {
    text-align: center;
    flex: 1;
}

.highlight-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000000;
    display: block;
    margin-bottom: 0.1rem;
}

.highlight-text {
    font-size: 0.85rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.1;
}

.highlight-divider {
    width: 2px;
    height: 35px;
    background: #B37800;
    opacity: 0.3;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vector-placeholder {
    text-align: center;
    color: #ffffff;
}

.vector-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.vector-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 45px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        height: 100vh;
        padding-top: 0;
        overflow: hidden;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 1.5rem 2rem;
        height: 100vh;
        overflow: hidden;
    }

    .hero-headline {
        font-size: 2.6rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 450px;
        max-width: 350px;
    }

    .hero-highlights {
        gap: 1rem;
        padding: 0.7rem 1rem;
        max-width: 300px;
    }

    .hero-headline .line-1,
    .hero-headline .line-2,
    .hero-headline .line-3 {
        display: block;
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .hero-headline .line-1,
    .hero-headline .line-2,
    .hero-headline .line-3 {
        display: block;
        font-size: 40px;
    }

    .hero-section {
        height: 100vh;
        padding-top: 0;
        overflow-y: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1rem 1.5rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-left {
        text-align: center;
        order: 1;
        flex-shrink: 0;
    }

    .hero-right {
        order: 2;
        flex-shrink: 0;
    }

    .hero-headline {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 300px;
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-highlights {
        gap: 0.8rem;
        padding: 0.6rem 1rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .highlight-divider {
        width: 2px;
        height: 30px;
    }
}

@media (max-width: 480px) {

    .hero-headline .line-1,
    .hero-headline .line-2,
    .hero-headline .line-3 {
        display: block;
        font-size: 26px;
    }

    .hero-section {
        height: 100vh;
        padding-top: 0;
        overflow-y: auto;
    }

    .hero-content {
        padding: 0.8rem 1rem;
        height: auto;
        min-height: 100vh;
        gap: 1rem;
    }

    .hero-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 250px;
        max-width: 200px;
        margin: 0 auto;
    }

    .vector-placeholder i {
        font-size: 2.5rem;
    }

    .vector-placeholder p {
        font-size: 0.9rem;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 0.8rem;
    }

    .hero-highlights {
        gap: 0.6rem;
        padding: 0.5rem 0.8rem;
        max-width: 260px;
        margin: 0 auto;
    }

    .highlight-number {
        font-size: 1.4rem;
    }

    .highlight-text {
        font-size: 0.75rem;
    }

    .highlight-divider {
        height: 25px;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B37800 0%, #FED705 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    display: inline-block;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fafafa;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(179, 120, 0, 0.15);
    border-color: #B37800;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #B37800;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

/* Trust Section Responsive */
@media (max-width: 1024px) {
    .trust-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 2rem;
    }

    .trust-header {
        margin-bottom: 3rem;
    }

    .trust-title {
        font-size: 3rem;
    }

    .trust-stats {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.8rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .trust-header {
        margin-bottom: 2.5rem;
    }

    .trust-title {
        font-size: 2.5rem;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .trust-header {
        margin-bottom: 2rem;
    }

    .trust-title {
        font-size: 2rem;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Global Button Styles */
.btn,
.product-cta,
.hero-btn,
.explore-btn,
.cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    text-align: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover,
.product-cta:hover,
.hero-btn:hover,
.explore-btn:hover,
.cta-btn:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Product CTA buttons - full width within cards */
.product-cta {
    width: 100%;
    text-align: center;
    display: block;
}

.btn.secondary,
.explore-btn {
    background: transparent;
    color: #000000;
    border-color: #000000;
}

.btn.secondary:hover,
.explore-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: #FED705;
    color: #000000;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(254, 215, 5, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: none;
    width: 100%;
    padding: 0 2rem;
}

.logo {
    order: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    vertical-align: top;
}

.footer-logo-section a {
    text-decoration: none;
    display: inline-block;
}

.footer-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-logo-section a:hover .footer-logo {
    transform: scale(1.05);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Responsive Logo Sizes */
@media (max-width: 1024px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .android-apps-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }

    .android-apps-title {
        font-size: 2rem !important;
    }
}

.main-nav {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    order: 3;
    flex-shrink: 0;
}

.contact-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Contact Icon */
.contact-icon {
    display: none;
    width: 45px;
    height: 45px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon i {
    font-size: 18px;
}

.contact-icon:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid #B37800;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #FED705;
    color: #B37800;
    padding-left: 2rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    left: 0;
}

.drawer-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.drawer-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FED705;
}

.drawer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.mobile-nav-menu {
    list-style: none;
    flex: 1;
}

.mobile-nav-item {
    margin-bottom: 0.25rem;
    border: none;
    outline: none;
}

.mobile-nav-link {
    color: #B37800;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link:hover {
    background-color: #FED705;
    color: #B37800;
    transform: translateX(5px);
}

.mobile-dropdown-menu {
    list-style: none;
    background-color: #ffffff;
    border-radius: 8px;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border: none;
    box-shadow: none;
}

.mobile-nav-item.active .mobile-dropdown-menu {
    max-height: 200px;
    padding: 0.25rem 0;
}

.mobile-nav-item.dropdown .mobile-nav-link {
    position: relative;
}

.mobile-nav-item.dropdown .mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: none;
}

.mobile-dropdown-menu a {
    color: #B37800;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
    margin: 0;
}

.mobile-dropdown-menu a:hover {
    background-color: #FED705;
    padding-left: 2rem;
}


/* Overlay for mobile drawer */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content */
main {
    min-height: calc(100vh - 200px);
}

/* Blogs Section Styles */
.blogs-section {
    padding: 6rem 0;
    background: #ffffff;
}

.blogs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blogs-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B37800 0%, #FED705 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    display: inline-block;
}

.blogs-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Blog */
.featured-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-blog-content {
    padding: 1rem;
}

.featured-blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.featured-blog .blog-category {
    background: linear-gradient(135deg, #B37800 0%, #FED705 100%);
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-blog .blog-date {
    color: #666666;
    font-size: 0.9rem;
}

.featured-blog-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.featured-blog-excerpt {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.read-time,
.blog-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.read-time i,
.blog-views i {
    color: #B37800;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.featured-blog-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-blog:hover .featured-blog-image img {
    transform: scale(1.05);
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-content .blog-date {
    color: #666666;
    font-size: 0.9rem;
}

.blog-content .read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666666;
    font-size: 0.8rem;
}

.blog-content .read-time i {
    color: #B37800;
    font-size: 0.7rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #B37800;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #FED705;
    text-decoration: none;
    gap: 0.8rem;
}

.blog-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

/* View All Button */
.blogs-actions {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Blogs Section Responsive Design */
@media (max-width: 1024px) {
    .blogs-title {
        font-size: 3rem;
    }

    .featured-blog {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .featured-blog-title {
        font-size: 1.8rem;
    }

    .blogs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 4rem 0;
    }

    .blogs-title {
        font-size: 2.5rem;
    }

    .blogs-subtitle {
        font-size: 1rem;
    }

    .featured-blog {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .featured-blog-title {
        font-size: 1.6rem;
    }

    .featured-blog-excerpt {
        font-size: 1rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blogs-section {
        padding: 3rem 0;
    }

    .blogs-title {
        font-size: 2rem;
    }

    .featured-blog {
        padding: 1rem;
    }

    .featured-blog-title {
        font-size: 1.4rem;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .view-all-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Android Apps Section */
.android-apps-section {
    padding: 4rem 0;
    background: #ffffff;
}

.android-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.android-app-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.android-app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: #B37800;
}

.app-landscape-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.app-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.app-content {
    padding: 1.5rem;
}

.app-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.app-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-price-section {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: #B37800;
}

.price-currency {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.buy-now-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.buy-now-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #B37800 0%, #FED705 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Android Apps Header */
.android-apps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.android-apps-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B37800 0%, #FED705 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    display: inline-block;
}

@media (max-width: 1024px) {

    .android-apps-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .android-apps-title {
        font-size: 2.5rem !important;
    }

    .android-apps-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {

    .android-apps-header {
        margin-bottom: 2rem;
    }
}

.app-screenshots {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1rem;
}

.screenshot {
    flex: 1;
    max-width: 70px;
}

.phone-mockup {
    width: 80px;
    height: 140px;
    background: #000;
    border-radius: 6px;
    padding: 1px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 5px;
    padding: 6px;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 3px;
    padding: 4px;
    font-size: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-list .feature-item,
.status-list .status-item,
.transactions .transaction-item,
.calculator-input .input-field,
.scanner-interface .scan-text,
.qr-generator .input-text,
.history .history-item {
    margin: 1px 0;
    padding: 1px 2px;
    background: #f8f9fa;
    border-radius: 2px;
    font-size: 0.4rem;
}

.select-btn,
.download-btn,
.share-btn,
.add-btn,
.calculate-btn,
.generate-btn,
.save-btn,
.view-more,
.clear-btn {
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 0.4rem;
    margin: 1px 0;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 2px 0;
}

.progress-fill {
    width: 60%;
    height: 100%;
    background: #B37800;
    border-radius: 2px;
}

.balance,
.dashboard .chart-icon,
.result-item,
.summary-item {
    font-weight: 600;
    margin: 1px 0;
    font-size: 1rem;
}

.camera-view,
.qr-code {
    font-size: 1.2rem;
    margin: 2px 0;
}

.scan-frame {
    font-family: monospace;
    margin: 1px 0;
    font-size: 0.4rem;
}

.expense-today,
.budget-item,
.schedule-item {
    font-size: 0.4rem;
    margin: 1px 0;
    padding: 1px 2px;
    background: #f8f9fa;
    border-radius: 2px;
}

.budget-progress {
    height: 2px;
    background: #B37800;
    border-radius: 2px;
    width: 75%;
}

.loan-chart,
.result-chart,
.budget-chart {
    font-size: 0.8rem;
    margin: 2px 0;
}

.flash-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.6rem;
}

@media (max-width: 768px) {
    .android-apps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .app-content {
        padding: 1rem;
    }

    .app-landscape-image {
        height: 160px;
        padding: 0.5rem;
    }

    .app-bottom-section {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buy-now-btn {
        width: 100%;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #FED705;
    color: #000000;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.main-footer .container {
    max-width: none;
    width: 100%;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.footer-section h3,
.footer-section h4,
.footer-section h5 {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 800;
}

.footer-logo-section p {
    color: #000000;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
    line-height: 1;
}

.footer-section a:hover {
    color: #B37800;
    transform: translateX(5px);
}

/* Footer Menu Toggle (Mobile) */
.footer-menu-toggle {
    cursor: pointer;
    display: none;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

/* Desktop: Always show footer menus */
@media (min-width: 1025px) {
    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-menu {
        max-height: none !important;
        overflow: visible;
    }

    .footer-menu-toggle {
        cursor: default;
        display: block;
    }

    .footer-menu-toggle .toggle-icon {
        display: none;
    }

    .footer-menu-toggle h4 {
        margin-bottom: 1rem;
        color: #B37800;
        font-weight: 700;
    }

    .footer-newsletter-section {
        text-align: left;
    }

    .footer-newsletter-section h4,
    .footer-newsletter-section p {
        text-align: left;
    }

    .social-media-section h5 {
        text-align: left;
    }

    .social-media-icons {
        justify-content: flex-start;
        margin: 0;
    }

    .footer-logo-section {
        text-align: left;
    }
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-menu-section.active .toggle-icon {
    transform: rotate(45deg);
}

.footer-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-menu-section.active .footer-menu {
    max-height: 500px;
}

/* Newsletter Form */
.newsletter-form {
    margin: 1.5rem 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #B37800;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #8B5A00;
}

.newsletter-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #8B5A00;
    transform: translateY(-2px);
}

/* Social Media Icons */
.social-media-section {
    margin-top: 1.5rem;
}

.social-media-section h5 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1rem;
    text-align: center;
}

.social-media-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.75rem;
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.social-icon i {
    font-size: 20px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon.facebook {
    background-color: #1877F2;
    color: #ffffff;
}

.social-icon.youtube {
    background-color: #FF0000;
    color: #ffffff;
}

.social-icon.linkedin {
    background-color: #0077B5;
    color: #ffffff;
}

.social-icon.codecanyon {
    background-color: #000000;
    color: #ffffff;
}

.social-icon.behance {
    background-color: #1769FF;
    color: #ffffff;
}

.social-icon.dribbble {
    background-color: #EA4C89;
    color: #ffffff;
}

.social-icon-placeholder {
    width: 45px;
    height: 45px;
    /* Invisible placeholder to maintain grid layout */
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.social-icon:hover i,
.social-icon:hover .social-icon-img {
    color: inherit !important;
}

/* NP SoftTech Link */
.np-softtech-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.np-softtech-link:hover {
    color: #8B5A00;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.5rem;
    background-color: #B37800;
    color: #ffffff;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(179, 120, 0, 0.3);
}

.social-link:hover {
    background-color: #8B5A00;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(179, 120, 0, 0.5);
}

.footer-bottom {
    border-top: 2px solid #B37800;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #000000;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Copyright Section Below Footer */
.copyright-section {
    background-color: #B37800;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #8B5A00;
}

.copyright-section p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.copyright-section .np-softtech-link {
    color: #FED705;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-section .np-softtech-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-btn {
        display: none;
    }

    .contact-icon {
        display: flex;
    }

    .android-apps-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
        padding: 0 1rem;
    }

    .logo {
        order: 2;
        justify-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-actions {
        order: 3;
        justify-self: end;
    }

    .contact-btn {
        display: none;
    }

    .contact-icon {
        display: flex;
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon i {
        font-size: 14px;
    }
}

/* Mobile Footer Styles */
@media (max-width: 1024px) {
    .main-footer .container {
        padding: 0 1rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .footer-logo-section {
        text-align: center;
    }

    .footer-menu-toggle {
        display: flex;
    }

    .footer-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-menu-section.active .footer-menu {
        max-height: 500px;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-btn {
        width: 100%;
    }

    .social-media-icons {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-newsletter-section {
        text-align: center;
    }

    .footer-newsletter-section h4,
    .footer-newsletter-section p {
        text-align: center;
    }
}

/* Page content styles */
.page-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(179, 120, 0, 0.1);
    margin: 2rem 0;
    border: 1px solid rgba(254, 215, 5, 0.2);
}

.page-content h1 {
    color: #B37800;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #B37800 0%, #FED705 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content h2 {
    color: #B37800;
    margin: 2rem 0 1rem;
    font-size: 2rem;
    font-weight: 700;
    border-left: 4px solid #FED705;
    padding-left: 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
}

.page-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: #000000;
    font-size: 1.1rem;
}