	html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            text-align: center;
            color: #555;
		cursor: url('assets/img/cursor.svg'), auto;
		    user-select: none; /* Prevents text selection */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none;
        }
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
	.menu-icon { padding: 20px;  border: 0.5px solid #fff; }
	.menu-icon:hover { color: #fff; border-radius: 10px; border: 0.5px solid #ebc0ff; background-color: #f8ebff; cursor: pointer;}
	@font-face {
   	 font-family: 'Catthy Wellingten';
  	  src: url('assets/fonts/Catthy Wellingten.ttf') format('truetype');
	}
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
        }
        .nav {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: white;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10%);
            transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, visibility 0.6s ease-in-out;
        }
        .nav.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav ul {
            list-style: none;
            padding: 0;
        }
        .nav ul li {
            padding: 20px;
            font-size: 1.5rem;
        }
        .nav ul li a {
            text-decoration: none;
            color: white;
        }
        .close-menu {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            cursor: pointer;
		padding: 40px;
        }
        .container-privacy-policy {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background: white;
	text-align: left;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
	        .back-to-home {
            display: block;
            margin-top: 20px;
            text-align: center;
        }
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }
        .hero-text {
            max-width: 50%;
        }
        .hero h1 {
            font-weight: 700;
            font-size: 3rem;
        }
        .hero p {
            font-weight: 300;
            font-size: 1.2rem;
        }
        .button {
            background: linear-gradient(60deg, #b400ff, #d997ff, #b400ff);
            background-size: 400% 400%;
            animation: metallicShine 4s infinite linear;
            border: none;
            color: white;
            padding: 12px 24px;
            font-weight: 400;
	text-decoration: none;
            border-radius: 8px;
            cursor: pointer;
	display: inline-block;
	margin-top: 10px;
            transition: transform 0.2s ease-in-out;
            
        }
        .button:hover {
            background-color: #333;
        }
@keyframes metallicShine {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
	.custom-link {
    text-decoration: none;
    color: #fff;
	padding: 15px;
  }

  .custom-link:visited {
    color: #fff;
  }

  .custom-link:hover {
	color: #b400ff; 
	padding: 10px 25px;
	background-color: rgba(235, 192, 255, 0.8);
	border-radius: 30px;
	transition: padding 0.8s ease-out, background-color 0.3s ease-out, color 0.3s ease-out;
  }

  .custom-link:active {
    color: #fff;
  }
.social-icons a {
    font-size: 20px;
    margin: 0 10px;
	padding: 10px;
    color: #fff;
    text-decoration: none;
  }

  .social-icons a:hover {
    color: #b400ff;
  }
        .hero-image img {
            max-width: 100%;
            height: auto;
        }
        .count-section {
            background-color: #222;
            color: #fff;
            padding: 50px 20px;
            display: flex;
            justify-content: space-around;
            text-align: center;
        }
        .count-box {
            max-width: 200px;
        }
        .count-box h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }
        .count-box p {
            font-size: 1.2rem;
            font-weight: 300;
            margin: 5px 0 0;
        }
        .services-section {
            padding: 80px 40px 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .options {
            display: flex;
            justify-content: space-around;
        }
        .option {
            text-align: center;
            max-width: 300px;
        }
        .option img {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }
        .option h3 {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .option p {
            font-weight: 300;
            font-size: 1rem;
        }
        .portfolio-section {
            padding: 20px 40px 100px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .portfolio-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .portfolio-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .portfolio-item img {
            max-width: 80%;
            height: auto;
                    }
	.client-logo img {
	max-width: 60%;
            height: auto;
	}
        .footer {
            font-size: 0.9rem;
            text-align: right;
            position: relative;
        }
        .footer a {
            text-decoration: none;
            color: #555;
            margin-right: 20px;
        }
	        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: white;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #aaa;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
	
        .container-blog { width: 60%; margin: 0px auto 20px; text-align: left;}
	.container-blog a { text-decoration: none; color: inherit; display: block;}
        .blog-header { background: #f9f9f9; text-align: center; font-size: 30px; }
        .blog-header h1 { margin: 24px;  background: linear-gradient(180deg, #ebc0ff 30%, #ce66ff 70%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .blog-post { display: flex; align-items: center; background: white; padding: 20px; border-radius: 10px; border: 1px solid #ebc0ff; margin: 20px 0px; transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out; } 
	.blog-post:hover { transform: scale(1.02); background-color: #fff; box-shadow: 5px 5px 10px #f6e6ff; }
	.blog-post:hover h2 { color: #b400ff; }
        .blog-post img { width: 150px; height: auto; margin-right: 20px; border-radius: 10px; object-fit: cover; float: left; }
        .blog-post-content { flex: 1; }
                 .read-more { font-weight: bold; cursor: pointer; }
        .read-more:hover { color: #b400ff; }
	.home-icon {margin: 0px auto 60px;}
        .container-innerblog { width: 60%; margin: 20px auto; padding: 20px; background: white; border-radius: 10px; border: 1px solid #ebc0ff; text-align: left;}
        .blog-title { font-size: 28px; color: #b400ff; text-align: center; }
        .blog-meta { text-align: center; color: #666; margin-bottom: 20px; }
        .blog-image { width: 100%; border-radius: 10px; margin-bottom: 20px; }
        .blog-content { font-size: 18px; color: #333; line-height: 1.6; }
        .author-section { display: flex; align-items: center; gap: 15px; margin-top: 30px; padding: 15px; background: #f1f1f1; border-radius: 10px; flex-wrap: wrap; }
        .author-photo { width: 60px; height: 60px; border-radius: 50%; }
        .author-info { flex-grow: 1; }
        .author-name { font-size: 18px; font-weight: bold; color: #333; margin: 18px 0px 0px; }
        .author-designation { font-size: 14px; color: #666; margin: 5px 0px 15px; }
        .linkedin-btn {color: #0077b5; font-size: 32px; }
        .linkedin-btn:hover { color: #005582; transition: color 0.8s ease-out;}
        .other-blogs { margin: 40px auto 60px; width: 60%; }
        .other-blogs h2 { text-align: center; color: #b400ff; }
        .blog-list { display: flex; justify-content: center; gap: 20px; margin: 0px 0px 10px}
        .blog-list a { text-decoration: none;  color: inherit; display: block;}
        .blog-item { background: white; padding: 10px; border-radius: 10px; text-align: center; border: 1px solid #ebc0ff; }
	.blog-item:hover { transform: scale(1.02); background-color: #fff; box-shadow: 5px 5px 10px #f6e6ff; transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;}
        .blog-item img { width: 100%; border-radius: 5px; }
	.blog-item p { font-weight: bold; border-radius: 5px; }
	.blog-item:hover p { color: #b400ff; }
	.pricing-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 70%;
	margin: auto;
        }
	.why-us-section { width: 60%; margin: auto; text-align: center; padding: 0px 0 40px; }
	    .why-choose-box { 
        background: #f9f9f9;
        padding: 20px;
        margin: 15px 0;
        text-align: left;
    }
	.why-choose-box h3 { margin: 80px auto 0px; color: #b400ff;}
	.why-choose-box p:hover strong { color: #b400ff; transition: color 1s ease-in-out}
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
		margin: 0 auto 60px;
        }
        .box {
            border: 0.5px solid #ccc;
            padding: 15px 15px 20px;
            width: 250px;
            text-align: center;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
	.box:hover { border: 0.5px solid #ebc0ff; background-color: #f8ebff; transform: scale(1.02);  box-shadow: 5px 5px 10px #f6e6ff; transition: box-shadow 0.8s ease-in-out, transform 0.8s ease-in-out, background-color 0.8s ease-in-out; }
	.box:hover .btn { background-color: #b400ff; color: white; transition: background-color 0.3s ease-in-out; }
	.btn:hover { background-color: #b400ff; color: white; transition: background-color 0.3s ease-in-out; }
        .rate {
            font-size: 22px;
            font-weight: bold;
            color: #b400ff;
        }
	        .rate sup {
            font-size: 14px;
        }
        .rate span {
            font-size: 14px;
            font-weight: normal;
        }
        .service {
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
        }
        .points {
            list-style: none;
            padding: 0;
            margin-top: 10px;
            text-align: center;
        }
        .points li {
            margin: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 15px;
            background-color: #ebc0ff;
            color: #b400ff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            text-align: center;
        }
        .switch-container { display: flex; align-items: center; gap: 10px; }
        .switch-btn { width: 60px; height: 30px; background: #57007f; border-radius: 15px; position: relative; cursor: pointer; transition: 0.3s; }
        .switch-circle { width: 24px; height: 24px; background: white; border-radius: 50%; position: absolute; top: 50%; transform: translateY(-50%); transition: 0.3s; left: 3px; }
        .switch-btn.active { background: #b400ff; }
        .switch-btn.active .switch-circle { left: calc(100% - 27px); }
        .currency-label { font-weight: bold; font-size: 14px; }


@media (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }
   {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
	.hero {
	display: flex;
        flex-direction: column; 
        padding: 50px 50px 0;
    }
    
    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        margin-bottom: 20px; /* Optional spacing */
    }
	.count-section {
    	padding: 20px;
	gap: 30px;
	}
	.options {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .option {
        max-width: 100%; 
        text-align: center;
    }
	.portfolio-item img {
	max-width: 100%;
	}
	.client-logo img {
	max-width: 100%;
	}
    .break-on-mobile {
        display: block;
    }
	.container-blog { width: 80%; margin: 0px auto 60px; text-align: left;}
	.blog-post { display: flex; flex-direction: column;}
	.blog-post img { display: flex; align-items: flex-start;}
	.container-innerblog { width: 80%; margin: 20px auto;}
	.other-blogs { width: 80%; }
	.blog-list { flex-direction: column;}
	.blog-item { width: 100%; }
	.why-us-section { width: 80%; }
	.pricing-header-container { width: 90%; }
    .container-privacy-policy {
        margin: 30px;
    }

}
