
::-webkit-scrollbar {
    width: 12px; 
    height: 12px;
}
::-webkit-scrollbar-track {
    color: #ffffff;
			background: linear-gradient(
    180deg,
    #8c52ff 0%,
    #7936ff 40%,
    #e9c5ff 50%,
    #9B7EBD 70%,
    #9B7EBD 100%
  );
  background-size: 100%;
  background-position: left;
}
::-webkit-scrollbar-thumb {
    background: #c079ff;
    border-radius: 10px;
}


		* {
			padding: 0;
			margin: 0;
			box-sizing: border-box;
			
		  }	
		html {
    scroll-behavior: smooth;
}

		  ::selection {
			color: #fff;
			background-color: #e3b5ff;
		}
		  body {
			  margin: 0;
			  background: #000000;
			  font-family: 'Inter', sans-serif;
              
		  }
		  .H1{
			line-height: 1.1;
			color: #ffffff;

				font-size: 70px;
				font-weight: 1000;
				background-image: linear-gradient(
    			180deg,
    			#f2e2ff 0%,
    			#f2e2ff 40%,
    			#f2e2ff 50%,
    			#f2e2ff 70%,
    			#000000 100%
  			);
			  color: transparent;
			  background-size: contain;
			  background-clip: text;
			  -webkit-background-clip: text;			  
		  }
		  h1, h2, h3 {
			font-family: 'Montserrat', sans-serif;
		}
		  @media (max-width:846px){
			.H1{
					font-size: 50px;
					font-weight: 1000;
			  }
		  }
		  @media (max-width:470px){
			.H1{
					font-size: 40px;
					font-weight: 1000;
			  }
		  }
	
