* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}


body {
	height: 100%;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	overflow-x: hidden;
}

/* background animation  */

/* .animated-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
	background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 35%, #0f0f0f 100%), linear-gradient(45deg, #000 25%, transparent 25%), linear-gradient(-45deg, #000 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #000 75%), linear-gradient(-45deg, transparent 75%, #000 75%);
	background-size: 100% 100%, 30px 30px, 30px 30px, 30px 30px, 30px 30px;
	background-position: 0 0, 0 0, 0 15px, 15px -15px, -15px 0
} */




.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use viewport height instead of 100% */
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 35%, #0f0f0f 100%), 
                linear-gradient(45deg, #000 25%, transparent 25%), 
                linear-gradient(-45deg, #000 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #000 75%), 
                linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 100% 100%, 30px 30px, 30px 30px, 30px 30px, 30px 30px;
    background-position: 0 0, 0 0, 0 15px, 15px -15px, -15px 0;
    -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS */
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden; /* Helps with rendering */
}
 
.floating-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(59, 130, 246, .15);
	animation: float3d 8s ease-in-out infinite;
	box-shadow: 0 0 20px rgba(59, 130, 246, .3), inset 0 0 20px rgba(255, 255, 255, .1)
}

.floating-shape:nth-child(1) {
	width: 120px;
	height: 120px;
	top: 15%;
	left: 10%;
	animation-delay: 0s;
	animation-duration: 12s;
	background: radial-gradient(circle at 30% 30%, rgba(147, 51, 234, .4), rgba(59, 130, 246, .2))
}

.floating-shape:nth-child(2) {
	width: 80px;
	height: 80px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
	animation-duration: 10s;
	background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, .4), rgba(59, 130, 246, .2))
}

.floating-shape:nth-child(3) {
	width: 150px;
	height: 150px;
	top: 35%;
	left: 70%;
	animation-delay: 4s;
	animation-duration: 15s;
	background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, .4), rgba(239, 68, 68, .2))
}

.floating-shape:nth-child(4) {
	width: 90px;
	height: 90px;
	bottom: 25%;
	left: 25%;
	animation-delay: 1s;
	animation-duration: 11s;
	background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, .4), rgba(59, 130, 246, .2))
}

.floating-shape:nth-child(5) {
	width: 110px;
	height: 110px;
	top: 5%;
	right: 35%;
	animation-delay: 3s;
	animation-duration: 13s;
	background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, .4), rgba(59, 130, 246, .2))
}

.particle {
	position: absolute;
	border-radius: 50%;
	animation: twinkleSpace 4s ease-in-out infinite
}

.particle:nth-child(6) {
	width: 3px;
	height: 3px;
	background: rgba(255, 255, 255, .9);
	top: 15%;
	left: 25%;
	animation-delay: 0s;
	box-shadow: 0 0 10px rgba(255, 255, 255, .8)
}

.particle:nth-child(7) {
	width: 2px;
	height: 2px;
	background: rgba(147, 51, 234, .9);
	top: 70%;
	left: 80%;
	animation-delay: 1s;
	box-shadow: 0 0 8px rgba(147, 51, 234, .6)
}

.particle:nth-child(8) {
	width: 4px;
	height: 4px;
	background: rgba(59, 130, 246, .9);
	top: 30%;
	right: 10%;
	animation-delay: 2s;
	box-shadow: 0 0 12px rgba(59, 130, 246, .7)
}

.particle:nth-child(9) {
	width: 2px;
	height: 2px;
	background: rgba(16, 185, 129, .9);
	bottom: 40%;
	left: 60%;
	animation-delay: .5s;
	box-shadow: 0 0 8px rgba(16, 185, 129, .6)
}

.particle:nth-child(10) {
	width: 3px;
	height: 3px;
	background: rgba(245, 158, 11, .9);
	top: 80%;
	left: 40%;
	animation-delay: 1.5s;
	box-shadow: 0 0 10px rgba(245, 158, 11, .7)
}



@keyframes float3d {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotateY(0) rotateX(0)
	}

	25% {
		transform: translateY(-30px) translateX(10px) rotateY(90deg) rotateX(15deg)
	}

	50% {
		transform: translateY(-15px) translateX(-20px) rotateY(180deg) rotateX(-10deg)
	}

	75% {
		transform: translateY(-40px) translateX(15px) rotateY(270deg) rotateX(20deg)
	}
}

