* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 3s ease-in-out forwards;
}

.splash-content {
    text-align: center;
    color: white;
}

.splash-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loadProgress 2.5s ease-in-out forwards;
}

@keyframes fadeOut {
    0%, 80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Staggered Header Animations */
.header-text > * {
    opacity: 0;
    animation: slideUpFadeIn 0.6s ease-out forwards;
}

.header-text .logo { animation-delay: 0.2s; }
.header-text .tagline { animation-delay: 0.4s; }
.header-text .stats { animation-delay: 0.6s; }
.header-text .download-buttons { animation-delay: 0.8s; }

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-download {
    background: transparent;
    padding: 0;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.btn-download:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6), 0 0 30px rgba(118, 75, 162, 0.4);
}

.btn-download img {
    height: 50px;
    width: auto;
}

.header-phones {
    position: relative;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}



.phone {
    width: 200px;
    height: 400px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.phone1 {
    transform: rotate(-15deg) translateX(-30px);
    z-index: 2;
}

.phone2 {
    transform: rotate(15deg) translateX(30px);
    z-index: 1;
}

.header-phones:hover .phone1 {
    transform: rotate(-10deg) translateX(-20px) scale(1.05);
}

.header-phones:hover .phone2 {
    transform: rotate(10deg) translateX(20px) scale(1.05);
}

/* Features Section */
.features-section {
    padding: 0;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4d4d4' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature {
    width: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature:nth-child(odd) {
    transform: translateX(-100px);
}

.feature:nth-child(even) {
    transform: translateX(100px);
}

.feature.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature:nth-child(even) {
    background-color: #ffffff;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature:nth-child(even) .feature-text {
    order: 2;
}

.feature:nth-child(even) .feature-image {
    order: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-phones {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-phone {
    height: 500px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    background: none;
    object-fit: contain;
    max-width: 100%;
    transition: transform 0.5s ease;
}

.feature:nth-child(odd) .feature-phone {
    transform: rotate(15deg);
}

.feature:nth-child(even) .feature-phone {
    transform: rotate(-15deg);
}

.feature:hover .feature-phone {
    transform: rotate(0deg) scale(1.05);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: #333;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #999;
}

/* Blog Page Specific Styles */
.blog-page {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4d4d4' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-header {
    padding: 40px 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    animation: fadeIn 0.8s ease-out;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #007bff;
}

.blog-main {
    padding: 60px 0;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 992px) {
    .blog-content {
        grid-template-columns: 2fr 1fr;
    }
}

.blog-post, .blog-sidebar {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

.blog-sidebar { animation-delay: 0.2s; }

.post-category {
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: #666;
    margin-bottom: 2rem;
    display: flex;
    gap: 20px;
}

.post-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    display: inline-block;
}

.popular-posts a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.popular-posts a:hover {
    color: #007bff;
}

.blog-footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Blog Page Styles */
.blog-page {
    min-height: 100vh;
    background: #f8f9fa;
}

.blog-header {
    background: white;
    padding: 20px 0;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #333;
}

.blog-main {
    padding: 40px 0;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Static Page Styles (Privacy Policy, Terms of Service) */
.static-page-container {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.static-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.static-header .back-button {
    text-decoration: none;
}

.static-main {
    padding: 60px 0;
}

.static-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.static-content .subtitle {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.static-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.static-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #495057;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding: 10px 5px;
}

.static-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

/* Enhanced list styling */
.static-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
}

.static-content li {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    padding: 0px 10px;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Enhanced link styling */
.static-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.static-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.static-content a::after {
    content: '→';
    margin-left: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.static-content a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced strong text styling */
.static-content strong {
    color: #495057;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

.post-category {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #444;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.post-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    line-height: 1.8;
    color: #555;
}

.post-content h3 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sidebar-section p {
    color: #666;
    line-height: 1.6;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-post:hover {
    transform: translateX(5px);
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.popular-post-meta {
    color: #999;
    font-size: 0.8rem;
}

.blog-footer {
    background: #333;
    color: white;
    padding: 40px 0 20px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-phones {
        height: 480px;
    }

    .feature-phone {
        height: 430px;
    }
}

@media (max-width: 992px) {
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-text {
        order: 2;
    }

    .header-phones {
        order: 1;
        margin-bottom: 40px;
        height: 400px;
    }

    .phone {
        width: 180px;
        height: 360px;
    }

    .stats {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .header-phones {
        height: 300px;
    }

    .phone {
        width: 120px;
        height: 240px;
    }

    .stats {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .feature {
        padding: 60px 20px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
        width: 90%;
        max-width: 600px;
    }

    .feature-content {
        display: flex;
        flex-direction: column;
    }

    .feature-text, .feature:nth-child(even) .feature-text {
        order: 1;
    }

    .feature-image, .feature:nth-child(even) .feature-image {
        order: 2;
    }

    .feature-phones {
        width: 100%;
        height: 420px;
    }

    .feature-phone {
        height: 380px;
    }

    .feature:nth-child(odd) .feature-phone {
        transform: rotate(12deg);
    }

    .feature:nth-child(even) .feature-phone {
        transform: rotate(-12deg);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post {
        padding: 25px;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 5px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .splash-content h1 {
        font-size: 3rem;
    }

    .loading-bar {
        width: 250px;
    }

    .logo {
        width: 150px;
    }

    .tagline {
        font-size: 1rem;
    }

    .stats {
        gap: 20px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        padding: 40px 15px;
    }

    .feature-content {
        padding: 0 15px;
    }

    .feature-text h2 {
        font-size: 2rem;
    }

    .feature-phones {
        width: 100%;
        height: 350px;
    }

    .feature-phone {
        height: 320px;
    }

    .feature:nth-child(odd) .feature-phone {
        transform: rotate(8deg);
    }

    .feature:nth-child(even) .feature-phone {
        transform: rotate(-8deg);
    }

    .blog-section h2 {
        font-size: 2rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .sidebar-section {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .feature-phones {
        height: 300px;
    }

    .feature-phone {
        height: 280px;
    }

    .feature-text h2 {
        font-size: 1.8rem;
    }

    .feature-text p {
        font-size: 1rem;
    }
}