/* NAVBAR */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
	position: fixed;
	width: 100%;
	z-index: 99999;
	top: 0;
	background: rgba(255, 255, 255, 0); /* Semi-transparent background */
  	backdrop-filter: blur(10px); /* Blurs the content behind */
  	-webkit-backdrop-filter: blur(10px); /* Safari support */
  	box-shadow: 0 0.5px 0.1px rgba(255, 255, 255, 0.251);

	animation: onloadnav 3s ease-in-out forwards;
  }
  
  @keyframes onloadnav {
	0% {
	  transform: translateY(-40%);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
  }
  
		  
		  .logo {
			font-size: 1.5rem;
			font-weight: bold;
			color: black;
			max-width: 150px;
		  }
		  @media (max-width:828px){
			.logo {
				max-width: 100px;
			  }
		  }
		  @media (max-width:480px){
			.logo {
				max-width: 90px;
			  }
		  }
		  
		  .nav-links {
			display: flex;
			list-style: none;
			margin-left: auto;
			margin-right: auto;
			border-radius: 35px;
			height: 40px;
			align-items: center;
			align-content: center;
		  }
		  
		  .nav-links li  {
			text-decoration: none;
			font-weight: bold;
			color: #ffffff;
			padding: 10px 20px;
			border-radius: 50px;
			
		  }
		  .nav-links a {
			text-decoration: none;
			font-size: 16px;
			font-weight: bold;
			color: rgb(255, 255, 255);
			padding: 21px 8px;
			border-radius: 50px;
			transition: transform 0.9s ease, background-color 0.9s ease;
		  }


/* Hover effect for navbar links */
.nav-links .hover-text {
	position: relative; /* Required for the ::after pseudo-element */
	color: #ffffff; /* Text color */
	text-decoration: none; /* Remove default underline */
	display: inline-block; /* Ensures transform works properly */
	transition: transform 0.3s ease; /* Smooth text movement */
  }
  
  .nav-links .hover-text:hover {
	transform: translateY(-3px); /* Move text up slightly */
  }
  
  /* Underline effect using ::after */
  .nav-links .hover-text::after {
	content: "";
	position: absolute;
	bottom: 10px; /* Position underline below text */
	left: 0;
	width: 0; /* Start with no underline */
	height: 2px; /* Thickness of the underline */
	background: #ffffff; /* Underline color */
	transition: width 0.3s ease; /* Smooth underline expansion */
  }
  @media (max-width: 768px) {
	.nav-links .hover-text::after {
		bottom: -3px;
	}
  }
  .nav-links .hover-text:hover::after {
	width: 100%; /* Expand underline on hover */
  }
  
		  
		  .menu-toggle {
			display: none;
			flex-direction: column;
			cursor: pointer;
			gap: 5px;
		  }
		  
		  .menu-toggle span {
			width: 25px;
			height: 3px;
			background-color: rgb(255, 255, 255);
		  }
		  
		  @media (max-width: 768px) {
			.nav-links {
			  display: none;
			  height: auto;
			  flex-direction: column;
			  width: 100%;
			  position: absolute;
			  top: 45px;
			  left: 0;
			  border-radius: 0px;
			  background-color: rgb(0, 0, 0);
			  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
			  padding: 10px 0;
			}
			.navbar{
			  background-color: rgb(0, 0, 0);
			  height: 55px;
              padding: 35px 20px;
			}
		  
			.nav-links.show {
			  display: flex;
              box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
              border-radius: 15px;
			}
		  
			.menu-toggle {
			  display: flex;
			}
		  
		  .nav-links a {
			padding: 10px 20px;
		  }
		  }
/*HOME TAG*/
    .badge-container {
  width: 100%;
  display: flex;
  animation: onloadp 4s ease-in-out forwards;
  
}
.top-badge{
    margin-top: 140px;
 margin-bottom: 20px;
   justify-content: center; /* Horizontal */
  align-items: center;     /* Vertical */ 
}
    .badge {
      display: flex;
      align-items: center;
      background: linear-gradient(145deg, #282828, #171717);
      padding: 8px 20px 8px 8px;
      border-radius: 999px;
      box-shadow: 1px rgb(255, 255, 255);
      color: white;
    }

    .year {
      background: #7a43ff;
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: bold;
      font-size: 14px;
      margin-right: 12px;
      color: #fff;
      box-shadow: 0 0 10px rgba(122, 67, 255, 0.6);
    }

    .text {
      font-size: 16px;
      font-weight: 500;
      color: #f0f0f0;
      white-space: nowrap;
    }

/* HOME TEXT */
		  	.HOME-H1{
				color: #ffffff;
				
				font-size: 80px;
				font-weight: 1000;
				margin-top: 0px;
				background-image: linear-gradient(
    			180deg,
    			#f2e2ff 0%,
    			#f2e2ff 40%,
    			#f2e2ff 50%,
    			#f8f0ff 70%,
    			#000000 100%
  			);
			  color: transparent;
			  background-size: contain;
			  background-clip: text;
			  -webkit-background-clip: text;
			  
			  animation: onloadh1 2s ease-in-out forwards;
			}
			@keyframes onloadh1 {
				0% {
				  transform: translateY(-60%);
				  opacity: 0.3;
				}
				100% {
				  transform: translateY(0);
				  opacity: 0.8;
				}
			  }
			.home-p{
				width: 80%;
				margin-top: 20px;
				font-size: 20px;
				font-weight: 600;
				color: #f2e2ff;
				animation: onloadp 3s ease-in-out forwards;
			}
			@keyframes onloadp {
				0% { translate: 0 0%; opacity: 0; }
				100% { translate: 0 0%; opacity: 2; }
			}
			@media (min-width:1185px){
				.home-p{
					margin-top: 35px;
				}
			}
			@media (max-width:890px){
				.HOME-H1{
					font-size: 70px;
					font-weight: 1000;
					
				}
                .badge-co {
                    margin-top: 180px;
                }
			}
			@media (max-width:768px){
				.HOME-H1{
					font-size: 65px;
					font-weight: 1000;

				}
				.home-p{
					font-size: 15px;
				}
                .badge-co {
                    margin-top: 160px;
                }
			}
			@media (max-width:622px){
				.HOME-H1{
					font-size: 57px;
					font-weight: 1000;

				}
                .badge-co {
                    margin-top: 145px;
                }
			}
			@media (max-width:481px){
				.HOME-H1{
					font-size: 48px;
					font-weight: 1000;
					
				}
				.home-p{
					font-size: 15px;
				}
                .badge-co {
                    margin-top: 160px;
                }
			}
			@media (max-width:431px){
				.HOME-H1{
					font-size: 44px;
					font-weight: 1000;

				}
                .badge-co {
                    margin-top: 140px;
                }
			}
/* HOME BUTTON */
		  .button-container {
			display: flex;
			gap: 40px;
			justify-content: center;
			align-items: center;
			margin-top: 50px;
			width: 100%;
			height: auto;
			animation: onloadbtn 4s ease-in-out forwards;
		  }
		  @keyframes onloadbtn {
			0% { translate: 0 0%; opacity: 0; }
			100% { translate: 0 0%; opacity: 2; }
		}
		  
		  .btn {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			font-size: 1.2rem;
			font-weight: bold;
			border-radius: 8px;
			border: none;
			padding: 10px 30px;
			cursor: pointer;
			transition: transform 0.2s ease, background-color 0.2s ease;
		  }
		  @media (max-width:600px) {
			.btn {
				font-size: 1.1rem;
			  }
			.button-container {
				gap: 20px;
			  }
		  }
		  @media (max-width:400px) {
			.btn {
				font-size: 0.9rem;
			  }
			.button-container {
				gap: 10px;
			  }
		  }
		  @media (min-width:624px) {
			.btn {
				width: 250px;
				height: 60px;
			  }
		  }
		  
		  
		  
		  .black-btn {
			color: #000000;
			background: linear-gradient(
    90deg,
	#ffffff 0%,
    #ffffff 40%,
    #ffffff 50%,
    #d7b4ff 70%,
    #9B7EBD 100%
  );
  background-size: 200%;
  background-position: left;
  transition: all 0.3s ease-in;
		  }
		  
.white-btn {
  color: #fffefe;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent background */
  backdrop-filter: blur(10px); /* applies blur effect */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  background-size: 200%;
  background-position: left;
  transition: all 0.3s ease-in;
  border: 0.5px solid rgba(255, 255, 255, 0.148); /* optional: makes the edge clearer */
  padding: 12px 24px; /* optional for better appearance */
  border-radius: 8px; /* optional: gives rounded corners */
}

/* Ensure .btn:hover has the same background so it transitions smoothly */
.btn:hover {
  background-position: right;
}



/* HOME-CIRCLE */
		  .bg {
			  width: 100%; height: 650px;
			  margin-left: auto;
			  margin-right: auto;
			  margin-top: 100px;
		  }
		  .bg > div {
			  
			  opacity: 0.6;
		  }
		  .bg > div {
			  margin-left: auto;
			  margin-right: auto;
			  width: 90%;
			  height: 100%;
			  border-top-left-radius: 100em;
			  border-top-right-radius: 100em;
			  box-shadow: 
			  inset 0 0 4em 3em #a883bf,
			  inset 0 0 2em 0.4em #e9c5ff,
			  0 0 0.1em 0.1em #e9c5ff,
			  0 0 1em 0.4em #8c52ff;
			  animation: onloadbgt 2s ease-in-out forwards;
		  }
		  
		  @keyframes onloadbgt {
			0% {
			  transform: translateY(30%);
			  opacity: 0.3;
			}
			100% {
			  transform: translateY(0);
			  opacity: 0.8;
			}
		  }
		@media (max-width:1018px){
			.bg {
				height: 580px;
				margin-top: 100px;
			}
		}
		@media (max-width:892px){
			.bg {
				height: 550px;
				margin-top: 90px;
			}
		}
		@media (max-width:768px){
			.bg {
				height: 520px;
				margin-top: 90px;
			}
		}
		@media (max-width:600px){
			.bg {
				height: 500px;
				margin-top: 90px;
			}
		}
		@media (max-width:502px){
			.bg {
				height: 500px;
				margin-top: 75px;
			}
		}
		@media (max-width:400px){
			.bg {
				height: 475px;
				margin-top: 65px;
			}
		}

/* HOME SLIDER */
		  .bg-cover{
			display: flex;
			justify-content: center;
			position: absolute;
			margin-top: -280px;
			background-color: #000000;
				  position:absolute;
				  width: 100%;
				  display: block;
				  box-shadow: 
							  0 -80px 70px 70px #000000;
		  }

@media (max-width: 768px) {
    	.bg-cover{
			margin-top: -280px;
            z-index: 99999;
		}
}
        .slider-container {
            width: 100%;
            height: 400px; /* Fixed height - won't change with screen size */
            overflow: hidden;
            position: relative;
            background: transparent;
            padding: 0px;
        }

        .slider-track {
            display: flex;
            height: 100%;
            gap: 40px;
            animation: infiniteSlide 18s linear infinite;
        }

        .slide {
            min-width: calc(100% - 30px);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            flex-shrink: 0;
            border: 0.5px solid rgba(207, 201, 255, 0.601);
        }

        .slide:nth-child(1) {
            background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */ 
        }

        .slide:nth-child(2) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }

        .slide:nth-child(3) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }

        .slide:nth-child(4) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }

        .slide:nth-child(5) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }
                .slide:nth-child(6) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }
                .slide:nth-child(7) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }
                .slide:nth-child(8) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }

        /* Duplicate slides for seamless loop */
        .slide:nth-child(9) {
                        background-color: #000000;
            background-image: url(http://www.transparenttextures.com/patterns/inflicted.png);
        }

.slide-content {
    text-align: center;
    color: white;
    padding: 40px;
    width: 90%;
    max-width: 1000px; /* optional: to prevent it from becoming too wide on very large screens */
    margin: 0 auto;
}
@media (min-width: 769px) {
    .slide-content {
        width: 90%;
        max-width: 1000px;
    }
}


        .slide-content h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .slide-content p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            opacity: 0.95;
        }

        .slide-number {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .pause-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            color: white;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .pause-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .slider-container.paused .slider-track {
            animation-play-state: paused;
        }

        .decorative-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .decorative-elements::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .decorative-elements::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes infiniteSlide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-500% - 150px)); /* Adjust for gaps (5 slides * 30px gap) */
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive adjustments - height stays fixed */
        @media (max-width: 768px) {
            .slider-container {
                width: 95%;
                height: 400px; /* Same fixed height */
                padding: 10px;
            }
            
            .slider-track {
                gap: 20px;
            }
            
            .slide {
                min-width: calc(100% - 20px);
            }
            
            .slide-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                height: 400px; /* Same fixed height */
                padding: 8px;
            }
            
            .slider-track {
                gap: 15px;
            }
            
            .slide {
                min-width: calc(100% - 15px);
                border-radius: 10px;
            }
            
            .slide-content {
                padding: 15px;
            }
        }