@keyframes twinkleSpace {

	0%,
	100% {
		opacity: .3;
		transform: scale(1) rotate(0)
	}

	25% {
		opacity: 1;
		transform: scale(1.5) rotate(90deg)
	}

	50% {
		opacity: .6;
		transform: scale(.8) rotate(180deg)
	}

	75% {
		opacity: 1;
		transform: scale(1.3) rotate(270deg)
	}
}

@keyframes cosmicWave {

	0%,
	100% {
		transform: translateX(-50%) rotate(0) scaleY(1)
	}

	25% {
		transform: translateX(-50%) rotate(.5deg) scaleY(1.1)
	}

	50% {
		transform: translateX(-50%) rotate(-.5deg) scaleY(.9)
	}

	75% {
		transform: translateX(-50%) rotate(1deg) scaleY(1.05)
	}
}

a {
	text-decoration: none
}

.hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	text-align: left;
	overflow: hidden;
}


.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.hero .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 2
}

.hero-content {
	margin: 30px;
	position: relative;
	z-index: 3;
	color: #fff;
	max-width: 900px;
	padding: 0 20px
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px
}

.gradient-text {
	background: linear-gradient(20deg, #ff6b9d, #00d4ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent
}

.hero p {
	font-size: 19px;
	margin-bottom: 30px
}

.btn.outlined {
	border: 2px solid #fff;
	padding: 10px 25px;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	transition: .3s
}

.btn.outlined:hover {
	background: #fff;
	color: #000
}

@media (max-width:768px) {
	.hero-content {
		padding: 60px 15px;
		text-align: left
	}

	.hero-content h1 {
		font-size: 2rem
	}

	.hero-content p {
		font-size: 1rem
	}

	.btn.outlined {
		padding: 10px 20px;
		font-size: .95rem
	}
}

.glass-line {
	width: 150px;
	height: 4px;
	margin: 25px auto;
	border-radius: 8px;
	background: rgba(255, 255, 255, .534);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 0 10px rgba(255, 255, 255, .2)
}

.services {
  padding: 60px 20px;
  text-align: center;
  z-index: -1000;
}

.services h2 {
  font-size: clamp(28px, 4vw, 36px); /* Responsive font size */
  margin-bottom: 10px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 20px; /* Add padding for small screens */
}

.glass-line {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .cards {
    gap: 20px;
  }
}
.card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 18px;
    padding: 30px 20px;
    width: 100%;
    max-width: 350px;
    transform-origin: center;
    color: whitesmoke;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-clip: padding-box;
	border: 1px solid rgba(255, 255, 255, .18);
}

@media (max-width: 768px) {
  .card {
    max-width: 100%;
    min-height: 250px;
    padding: 25px 15px;
  }
}

