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

    body {
        font-family: 'Quicksand', sans-serif;
        line-height: 1.6;
        color: #1a1a1a;
        overflow-x: hidden;
        scroll-behavior: smooth;
        background: #fafafa;
    }

    :root {
        --primary: #00B15D;
        --primary-dark: #009449;
        --primary-light: #00D96F;
        --text-dark: #0a0a0a;
        --text-gray: #6b7280;
        --bg-light: #f9fafb;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
        --gradient-primary: linear-gradient(135deg, #00B15D 0%, #00D96F 100%);
    }

    .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #00B15D, #00D96F);
        color: white;
        width: 90%;
        max-width: 800px;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    .cookie-banner.show {
        opacity: 1;
        visibility: visible;
    }

    /* Modern Header */
    header {
        /* background: rgba(255, 255, 255, 0.95); */
        backdrop-filter: blur(20px);
        /* padding: 1rem 0; */
        box-shadow: 0 1px 0 rgba(0,0,0,0.05);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    header.scrolled {
        padding: 0.5rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .logo {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        letter-spacing: -0.5px;
    }

    .nav-links a {
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 177, 93, 0.25);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 177, 93, 0.35);
    }

    .btn-secondary {
        background: white;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
        background: var(--primary);
        color: white;
    }

    /* Modern Hero */
    .hero {
        margin-top: 0px;
        padding: 8rem 0 6rem;
        position: relative;
        overflow: hidden;
        background-image: url('../images/hero_bg.jpg'); 
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        background-attachment: fixed; 
    }

    /* Add overlay for better text readability */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(240, 253, 244, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
        z-index: 0;
    }

    /* Ensure content is above overlay */
    .hero .container {
        position: relative;
        z-index: 1;
    }


   .phone-mockup-upright {
        position: relative;
        width: 320px;
        height: 650px;
        animation: floatUpright 4s ease-in-out infinite;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    }

    @keyframes floatUpright {
        0%, 100% { 
            transform: translateY(0);
        }
        50% { 
            transform: translateY(-20px);
        }
    }

    .phone-frame-upright {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(145deg, #e8e8e8, #ffffff);
        border-radius: 45px;
        padding: 12px;
        box-shadow: 
            0 0 0 2px rgba(0, 0, 0, 0.1),
            0 20px 40px rgba(0, 0, 0, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .phone-bezel-upright {
        position: relative;
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 38px;
        overflow: hidden;
    }

    .phone-notch-upright {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 30px;
        background: #00B15D;
        border-radius: 0 0 20px 20px;
        z-index: 10;
    }

    .phone-notch-upright::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .phone-notch-upright::after {
        content: '';
        position: absolute;
        top: 8px;
        right: 20px;
        width: 10px;
        height: 10px;
        background: rgba(100, 100, 255, 0.3);
        border-radius: 50%;
    }

    .phone-screen-upright {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .phone-screen-upright::-webkit-scrollbar {
        width: 0;
    }

    .phone-button-upright {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 10;
    }

    /* Side buttons */
    .phone-frame-upright::before {
        content: '';
        position: absolute;
        right: -4px;
        top: 120px;
        width: 4px;
        height: 60px;
        background: linear-gradient(to right, #c0c0c0, #e0e0e0);
        border-radius: 2px 0 0 2px;
    }

    .phone-frame-upright::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 200px;
        width: 4px;
        height: 80px;
        background: linear-gradient(to right, #c0c0c0, #e0e0e0);
        border-radius: 2px 0 0 2px;
    }

    /* Login Screen UI */
    .login-screen {
        padding: 60px 30px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100%;
    }

   

    .app-logo-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 177, 93, 0.3);
        flex-shrink: 0;
    }

    .login-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.3rem;
        text-align: center;
    }

    .login-subtitle {
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 2rem;
        text-align: center;
    }

    .login-form {
        width: 100%;
    }

    .form-group-mock {
        background: white;
        border-radius: 12px;
        padding: 12px 15px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .input-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .input-field {
        flex: 1;
    }

    .input-label {
        font-size: 0.7rem;
        color: #9ca3af;
        margin-bottom: 2px;
        font-weight: 500;
    }

    .input-text,
    .input-dots {
        font-size: 0.9rem;
        color: #1a1a1a;
        font-weight: 500;
    }

    .forgot-password {
        text-align: right;
        margin-bottom: 1.5rem;
    }

    .forgot-password span {
        font-size: 0.8rem;
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
    }

    .login-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 177, 93, 0.3);
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 177, 93, 0.4);
    }

    .divider {
        display: flex;
        align-items: center;
        margin: 1.5rem 0;
        color: #9ca3af;
        font-size: 0.8rem;
    }

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }

    .divider span {
        padding: 0 1rem;
    }

    .social-login {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        color: white;
    }

    .social-btn.google {
        background: linear-gradient(135deg, #ea4335 0%, #d33426 100%);
    }

    .social-btn.facebook {
        background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
    }

    .social-btn.apple {
        background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    }

    .social-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .signup-text {
        text-align: center;
        font-size: 0.85rem;
        color: #6b7280;
    }

    .signup-link {
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
    }

    /*  screens design*/
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 1.1rem;
        color: var(--text-gray);
    }

    .feature-item i {
        color: var(--primary);
        font-size: 1.3rem;
    }

    /* Phone Screen Container */
    .phone-screen-upright {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .phone-screen-upright::-webkit-scrollbar {
        width: 0;
    }

    /* Login Screen Container */
    .login-screen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        padding: 60px 30px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .login-screen.hiding {
        opacity: 0;
        transform: translateX(-20px);
        pointer-events: none;
    }

    /* Alert Styles */
    .alert-mock {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.8rem;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .alert-danger-mock {
        background: #fee2e2;
        color: #dc2626;
        border: 1px solid #fca5a5;
    }

    .alert-success-mock {
        background: #d1fae5;
        color: #059669;
        border: 1px solid #6ee7b7;
    }

    /* App Logo Circle */
    .app-logo-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 177, 93, 0.3);
        flex-shrink: 0;
    }

    .login-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.3rem;
        text-align: center;
        width: 100%;
    }

    .login-subtitle {
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 2rem;
        text-align: center;
        width: 100%;
    }

    .login-form {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Input Fields */
    .form-group-mock-input {
        background: white;
        border-radius: 12px;
        padding: 12px 15px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        width: 100%;
    }

    .form-group-mock-input:focus-within {
        box-shadow: 0 4px 12px rgba(0, 177, 93, 0.2);
        border: 1px solid var(--primary);
    }

    .input-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .input-field-real {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .input-label-real {
        font-size: 0.7rem;
        color: #9ca3af;
        margin-bottom: 2px;
        font-weight: 500;
    }

    .input-text-real {
        border: none;
        outline: none;
        background: transparent;
        font-size: 0.9rem;
        color: #1a1a1a;
        font-weight: 500;
        width: 100%;
    }

    .input-text-real::placeholder {
        color: #d1d5db;
    }

    /* OTP Input Styles */
    .otp-container {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin: 2rem;
    }

    .otp-input {
        width: 35px;
        height: 50px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        background: white;
        color: var(--primary);
        transition: all 0.3s ease;
    }

    .otp-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 177, 93, 0.1);
    }

    .otp-input.filled {
        border-color: var(--primary);
        background: rgba(0, 177, 93, 0.05);
    }

    /* Remember & Forgot */
    .remember-forgot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .remember-check {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #6b7280;
        cursor: pointer;
        margin: 0;
    }

    .remember-check input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    .forgot-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .forgot-link:hover {
        text-decoration: underline;
    }

    /* Buttons */
    .login-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 177, 93, 0.3);
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .login-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 177, 93, 0.4);
    }

    .login-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .login-btn i {
        transition: transform 0.3s ease;
    }

    .login-btn:hover i {
        transform: translateX(4px);
    }

    /* Back Button */
    .back-btn {
        position: absolute;
        top: 50px;
        left: 20px;
        width: 40px;
        height: 40px;
        border: none;
        background: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 10;
    }

    .back-btn:hover {
        background: var(--primary);
        color: white;
        transform: translateX(-3px);
    }

    /* Back to Login */
    .back-to-login {
        text-align: center;
        margin-top: 1.5rem;
        width: 100%;
    }

    .back-to-login a {
        color: var(--text-gray);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .back-to-login a:hover {
        color: var(--primary);
    }

    /* Resend Code */
    .resend-container {
        text-align: center;
        margin-top: 1rem;
    }

    .resend-text {
        font-size: 0.85rem;
        color: #6b7280;
        margin-bottom: 0.5rem;
    }

    .resend-btn {
        background: none;
        border: none;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .resend-btn:hover:not(:disabled) {
        text-decoration: underline;
    }

    .resend-btn:disabled {
        color: #9ca3af;
        cursor: not-allowed;
    }

    /* Password Requirements */
    .password-requirements {
        background: white;
        padding: 12px 15px;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        border-left: 3px solid var(--primary);
    }

    .requirement-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .requirement-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .requirement-list li {
        font-size: 0.75rem;
        color: #6b7280;
        margin-bottom: 0.3rem;
        padding-left: 1.2rem;
        position: relative;
    }

    .requirement-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .login-screen {
            padding: 50px 25px 25px;
        }
        
        .app-logo-circle {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
        
        .login-title {
            font-size: 1.3rem;
        }

        .otp-input {
            width: 35px;
            height: 45px;
            font-size: 1.3rem;
        }
    }

    @media (max-width: 768px) {
        .login-screen {
            padding: 40px 20px 20px;
        }

        .otp-input {
            width: 35px;
            height: 40px;
            font-size: 1.2rem;
        }
    }
    /* Screen Transition */
    .login-screen {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .login-screen.hiding {
        opacity: 0;
        transform: translateX(-20px);
    }

    .login-screen.showing {
        opacity: 1;
        transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .phone-mockup-upright {
            width: 280px;
            height: 570px;
        }
        
        .login-screen {
            padding: 50px 25px 25px;
        }
        
        .app-logo-circle {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
        
        .login-title {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 768px) {
        .phone-mockup-upright {
            width: 300px;
            height: 570px;
            margin-left: 20px;
            margin-top:50px;
        }
        
        .login-screen {
            padding: 40px 20px 20px;
        }
    }
    /* Side buttons (volume & power) */
    .phone-frame::before {
        content: '';
        position: absolute;
        right: -4px;
        top: 120px;
        width: 4px;
        height: 60px;
        background: linear-gradient(to right, #c0c0c0, #e0e0e0);
        border-radius: 2px 0 0 2px;
    }

    .phone-frame::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 200px;
        width: 4px;
        height: 80px;
        background: linear-gradient(to right, #c0c0c0, #e0e0e0);
        border-radius: 2px 0 0 2px;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .phone-mockup-3d {
            width: 280px;
            height: 570px;
            transform: rotateY(-10deg) rotateX(3deg);
        }
        
        @keyframes float3d {
            0%, 100% { 
                transform: rotateY(-10deg) rotateX(3deg) translateY(0);
            }
            50% { 
                transform: rotateY(-10deg) rotateX(3deg) translateY(-15px);
            }
        }
    }

    @media (max-width: 768px) {
        .phone-mockup-3d {
            width: 260px;
            height: 530px;
            transform: rotateY(0deg) rotateX(0deg);
        }
        
        @keyframes float3d {
            0%, 100% { 
                transform: rotateY(0deg) rotateX(0deg) translateY(0);
            }
            50% { 
                transform: rotateY(0deg) rotateX(0deg) translateY(-15px);
            }
        }
    }

    /* Modern App Carousel Section */
    .app-carousel-section {
        padding: 6rem 0;
        background: white;
        position: relative;
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--text-dark);
        text-align: center;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: var(--text-gray);
        text-align: center;
        max-width: 600px;
        margin: 0 auto 4rem;
    }
    
    /* App Scroll Gallery Section */
    .app-scroll-gallery {
        padding: 6rem 0;
        background: white;
        position: relative;
        overflow: hidden;
    }

    .gallery-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: center;
        align-items: center;       
    }

    /* Phone Mockup for Gallery */
    .phone-mockup-gallery {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .phone-frame-gallery {
        position: relative;
        width: 320px;
        height: 650px;
        background: linear-gradient(145deg, #e8e8e8, #ffffff);
        border-radius: 45px;
        padding: 12px;
        box-shadow: 
            0 0 0 2px rgba(0, 0, 0, 0.1),
            0 20px 40px rgba(0, 0, 0, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .phone-bezel-gallery {
        position: relative;
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 38px;
        overflow: hidden;
    }

    .phone-notch-gallery {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 30px;
        background: #fff;
        border-radius: 0 0 20px 20px;
        z-index: 10;
    }

    .phone-notch-gallery::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .phone-notch-gallery::after {
        content: '';
        position: absolute;
        top: 8px;
        right: 20px;
        width: 10px;
        height: 10px;
        background: rgba(100, 100, 255, 0.3);
        border-radius: 50%;
    }

    .phone-screen-gallery {
        position: relative;
        width: 100%;
        height: 100%;
        background: white;
        overflow: hidden;
    }

    /* Screen Slider */
    .screen-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .screen-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .screen-slide.active {
        opacity: 1;
        transform: translateX(0);
    }

    .screen-slide.prev {
        opacity: 0;
        transform: translateX(-100%);
    }

    .screen-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .phone-button-gallery {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 10;
    }

    /* Side buttons */
    .phone-frame-gallery::before {
        content: '';
        position: absolute;
        right: -4px;
        top: 120px;
        width: 4px;
        height: 60px;
        background: linear-gradient(to right, #c0c0c0, #e0e0e0);
        border-radius: 2px 0 0 2px;
    }

    .phone-frame-gallery::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 200px;
        width: 4px;
        height: 80px;
        background: linear-gradient(to right, #c0c0c0, #e0e0e0);
        border-radius: 2px 0 0 2px;
    }

    /* Screen Indicators */
    .screen-indicators {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
        margin-top: 1rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(0, 177, 93, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator:hover {
        background: rgba(0, 177, 93, 0.5);
        transform: scale(1.2);
    }

    .indicator.active {
        background: var(--primary);
        width: 30px;
        border-radius: 6px;
    }

    /* Screen Label */
    .screen-label {
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-dark);     
        
        min-height: 30px;
        transition: all 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .phone-frame-gallery {
            width: 280px;
            height: 570px;
        }
    }

    @media (max-width: 576px) {
        .phone-frame-gallery {
            width: 260px;
            height: 530px;
        }
        
        .screen-label {
            font-size: 1rem;
        }
    }

    /* Side preview images */
    .side-preview {
        width: 250px;
        height: 540px;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        opacity: 0.6;
        transform: scale(0.9) rotateY(-15deg);
        transition: all 0.5s ease;
        position: relative;
    }

    .side-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Adjust for next preview */
    .next-preview {
        transform: scale(0.9) rotateY(15deg);
    }

    /* Hover or active effect for center phone */
    .phone-mockup-gallery {
        z-index: 5;
        transform: scale(1.05);
        transition: all 0.5s ease;
    }

    /* Layout alignment */
    .gallery-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .side-preview {
            display: none;
        }
    }

    /* About Section */
    .about-section {
        padding: 6rem 0;
        background: var(--bg-light);
    }

    .about-content p {
        font-size: 1.1rem;
        color: var(--text-gray);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .feature-box {
        display: flex;
        align-items: start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(0, 177, 93, 0.25);
    }

    .feature-text h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .feature-text p {
        color: var(--text-gray);
        margin: 0;
        font-size: 1rem;
    }

    .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

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

    /* Modern Services Section */
    .services {
        padding: 6rem 0;
        background: #fafafa;
        border-bottom: 1px solid #eee;
        border-top: 1px solid #eee;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: var(--shadow-sm);
        transition: all 0.4s ease;
        border: 1px solid rgba(0,0,0,0.05);
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: var(--gradient-primary);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    .service-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .service-card p {
        color: var(--text-gray);
        line-height: 1.7;
    }

        /* Pricing Section */
    .pricing {
        background: #ffffff;
         padding: 6rem 0;
    }

    .pricing-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .pricing-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .pricing-card.featured {
        border: 3px solid var(--primary);
        transform: scale(1.05);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .popular-badge {
        position: absolute;
        top: 20px;
        right: -30px;
        background: var(--primary);
        color: white;
        padding: 0.5rem 3rem;
        transform: rotate(45deg);
        font-size: 0.8rem;
        font-weight: bold;
    }

    .pricing-card h3 {
        font-size: 1.8rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .price {
        font-size: 2.5rem;
        color: var(--primary);
        font-weight: bold;
        margin: 1rem 0;
        display: flex;
        align-items: flex-start;
    }

    .price span {
        font-size: 1.2rem;
        color: var(--text-gray);
        margin-top: 0.5rem;
    }

    .features {
        list-style: none;
        margin: 2rem 0;
    }

    .features li {
        padding: 0.8rem 0;
        color: var(--text-gray);
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .features li:before {
        content: "✓";
        color: var(--primary);
        font-weight: bold;
    }

    /* FAQ Section */
    .faq-section {
        padding: 6rem 0;
        background: var(--bg-light);
    }

    .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        background: white;
    }

    .accordion-button {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        padding: 1.5rem;
        background: white;
        border: none;
        box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
        background: var(--bg-light);
        color: var(--primary);
    }

    .accordion-button::after {
        background-size: 1.2rem;
    }

    .accordion-body {
        padding: 1.5rem;
        color: var(--text-gray);
        line-height: 1.7;
        font-size: 1rem;
    }

    /* Modern Footer */
    footer {
        background: var(--text-dark);
        color: white;
        padding: 4rem 0 1.5rem;
    }

    .footer-section h3 {
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        text-decoration: none;
    }

    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero-content h1 { font-size: 3rem; }
        .phone-side { display: none !important; }
        .phone-center { width: 300px; height: 600px; }
        .carousel-control-prev { left: 2%; }
        .carousel-control-next { right: 2%; }
    }

    @media (max-width: 768px) {
        .hero-content h1 { font-size: 2.5rem; }
        .section-title { font-size: 2.2rem; }
        .phone-center { width: 280px; height: 560px; }
        .carousel-control-prev,
        .carousel-control-next { display: none !important; }
    }

    @media (max-width: 576px) {
        .hero-content h1 { font-size: 2rem; }
        .phone-center { width: 240px; height: 480px; }
        .hero { padding: 6rem 0 4rem; }
        section { padding: 4rem 0 !important; }
    }


    /* Policy Content */
    .policy-hero {
        margin-top: 0px;
        padding: 6rem 0 2rem;
        background: linear-gradient(135deg, #f0fdf4 0%, #f9fafb 100%);
        position: relative;
        overflow: hidden;
        background-image: url('../images/hero_bg_2.jpg'); 
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        background-attachment: fixed; 
    }

     .policy-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(240, 253, 244, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
        z-index: 0;
    }

    .policy-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--text-dark);
        text-align: center;
        margin-bottom: 1rem;
        letter-spacing: -1px;
        opacity: 0.9;
    }

    .policy-subtitle {
        font-size: 1.15rem;
        color: var(--text-gray);
        text-align: center;
        max-width: 700px;
        margin: 0 auto 2rem;
        opacity: 0.8;
    }

    .policy-content {
        padding: 4rem 0;
        background: white;
    }

    .policy-section {
        margin-bottom: 3rem;
    }

    .policy-section h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary-light);
    }

    .policy-section h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-dark);
        margin: 1.5rem 0 1rem;
    }

    .policy-section p {
        color: var(--text-gray);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .policy-section ul {
        margin-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policy-section li {
        color: var(--text-gray);
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .last-updated {
        background: var(--bg-light);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 2rem;
        border-left: 4px solid var(--primary);
    }