.container-service {
    max-width: 98%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* reduced from 350px */
    gap: 24px;
    padding: 0 10px;
    margin-top: 40px;
}


        .feature-card {
            border-radius: 16px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            background: rgb(24, 24, 24); /* Semi-transparent background */
            max-width: 100%;
        }

/* This creates the 60% width red border on top */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(92, 89, 255), transparent);
  transform: translateX(-50%);
}

/* Bottom sharp line */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(92, 89, 255), transparent);
  transform: translateX(-50%);
  
}




        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .icon-circle {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #5d60ff, #8753ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
            margin-left: auto;
            margin-right: auto;
        }

        .icon-circle svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .card-title {
            color: white;
            font-size: 28px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .card-description {
            color: #888;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 32px;
            margin-top: 5px;
        }

        .card-visual {
            background: #0f0f1a;
            border: 1px solid #2a2a3a;
            border-radius: 12px;
            padding: 0px;
            width: 100%;
            height: auto;
            position: relative;
            overflow: hidden;
        }
        .card-visual img{
            width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .feature-card hr{
            border-radius: 50%;
            opacity: 0.5;
        }


/*COMPARISION SECTION*/

.comparison-section {
  padding: 60px 20px;
  margin-top: 40px;
}

.label {
  display: inline-block;
  background: linear-gradient(to right, #8b5cf6, #6d28d9);
  color: white;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 999px;
  margin-bottom: 20px;

}

h1 {
  font-size: 38px;
  font-weight: 600;
  margin: 10px 0;
}

.subtext {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 40px;
}

.comparison-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #6d28d9;
  width: 90%;
  border-radius: 24px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid whitesmoke;
  background-color: #000000;
  background-image: url("https://www.transparenttextures.com/patterns/dark-denim.png");
}

.card {
  background: #111;
  border-radius: 24px;
  padding: 30px;
  width: 300px;
  
  text-align: left;
}

.card.left {
  background: transparent;
}

.card.right {
background: transparent;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  font-size: 15px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  color: whitesmoke;
}

.icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 12px;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
}
.red svg{
        height: 30px;
    width: 30px;
}


.violet svg{
    height: 30px;
    width: 30px;
}

/* PROJECT SHOWCASE*/
.project-h1{
    margin-top: 120px;
    margin-bottom: 40px;
}
        .container-project {
            width: 100%;
            padding: 10px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: start;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 20px;
            backdrop-filter: blur(10px);
            border: 0.5px solid rgba(255, 255, 255, 0.596);
            transition: all 0.3s ease;
            cursor: pointer;
            background-color: #000000;
background-image: url(http://www.transparenttextures.com/patterns/axiom-pattern.png);

        }

        .service-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: transparent;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .service-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
        }

        .service-description {
            color: #a0a0a0;
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .service-preview {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 5px;
            position: relative;
            overflow: hidden;
            height: auto;
        }

        /* Product Design - Sales Dashboard */
        .dashboard {
            width: 100%;
            height: 100%;
            position: relative;
        }


        @media (max-width: 768px) {
            .container-project {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .made-in-framer {
                bottom: 20px;
                right: 20px;
                font-size: 12px;
                padding: 10px 16px;
            }
        }
        .dashboard img{
            width: 100%;
            height: auto;
            border-radius: 15px ;
        }



/* TAB BUTTONS */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid rgba(255, 255, 255, 0.4);
    color: #a0a0a0;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

/* TAB CONTENT FADE ANIMATION */
.container-project {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}







        		  .ok{
			margin-top: 400px;
		  }
		  @media (max-width:846px){
			.ok{
				margin-top: 360px;
			}
		  }
		  @media (max-width:624px) and (min-width:420px){
			.ok{
				margin-top: 285px;
			}
			
		  }
		  @media (min-width:846px) and (max-width:1235px){
			.ok{
				margin-top: 400px;
			}	
		  }
		  @media (max-width:470px){
			.ok{
				margin-top: 260px;
			}
		  }
		  @media (max-width:333px){
			.ok{
				margin-top: 245px;
			}
		  }
      @media (min-width:333px) and (max-width:378px){
			.ok{
				margin-top: 250px;
			}	
		  }
      @media (min-width:624px) and (max-width:768px){
			.ok{
				margin-top: 350px;
			}	
		  }



/*LAUNCH SITE*/
    .container-launchsite {
      position: relative;
      display: flex;
      flex-direction: row;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border-radius: 25px;
      border: 0.5px solid rgba(245, 245, 245, 0.523);
      overflow: hidden;
      width: 95%;
      max-width: 1200px;
      flex-wrap: wrap;
      margin-left: auto;
      margin-right: auto;
    }

    .right-panel::before {
      content: "";
      position: absolute;
      top: -150px;
      right: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(99, 68, 255, 0.914) 20%, transparent 80%);
      filter: blur(120px);
      z-index: 0;
    }

    .left-panel, .right-panel {
      flex: 1 1 400px;
      padding: 40px;
      position: relative;
      z-index: 1;
    }

    .left-panel {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .main-image {
      width: 100%;
      
      border-radius: 20px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }



    .right-panel h1 {
      font-size: 2.5em;
      margin: 20px 0 10px;
      color: whitesmoke;
    }

    .right-panel p {
      color: #ccc;
      margin-bottom: 20px;
    }
    .right-panel hr{
        margin-bottom: 10px;
        width: 90%;
        border-radius: 50%;
    }

    .cta-button {
      display: inline-block;
      padding: 12px 20px;
      background: #7f4dff;
      color: white;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      margin-right: 20px;
    }

    .stars {
      margin-top: 10px;
      color: gold;
    }

    .rating {
      font-size: 0.9em;
      color: #aaa;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding: 20px 0;
      }

      .left-panel, .right-panel {
        padding: 20px;
      }

      .right-panel h1 {
        font-size: 1.8em;
      }
    }


   
    /*TESTIMONIALS*/

    /* --- Container --- */
    .testimonials {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        text-align: center;
        overflow: hidden;
      }
  .service-h1{
    margin-top: 50px;
    margin-bottom: 40px;
  }
      /* --- Swiper Setup --- */
      .swiper-container {
        padding-bottom: 50px;
      }
      .swiper-wrapper {
        align-items: center;
      }
      .swiper-slide {
        background: transparent;
        padding: 0 20px;
        transition: transform 0.3s ease, filter 0.3s ease;
        /* blur non-active slides by default */
        filter: blur(2px);
      }
      /* lift & clear the active slide */
      .swiper-slide-active {
        filter: none;
        transform: translateY(-20px);
        z-index: 5;
      }
  
      /* --- Testimonial Card --- */
      .testimonial-text {
        text-align: left;
        line-height: 1.6;
        font-size: 1.125rem;
        color: rgb(185, 185, 185);
      }
      .testimonial-footer {
        margin-bottom: 30px;
        text-align: left;
        display: flex;
        flex-direction: row;
        gap: 10px;
      }
      .testimonial-footer .name {
        font-size: 0.875rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: whitesmoke;
      }
      .testimonial-footer .url {
        display: inline-block;
        margin-top: 8px;
        font-size: 1rem;
        color: #0ff;
        text-decoration: none;
        letter-spacing: 1px;
      }
      .testimonial-footer .url::after {
        content: ' →';
      }
      .testimonial-footer img{
        width: 30px;
        height: 30px;
        border-radius: 50%;
      }
      .testimonials {
        transform: translateY(100px);
        opacity: 0;
        transition: all 1s ease-out;
        }
        
        .testimonials.show {
        transform: translateY(0);
        opacity: 1;
        }
        .hidden {
        visibility: hidden;
        }
        
        .testimonials.show.hidden {
        visibility: visible;
        }


    /* 	FAQ CONTANER */


		  .faq-container {
			width: 90%;
			margin: 70px auto;
			padding: 20px;
			background: #000000;
			border-radius: 8px;
		  margin-top: 50px;
		  }
		  
		  .faq-container h1 {
			text-align: center;
			margin-bottom: 40px;
		  }
		  
		  .faq-item {
			border-bottom: 1px solid #c59fff;
			padding: 15px 0;
		  }
		  
		  .question {
			display: flex;
			justify-content: space-between;
			align-items: center;
			cursor: pointer;
		  }
		  
		  .question h3 {
			margin: 0;
			font-size: 24px;
			color: #c59fff;
			line-height: 1.2;
		  }
		  
		  .toggle-btn {
			font-size: 20px;
			font-weight: bold;
			color: #c59fff;
			transition: transform 0.3s ease, color 0.3s ease;
		  }
		  
		  .answer {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.3s ease, opacity 0.3s ease;
			opacity: 0;
			background-color: #000000;
			border-radius: 10px;
			padding: 0 0 20px 10px;
		  }
		  
		  .answer p {
			margin: 0;
			font-weight: 600;
			color: #c59fff;
			line-height: 1.5;
			margin-top: 20px;
			font-size: 18px;
		  }
		  
		  .faq-item.active .answer {
			max-height: 200px; /* Adjust based on the content height */
			opacity: 1;
		  }
		  
		  .faq-item.active .toggle-btn {
			transform: rotate(45deg);
			color: #c59fff;
		  }
		  @media (max-width: 768px) {  /* For mobile */
			.question h3 {
				font-size: 18px;
			}
			.answer p{
				font-size: 14px;
			}
		  }
          .faq-badge{
               justify-content: center; /* Horizontal */
  align-items: center;  
          }

    /*FOOTER*/

        .hero {
      position: relative;
      width: 96%;
      max-width: 1300px;
      background: linear-gradient(to bottom, #4b1bd6, #0a0a0a);
      border-radius: 30px;
      overflow: hidden;
      padding: 100px 40px 80px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 300px;
      background: radial-gradient(circle at center, rgba(123, 97, 255, 0.5), transparent 70%);
      filter: blur(80px);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }



    h1 {
      font-size: 3em;
      font-weight: 600;
    }

    h1 span {
      color: #aaa;
      display: block;
      font-weight: 400;
    }

    p {
      color: #ccc;
      margin: 20px 0 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      padding: 15px 30px;
      background: #7f4dff;
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.5);
    }
    .social-links {
      margin-top: 40px;
      display: flex;
      gap: 30px;
      justify-content: center;
      align-items: center;
      font-size: 24px;
    }

    .social-links a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: #fff;
    }
    @media (max-width: 768px) {
      h1 {
        font-size: 2em;
      }

      .hero {
        padding: 60px 20px;
      }
    }




    /*offer card*/


        .offer-card {
      width: 95%;

      padding: 40px 30px;
      text-align: center;
      border-radius: 20px;
      background: rgba(10, 5, 25, 0.6);
      border: 1px solid rgba(123, 47, 247, 0.7);
      
          margin-left: auto;
          margin-right: auto;
    }
    .offer-card h1{
      font-size: 2.2rem;
      font-weight: 900;
      color: whitesmoke;
    }


    .offer-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-bottom: 40px;
    }

    .offer-feature {
      text-align: center;
    }

    .offer-icon {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: radial-gradient(circle, #7b2ff7, #5302b8);
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px;
      box-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
      color: white;
      font-size: 28px;
    }

    .offer-feature h2 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: 600;
      color: whitesmoke;
    }

    .offer-feature p {
      font-size: 0.95rem;
      color: #ddd;
      line-height: 1.5;
    }

    .offer-btn {
      display: inline-block;
      padding: 15px 35px;
      background: linear-gradient(90deg, #7b2ff7, #5302b8);
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      color: white;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
      transition: all 0.3s ease;
    }

    .offer-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 35px rgba(138, 43, 226, 1);
    }
    .offer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Responsive fix for small screens */