.card:hover {
  transform: scale(1.05); /* Reduced scale for better mobile behavior */
  box-shadow: 0 25px 45px linear-gradient(to right, #00c6ff, #0072ff);
}

.card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 15px;
  /* color: whitesmoke; */
  /* background: linear-gradient(90deg,  #0072ff, #b8b8b8); */
 background: linear-gradient(90deg, #6366f1,#38bdf8);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

.card p {
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bttn {
  position: relative;
  display: inline-block;
  padding: 10px 24px;
  margin-top: 15px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  width: auto;
  min-width: 120px;
}

@media (max-width: 480px) {
  .bttn {
    padding: 8px 20px;
    margin-top: 10px;
  }
}

.bttn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.bttn .hoverEffect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bttn .hoverEffect div {
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.6s ease-in-out;
}

.bttn:hover .hoverEffect div {
  left: 100%;
}

.bttn span,
.bttn::after {
  position: relative;
  z-index: 1;
}

/* project section  */

.portfolio-section {
	padding: 20px 20px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative
}

.section-header {
	text-align: center;
	margin-bottom: 30px;
	animation: fadeInUp 1s ease-out
}

.psection-title {
	font-size: 3.5rem;
	font-weight: 700;
	background: linear-gradient(90deg, #38bdf8, #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	position: relative
}

.psection-subtitle {
	font-size: 1.2rem;
	color: #b0b0b0;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6
}

.filter-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	flex-wrap: wrap;
	animation: slideInUp 1s ease-out .3s both
}

.filter-tab {
	padding: 12px 30px;
	background: rgba(156, 39, 176, .1);
	border: 2px solid rgba(156, 39, 176, .3);
	border-radius: 30px;
	color: #fff;
	cursor: pointer;
	transition: all .3s ease;
	font-weight: 500;
	position: relative;
	overflow: hidden
}

.filter-tab:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(20deg, #38bdf8, #6366f1);
	transition: left .3s ease;
	z-index: -1
}

.filter-tab:hover:before,
.filter-tab.active:before {
	left: 0
}

.filter-tab.active {
	border-color: #6366f1;
	box-shadow: 0 0 5px #38bdf8
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	animation: fadeIn 1s ease-out .6s both
}

.project-card {
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .1);
	transition: all .4s ease;
	position: relative;
	opacity: 1;
	transform: translateY(0)
}

.project-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px #6366f1
}

.project-card.hidden {
	opacity: 0;
	transform: translateY(20px) scale(.9);
	pointer-events: none
}

.project-image {
	position: relative;
	height: 250px;
	overflow: hidden
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease
}

.project-card:hover .project-image img {
	transform: scale(1.1)
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg rgba(0, 0, 0, .4), #6366f1);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	transition: opacity .3s ease
}

.project-card:hover .project-overlay {
	opacity: 1
}

.overlay-btn {
	padding: 10px 20px;
	background: rgba(255, 255, 255, .2);
	border: 2px solid #fff;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all .3s ease;
	backdrop-filter: blur(10px)
}

.overlay-btn:hover {
	background: #fff;
	color: rgba(0, 0, 0, .575);
	transform: scale(1.1)
}

.project-content {
	padding: 25px
}

.project-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #fff
}

.project-description {
	color: #b0b0b0;
	margin-bottom: 20px;
	line-height: 1.6
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px
}

.tech-tag {
	padding: 6px 15px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(0, 128, 255, .25));
	color: whitesmoke;
	border-radius: 20px;
	font-size: .8rem;
	font-weight: 500;
	border: 1px solid rgba(156, 39, 176, .5)
}

.animate-in {
	animation: fadeInUp .6s ease-out forwards
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) rotate(0)
	}

	50% {
		transform: translateY(-20px) rotate(180deg)
	}
}

@media (max-width:768px) {
	.psection-title {
		font-size: 2.5rem
	}

	.projects-grid {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.project-card {
		margin: 0 10px
	}

	.filter-tabs {
		gap: 10px
	}

	.filter-tab {
		padding: 10px 20px;
		font-size: .9rem
	}
}




/* why choose us  */

.codexae-feature-card {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    background-clip: padding-box;
    border-left: 4px solid #0072ff;
    padding: 30px;
    margin: 20px auto;
    background: rgba(15, 23, 42, 0.6);
    max-width: 1000px;
    margin-top: 100px;
    margin-bottom: 50px;
}

.codexae-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.2);
}

.codexae-feature-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.codexae-feature-card p {
    /* text-align: center; */
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.codexae-list {
    padding-left: 20px;
    list-style-type: none; /* Remove default list styling */
}

.codexae-list li {
    margin-bottom: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    padding-left: 1em; /* Adjust as needed */
}

.codexae-list li::marker {
    color: #0072ff;
    font-size: 1.5rem;
    content: "•";
}

.codexae-list li strong {
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .codexae-feature-card {
        padding: 20px;
        margin: 20px;
    }
    
    .codexae-feature-title {
        font-size: 1.5rem;
    }
    
    .codexae-list li {
        padding-left: 1em;
    }
}





/* pricing section  */

.pricing-section {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px
}

.pricing-card {
	position: relative;
	width: 280px;
	padding: 0px 20px 40px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .1);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .18);
	overflow: hidden;
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .25)
}

.section-headingg {
	text-align: center;
	background: linear-gradient(90deg, #38bdf8, #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 50px;
	margin-top: 50px;
	position: relative
}

.section-headingg::after {
	content: "";
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #00c6ff, #0072ff);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px
}

.plan-title {
	    background: linear-gradient(90deg, #38bdf8, #b8b8b8);
		-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	margin-top: 40px;
	margin-bottom: 30px;
}

.plan-sub {
	font-size: 13px;
	color: #d0d0d0;
	margin-bottom: 25px
}



.featuress {
    text-align: left;
    margin: 0 auto 20px;
    padding-left: 0;
    list-style: none;
    max-width: 230px;
    max-height: 200px; /* Fixed height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-right: 5px; /* Prevents text from touching scrollbar area */
}

.featuress::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}


.sub-features {
    margin-top: 5px;
    padding-left: 20px;
    list-style-type: none;
}

.sub-features li {
    font-size: 12px;
    color: #d0d0d0;
    margin: 5px 0;
    position: relative;
    padding-left: 15px;
}

.sub-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.featuress li {
    margin: 15px 0;
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #fff;
}

.featuress li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00e676;
	font-weight: 700;

}

