*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#050816;
color:white;
overflow-x:hidden;
}

html{
}

header{
position:fixed;
width:100%;
top:0;
z-index:999;
background:rgba(5,8,22,.8);
-webkit-backdrop-filter:blur(15px);
backdrop-filter:blur(15px);
transform:translate3d(0,0,0);
}

nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:white;
}

.logo-icon{
flex-shrink:0;
filter:drop-shadow(0 0 8px rgba(0,212,255,.35));
}

.logo-text{
font-weight:800;
font-size:20px;
letter-spacing:.5px;
}

.logo-my{
background:linear-gradient(90deg,#00D4FF,#7B61FF);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.logo-group{
color:rgba(255,255,255,.65);
font-weight:600;
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
}

.nav-btn{
display:inline-block;
background:linear-gradient(135deg,#00D4FF,#7B61FF);
padding:12px 25px;
border-radius:50px;
text-decoration:none;
color:white;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:50px;
position:relative;
}

.hero-content{
position:relative;
max-width:900px;
z-index:2;
}

.badge{
padding:10px 20px;
border-radius:50px;
background:rgba(255,255,255,.08);
display:inline-block;
margin-bottom:30px;
}

.hero h1{
font-size:70px;
font-weight:800;
line-height:1.1;
}

.hero h1 span{
background:linear-gradient(90deg,#00D4FF,#7B61FF);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
margin:30px auto;
max-width:700px;
font-size:20px;
color:#b6b6b6;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary{
display:inline-block;
background:linear-gradient(135deg,#00D4FF,#7B61FF);
padding:15px 30px;
border-radius:50px;
text-decoration:none;
color:white;
}

.btn-secondary{
display:inline-block;
border:1px solid rgba(255,255,255,.2);
padding:15px 30px;
border-radius:50px;
text-decoration:none;
color:white;
}

.blob{
position:absolute;
border-radius:50%;
filter:blur(150px);
pointer-events:none;
z-index:-1;
will-change:transform;
-webkit-transform:translate3d(0,0,0);
transform:translate3d(0,0,0);
}

.blob1{
width:350px;
height:350px;
background:#00D4FF;
top:10%;
left:10%;
}

.blob2{
width:350px;
height:350px;
background:#7B61FF;
right:10%;
bottom:10%;
}

section{
padding:100px 10%;
scroll-margin-top: 85px;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:30px;
}

.section-desc{
text-align:center;
max-width:900px;
margin:auto;
color:#bbb;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
gap:20px;
}

.stats .stat-number{
font-size:50px;
color:#00D4FF;
font-weight:800;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.card,.tech{
background:rgba(255,255,255,.05);
padding:30px;
border-radius:20px;
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.card:hover,
.tech:hover{
transform:translateY(-8px);
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.card p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00D4FF;
  margin-bottom: 12px;
}

.project-tech {
  margin-top: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.tech{
text-align:center;
font-weight:600;
}

.testimonial{
text-align:center;
}

.quote{
max-width:800px;
margin:auto;
font-size:24px;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:15px;
border:none;
border-radius:12px;
background:#10162a;
color:white;
}

button{
padding:15px;
background:linear-gradient(135deg,#00D4FF,#7B61FF);
border:none;
color:white;
border-radius:12px;
cursor:pointer;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
  font-size: 24px;
  background: rgba(0, 214, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.contact-item strong {
  display: block;
  font-size: 16px;
  color: #00D4FF;
  margin-bottom: 4px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.4;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.contact-item a:hover {
  color: #7B61FF;
}

footer {
  background: #03050f;
  padding: 60px 10% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer-col h4 {
  color: #00D4FF;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-tagline {
  margin-top: 15px;
  max-width: 280px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  color: #7B61FF;
  padding-left: 5px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-col a:hover {
  color: #00D4FF;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 18px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Transform spans into "X" when open */
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Social Links */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-social {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.3s;
}

.nav-social:hover {
  color: #00D4FF;
  transform: scale(1.1);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

/* Inner Page Header */
.page-header {
  padding: 160px 10% 60px;
  background: radial-gradient(circle at top, rgba(123, 97, 255, 0.15), transparent 60%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-header h1 span {
  background: linear-gradient(90deg, #00D4FF, #7B61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #00D4FF;
}

/* Core Values and Team Sections */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 97, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #00D4FF;
  position: relative;
}

.team-avatar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(5, 8, 22, 0.8));
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info .role {
  color: #00D4FF;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 20px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.team-socials a:hover {
  color: #00D4FF;
}

/* Service Detail Layout */
.service-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.service-detail-section:nth-of-type(even) {
  direction: rtl;
}

.service-detail-section:nth-of-type(even) .service-detail-content {
  direction: ltr;
}

.service-detail-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-detail-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-detail-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0;
}

.service-detail-features li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.service-detail-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00D4FF;
  font-weight: bold;
}

.service-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tech-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.service-detail-image {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 97, 255, 0.1));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.service-detail-image::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.2);
  filter: blur(50px);
}

/* Careers Section Styles */
.careers-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.job-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(5px);
}

.job-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-apply-btn {
  background: linear-gradient(135deg, #00D4FF, #7B61FF);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.job-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.culture-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
}

.culture-card h3 {
  font-size: 20px;
  color: #00D4FF;
  margin-bottom: 15px;
}

.culture-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.culture-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.culture-features li {
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
}

.culture-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #7B61FF;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-card-map {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: #111528;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 20px;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 100%;
  border: none;
}

/* Legal Documents Styles */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: left;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 24px;
  color: #00D4FF;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15px;
}

.legal-section ul {
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.last-updated {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
  font-size: 14px;
}

/* Form Styles Extension */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

select {
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #10162a;
  color: white;
  width: 100%;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

select:focus, input:focus, textarea:focus {
  outline: 1px solid #00D4FF;
}

@media(max-width:992px) {
  .service-detail-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 10%;
  }
  .service-detail-section:nth-of-type(even) {
    direction: ltr;
  }
  .careers-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.nav-links{
display:none;
}

.nav-links.active {
display:flex;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(5, 8, 22, 0.98);
backdrop-filter:blur(15px);
-webkit-backdrop-filter:blur(15px);
padding:30px 20px;
border-bottom:1px solid rgba(255,255,255,0.08);
gap:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.nav-links.active a {
font-size:18px;
font-weight:500;
}

.nav-btn, .nav-social {
display:none;
}

.mobile-menu-toggle {
display:flex;
}

.stats{
grid-template-columns:1fr 1fr;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.form-row {
  grid-template-columns: 1fr;
}

.job-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.job-apply-btn {
  width: 100%;
  text-align: center;
}
}