@media (max-width: 768px) {
  .offer-features {
    grid-template-columns: 1fr;
  }
}






        .wrapper {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* Stats Grid */
        .stats-container {
            max-width: 1400px;
            margin: 0 auto 120px;
            padding: 0px;
        }

        .stats-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
           
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-value {
            font-size: 72px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 8px;
            display: block;
            position: relative;
            text-shadow: 0 0 40px rgba(120, 119, 198, 0.5);
        }

        .stat-label {
            font-size: 12px;
            font-weight: 500;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #7877C6, transparent);
        }

        /* Brands Ticker */
        .brands-section {
            width: 100%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding: 30px 0;
        }

        .ticker-wrap::before,
        .ticker-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .ticker-wrap::before {
            left: 0;
            background: linear-gradient(90deg, #000 0%, transparent 100%);
        }

        .ticker-wrap::after {
            right: 0;
            background: linear-gradient(270deg, #000 0%, transparent 100%);
        }

        .ticker {
            display: flex;
            animation: scroll 40s linear infinite;
            width: fit-content;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0 60px;
            white-space: nowrap;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .ticker-item:hover {
            opacity: 1;
        }

        .brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(120, 119, 198, 0.3);
    position: relative;
}

.brand-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #7877C6, #FF3D71);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.ticker-item:hover .brand-icon::after {
    opacity: 0.6;
}
        .brand-name {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .ticker-wrap:hover .ticker {
            animation-play-state: paused;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                gap: 60px;
            }

            .stat-value {
                font-size: 64px;
            }
        }
        @media (max-width: 764px) {
                  .stat-value {
                      font-size: 50px ;
                      font-weight: 900;
        }
                .stats-grid {
            gap: 20px;

        }
        }
        @media (max-width: 640px) {
            .stats-grid {
                gap: 40px 30px;
                max-width: 400px;
                margin: 0 auto;
            }


            .stat-value {
                font-size: 40px;
            }

            .stat-label {
                font-size: 10px;
            }

            .ticker-item {
                padding: 0 40px;
            }

            .brand-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .brand-name {
                font-size: 16px;
            }
        }


        .ticker-reverse {
    animation: scroll-reverse 40s linear infinite;
}

        @media (max-width: 460px) {
                  .stat-value {
                      font-size: 25px ;
        }
                .stats-grid {
            gap: 20px;

        }
        }

                @media (max-width: 360px) {
                  .stat-value {
                      font-size: 20px ;
        }
                .stats-grid {
            gap: 20px;

        }
        }


@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.ticker-wrap:hover .ticker-reverse {
    animation-play-state: paused;
}


service-icon