.featuress li.inactive::before {
    content: "✘";
    color: #ef5350;
}

.featuress li.inactive {
    color: #ccc;
}

.btn-order {
	display: inline-block;
	margin-top: 15px;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 14px;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: .3s ease;
}

.btn-basic {
	background: linear-gradient(to right, #00c6ff, #0072ff);
}

.btn-standart {
	background: linear-gradient(to right, #7f00ff, #e100ff);
}

.btn-premium {
	background: linear-gradient(to right, #ff00cc, #333399);
}

.btn-order:hover {
	opacity: .9
}


/* testimonial  */

.testimonials-section {
	max-width: 1400px;
	margin: 0 auto;
	overflow: hidden
}

.section-title {
	text-align: center;
	margin-bottom: 60px
}

.section-title h2 {
	background: linear-gradient(90deg, #38bdf8, #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 25px
}

.section-title p {
	color: #94a3b8;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto
}

.testimonial-row {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	width: calc(100% + 800px)
}

.testimonial-row.reverse {
	animation: slideLeft 40s linear infinite
}

.testimonial-row.forward {
	animation: slideRight 35s linear infinite
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2
}

.section-title h2 {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, .5)
}

.section-title p {
	color: #e2e8f0;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, .5)
}

.testimonial-row {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	width: calc(100% + 800px);
	position: relative;
	z-index: 2
}

.testimonial-row.reverse {
	animation: slideLeft 40s linear infinite
}

.testimonial-row.forward {
	animation: slideRight 35s linear infinite
}

@keyframes slideRight {
	0% {
		transform: translateX(-800px)
	}

	100% {
		transform: translateX(0)
	}
}

@keyframes slideLeft {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-800px)
	}
}

@keyframes slideRight {
	0% {
		transform: translateX(-800px)
	}

	100% {
		transform: translateX(0)
	}
}

@keyframes slideLeft {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-800px)
	}
}

.testimonial-card {
	background: rgba(30, 41, 59, .9);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(59, 130, 246, .3);
	border-radius: 16px;
	padding: 30px;
	min-width: 350px;
	position: relative;
	transition: all .3s ease;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .4)
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgba(59, 130, 246, .6);
	box-shadow: 0 20px 60px rgba(59, 130, 246, .15);
	background: rgba(30, 41, 59, .95)
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px
}

.profile-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid rgba(59, 130, 246, .4);
	margin-right: 15px;
	object-fit: cover;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .3)
}

.user-info p {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 5px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .3)
}

.user-info .position {
	color: #cbd5e1;
	font-size: .9rem
}

.star-rating {
	display: flex;
	gap: 2px;
	margin-bottom: 20px
}

.star {
	color: #fbbf24;
	font-size: 1.2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, .3)
}

.star.empty {
	color: #374151
}

.testimonial-message {
	color: #f1f5f9;
	line-height: 1.6;
	font-size: 1rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, .2)
}

.contact-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px
}

.contact-image {
	flex: 1 1 45%;
	text-align: center;
	width: 100%;
	height: auto
}

.contact-image img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform .3s ease;
	cursor: pointer
}

@keyframes floatUpDown {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-10px)
	}

	100% {
		transform: translateY(0)
	}
}

.contact-image img {
	animation: floatUpDown 3s ease-in-out infinite
}

.contact-image img {
	max-width: 100%;
	height: auto;
	object-fit: contain
}

.form-container {
	flex: 1 1 50%;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .15);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 30px rgba(0, 183, 255, .45);
	border-radius: 20px;
	padding: 40px;
	color: #fff;
	animation: fadeInUp 1s ease-out
}

.form-container h2 {
	text-align: center;
	margin-bottom: 30px;
	font-weight: 600;
	color: #00bfff;
	font-size: 28px
}

