        :root {
            --primary: #ff5d9d; /* Solid Pink */
            --secondary: #45b4ff; /* Solid Blue */
            --accent: #8c52ff; /* Solid Purple */
            --dark: #1a1a2e; /* Deep Navy */
            --light: #ffffff; /* Pure White */
            --gray: #f5f7fa;
			

        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: var(--light);
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Navigation Bar */
        header {
            background: var(--light);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
			width:240px;
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 1.2rem;
            color: var(--black);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 10px 0;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links li.active a {
            color: var(--primary);
        }
        
        .nav-links li.active a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
        }
        
        .actions {
            display: flex;
            align-items: center;
            gap: 15px;
			appearance: none;
			
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 93, 157, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 93, 157, 0.4);
            background: #ff4a8d;
        }
        
        .btn-secondary {
            background: var(--secondary);
            color: white;
            box-shadow: 0 4px 15px rgba(69, 180, 255, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(69, 180, 255, 0.4);
            background: #30a5ff;
        }
        
        .lang-selector {
			appearance: none;
            position: relative;
			
        }
        
        .lang-selector select {
            padding: 8px 35px 8px 15px;
            border-radius: 20px;
            appearance: none;
            border: 1px solid #ddd;
            background-size: 10px;
            font-size: 0.9rem;
            color: #333;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }
        
        .hero-text {
            max-width: 600px;
            z-index: 2;
        }
        
        .hero-text h2 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            color: var(--dark);
        }
        
        .hero-text .highlight {
            color: var(--primary);
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.7;
            color: #555;
        }
        
        .features {
            display: flex;
            gap: 20px;
            margin: 25px 0;
        }
        
        .feature {
            flex: 1;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            text-align: center;
            border: 1px solid #eee;
        }
        
        .feature i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .feature h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .feature p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: #666;
        }
        
        .download-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
			justify-content: center;
        }
        
        .btn-download {
            display: flex;
            align-items: center;
            justify-content: center;  
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            background: #33333a;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            color: white;
        }
        
        .btn-download:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-download.android {
            border-left: 4px solid #3ddc84;
			width: 258px;
        }
        
        .btn-download.ios {
            border-left: 4px solid #007aff;
			width: 258px;
        }
        
        .btn-download i {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .hero-image {
            position: relative;
            flex: 1;
            z-index: 2;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 550px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
		
	
        .slide {
            display: none;
            width: 100%;
            height: auto;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            display: block;
            animation: fade 1s;
        }

        @keyframes fade {
            from {opacity: .4}
            to {opacity: 1}
        }

		  /* dropdown lang */
       .dropdown-container {
            max-width: 800px;
            margin: 20px auto;
            position: relative;
			appearance: none;
        }

        .dropdown-select {
            width: 100%;
            padding: 12px 20px;
            font-size: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background-color: white;
            appearance: none;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .dropdown-select:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        .dropdown-select:hover {
            border-color: #ff5d9d;
        }

        .dropdown-arrow {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #666;
            transition: transform 0.3s ease;
        }

        .dropdown-container.active .dropdown-arrow {
            transform: translateY(-50%) rotate(180deg);
        }
		
		
        
        /* Promotions */
        .promotions {
            background: var(--gray);
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
            position: relative;
            padding: 0 20px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        
        .promo-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .promo-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            width: 100%;
            max-width: 370px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            border: 1px solid #eee;
        }
        
        .promo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 93, 157, 0.22);
        }
        
        .promo-img {
            background-size: cover;
            height: 220px;
           /*  background: var(--secondary); */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.7rem;
            font-weight: bold;
            text-shadow:0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px red;
        }
        
        .promo-content {
            padding: 25px;
        }
        
        .promo-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .promo-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Blog */
        .blog {
            padding: 100px 0;
        }
        
        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 40px;
        }
        
        .blog-card {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s;
            background: white;
            border: 1px solid #eee;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
			 background-size: cover;
            height: 200px;
             /*  background: var(--accent); */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: bold;
			text-shadow:0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px red;
        }
        
        .blog-content {
            padding: 25px;
		   
        }
        
        .blog-date {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .blog-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--dark);
        }
        
        .blog-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;

        }
        
          .blog-content a {
             /*  color: var(--secondary);*/
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
		    color: var(--dark);
        }
		  
		  .blogdetail {
           padding-top: 130px;
        }
		
		   .blogdetail-card {
		
			margin-top: 25px;
			margin:auto;
			place-items: center;
            align-items: center;
           /*   box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);*/
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s;
            background: white;
            /* border: 1px solid #eee;*/
        }
		
        
		  .blogdetail-container {
		    width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
		  .blogdetail-content {
           padding: 25px;
        }
		
	       
          .blogdetail-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
			font-size: 1.2rem;
        }
        
		   
        .blogdetail-content h3 {
            font-size: 1.7rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--dark);
        }
		
		  .blogdetail-title {
			font-size: 1.4rem;
            text-align: center;
			 margin-top: 15px;
            margin-bottom: 0px;
            position: relative;
        }
		  .blogdetail-img {
			margin:auto;
			background-size: cover;
            height: 200px;
			width: 400px;
             /*  background: var(--accent); */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: bold;
			text-shadow:0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px white,0 0 3px red;
        }
		 .blogdetail-copyright
		{
            background: #0f1c2e;
            color: white;
            padding: 0px 0 30px;
			text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }
		
        /* Partners */
        .partners {
            padding: 80px 0;
            background: var(--dark);
            color: white;
            text-align: center;
        }
        
        .partners h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: white;
        }
        
        .partner-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .partner-logo {
            width: 140px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            color: white;
        }
        
        /* Subscribe */
        .subscribe {
            padding: 80px 0;
            background: var(--primary);
            text-align: center;
            color: white;
        }
        
        .subscribe h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .subscribe p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .subscribe-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        
        .subscribe-form button {
            padding: 16px 30px;
            border: none;
            border-radius: 0 50px 50px 0;
            background: var(--dark);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .subscribe-form button:hover {
            background: #252547;
        }
        
        /* Footer */
        footer {
            background: #0f1c2e;
            color: white;
            padding: 60px 0 30px;
        }
        

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .about-text {
            color: #999;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.3s;
        }
        
        .social-icon:hover {
            background: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .download-buttons {
                justify-content: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .features {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                height: 70px;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero-text h2 {
                font-size: 2.4rem;
            }
            
            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .promo-container, .blog-container {
                grid-template-columns: 1fr;
            }
            
            .feature {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .subscribe-form {
                flex-direction: column;
            }
            
            .subscribe-form input, 
            .subscribe-form button {
                border-radius: 50px;
                width: 100%;
            }
            
            .subscribe-form input {
                margin-bottom: 10px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .blog-container {
                grid-template-columns: 1fr;
            }
        }