.form-group {
	margin-bottom: 20px
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 300
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid transparent;
	border-radius: 12px;
	color: #fff;
	font-size: 15px;
	outline: none;
	transition: all .3s ease
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #00bfff;
	background-color: rgba(255, 255, 255, .15)
}

.form-group textarea {
	resize: none;
	min-height: 100px
}

.form-group button {
	width: 100%;
	padding: 14px;
	background: #00bfff;
	border: none;
	border-radius: 12px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease
}

.form-group button:hover {
	background: #0099cc;
	transform: scale(1.02)
}

.fadeInUp {
	animation: fadeInUp 1s ease-out
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@media (max-width:768px) {
	.contact-wrapper {
		flex-direction: column;
		align-items: center;
		padding: 20px
	}

	.form-container,
	.contact-image {
		width: 100%
	}

	.form-container {
		padding: 30px 20px
	}
}

.dark-theme {
	background: radial-gradient(circle at top left, #0a0f2c, #050b1e);
	padding: 80px 20px;
	color: #fff;
	font-family: "Segoe UI", sans-serif;
	overflow: hidden
}

.story-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 120px auto;
	gap: 50px;
	padding: 40px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .03);
	box-shadow: 0 0 20px rgba(0, 128, 255, .1);
	animation: fadeInUp 1s ease forwards;
	opacity: 0
}

@keyframes fadeInUp {
	0% {
		transform: translateY(30px);
		opacity: 0
	}

	100% {
		transform: translateY(0);
		opacity: 1
	}
}

.story-text {
	flex: 1;
	min-width: 300px
}

.story-text h2 {
	font-size: 32px;
	color: #fff;
	margin-bottom: 20px;
	position: relative
}

.story-text h2::after {
	content: "";
	width: 60px;
	height: 2px;
	background: #00bfff;
	position: absolute;
	bottom: -8px;
	left: 0
}

.story-text p {
	font-size: 17px;
	line-height: 1.6;
	color: #d0d8f0
}

.story-image {
	flex: 1;
	text-align: center
}

.story-image img {
	max-width: 100%;
	border-radius: 15px;
	animation: floatImg 3s ease-in-out infinite;
	transition: transform .4s
}

.story-image img:hover {
	transform: translateY(-10px)
}

@keyframes floatImg {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-8px)
	}
}

@media (max-width:768px) {
	.story-container {
		flex-direction: column;
		text-align: center
	}

	.story-text h2::after {
		left: 50%;
		transform: translateX(-50%)
	}
}

.faq-section {
	display: flex;
	color: #fff;
	font-family: "Poppins", sans-serif;
	padding: 80px 50px
}

.faq-container {
	display: inline-flex;
	max-width: 1200px;
	margin: auto;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
	justify-content: space-between;
}

.faq-left {
	flex: 1 1 40%
}

.faq-left p {
	font-size: 14px;
	color: #aaa;
	letter-spacing: 1px;
	margin-bottom: 15px;
	display: flex;
	align-items: center
}

.faq-left .dot {
	height: 10px;
	width: 10px;
	background: #e100ff;
	border-radius: 50%;
	margin-right: 10px
}

.faq-left h2 {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.3
}

.faq-left h2 span {
	color: #fff;
	background: linear-gradient(90deg, #00ffff, #ff00ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.faq-left p {
	font-size: 16px;
	line-height: 1.6;
	color: #c4c4c4
}



.faq-right {
    flex: 1 1 55%;
    max-height: 400px; /* Adjust this value as needed */
    overflow-y: auto;
    padding-right: 10px; /* Add some padding to prevent content from touching the edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.faq-right::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.faq-right {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.faq-item {
	border: 1px solid #333;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	transition: all .3s ease
}

.faq-question {
	padding: 20px;
	font-weight: 500;
	font-size: 17px;
	background-color: #101420;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.faq-question:hover {
	background-color: #141c2c
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: #1a1f2d;
	padding: 0 20px;
	font-size: 15px;
	color: #ccc;
	transition: max-height .4s ease, padding .4s ease
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 15px 20px 20px
}

.plus {
	font-size: 22px;
	transition: transform .3s ease
}

.faq-item.active .plus {
	transform: rotate(45deg)
}

@media (max-width:768px) {
	.faq-container {
		flex-direction: column
	}

	.faq-left,
	.faq-right {
		flex: 1 1 100%
	}

	.faq-left h2 {
		font-size: 28px
	}
}


