:root {
  --bg-dark: #050816;
  --bg-card: #0b1020;
  --primary: #6366f1;
  --primary-soft: rgba(99, 102, 241, 0.12);
  --accent: #ec4899;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.25);
  --radius-lg: 20px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.7);
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  font-family:"Poppins",sans-serif;
}
main {
  padding-top: 90px;
}
.c-main{
  color: var(--text-main);
}

.c-muted{
  color: var(--text-muted);
}

.fs-12{
  font-size: 12px;
}

.none,.hidden{
  display: none;
}

img {
  width: 100%;
  height: 100%;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100vh;
}
.ltr{
  order: 2;
}
.rtl{
  order:1;
}
.col {
  width: 50%;
}
.padltr{
  padding:50px 10%;
}
.pad{padding: 24px;}
.r-20 {
  border-radius: 20px;
}
.r-50,
.btn {
  border-radius: 50px;
}
.g-5 {
  gap:5px;
}
.g-10 {
  gap: 10px;
}
.g-20 {
  gap: 20px;
}
.g-50 {
  gap: 50px;
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: start;
}
.items-end {
  align-items: flex-end;
}
.jc-start {
  justify-content: flex-start;
}
.jc-end {
  justify-content: flex-end;
}
.jc-center {
  justify-content: center;
}
.jc-between {
  justify-content: space-between;
}
.tt-cap,
.title {
  text-transform: capitalize;
}
.tt-upp {
  text-transform: uppercase;
}
.title {
  font-size: 50px;
}
.title-II{
  font-size: 32px;
}
.ta-c {
  text-align: center;
}
.ta-jfy {
  text-align: justify;
}
.bold {
  font-weight: bold;
}
.c-pointer,
.btn {
  cursor: pointer;
}

.p-relative{
  position: relative;
}

/* gradient text */

.g-text{
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.strong{
  font-size: 11px;
  letter-spacing: 3px;
}

.direct-btn{
  font-size: 20px;
}


/* button */

.btn{
  gap: 0.4rem;
  padding: 0.72rem 1.4rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary,.bg-primary{
  background-image: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text-main);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.45);
}

.btn-primary:hover{
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.6);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--text-main);
  transform: translateY(-1px);
}

/*card*/

.card, .simple-card{
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 1),
    rgba(15, 23, 42, 0.98)
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(129, 140, 248, 0.18),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover{
  transform: translateY(-5px);
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: var(--shadow-soft);
}

.card:hover::before{opacity: 1;}

/*form style*/

.label{
  margin-left: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.label-start::after {
  content: " *";
  color: red;
  margin-right: 4px;
  display: inline-block;
}

input,
textarea,
select {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.6rem 0.8rem;
  outline: none;
  color: var(--text-main);
  font-size: 0.8rem;
  transition: var(--transition);
}

textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 90px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.4);
}

body{
  background: radial-gradient(
    circle at top left,
    #111827 0,
    #020617 50%,
    #020617 100%
  );
  color: var(--text-main);
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

/* header */

.header{
  padding: 10px 10%;
  position: fixed;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.96),
    rgba(2, 6, 23, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
.header .logo .logo-mark{
  height: 60px;
  width: 60px;
}

.header .logo .logo-text-main{
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

#menu-btn i{
  font-size: 20px;
  color: var(--text-main);
}

.nav-links{
  align-items: center;
  justify-content: center;
}
.nav-links a {
  transition: var(--transition);
  text-transform: capitalize;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width 0.25s ease;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

/* this is home page style css */

/* hero section */

.eyebrow{
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(
    circle at top left,
    rgba(99, 102, 241, 0.18),
    transparent 55%
  );
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.eyebrow span{
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.18),
    transparent 60%
  );
  color: var(--accent);
}

/* offer */
.offer{
  padding: 50px;
}

.rules-box li {
  font-size: 12px;
  margin: 0 0 0 35px;
  color: var(--text-muted);
  list-style-type: decimal;
}

#home-contact-form {
  transition: all 0.1s ease-in-out;
}

.active {
  display: flex !important;
  flex-direction: column !important;
}

.box-i{
  width: 35px;
  height: 35px;
}

/* service */

.service-icon {
  height: 38px;
  width: 38px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.service-title{
  font-size: 18px;
}

/* How we work */

.step{
  min-height: 35px;
  min-width: 35px;
  max-height: 35px;
  max-width: 35px;
  border-radius: 50px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.85);
}


.process-card {
  background: radial-gradient(circle at top, #020617, #020617 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.pill {
  font-size: 11px;
  padding: 8px 12px;
  background: rgba(148, 163, 184, 0.16);
}

.progress {
  margin-top: 0.4rem;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background-image: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.8s ease-in-out;
}

.snapshot {
  width: 72% !important;
}

.metric {
  padding: 0.55rem 0.6rem;
  border-radius: 14px;
  font-size: 11px;
}

.industries-boxs{
  gap: 25px;
}

.industries-boxs div{
  width: 150px;
  height: 150px;
  color: var(--text-muted);
}

.industries-boxs div i{
  font-size: 40px;
  color: var(--text-main);
}

/* this is Services page style css */

.service-container{
  gap: 120px 50px;
}

.service-card{
  width: 30%;
  position: relative;
}

.service-img{
  margin-top: -90px;
  margin-bottom: 20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.service-img i{
  font-size: 100px;
}

.service-card ul li{
	position:relative;
	padding-left:18px;
  font-size: 12px;
  color:var(--text-muted);
  text-transform: capitalize;
}

.service-card ul li::before{
	content:"✔";
	position:absolute;
	left:0;
	top:0;
	color:var(--text-muted);
}

.blog-search-container label{
  padding: 0 32px;
}

.blog-card{
  width: 30%;
}

.blog-card img,.bolg-images{
  height: 30vh;
  object-fit:cover;
}

.c-icon{
  position: sticky;
  top:100px;
}

.submit-modal{
  position:fixed;
  inset:0;
  background: rgba(0, 0, 0, 0.7);
  z-index:9999;
}

.submit-box{
  width: 280px;
}

.loader {
  width: 70px;
  height: 70px;
  border: 10px double var(--accent);
  border-top: 10px double var(--primary);
  border-bottom: 10px double var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.success i, .error i{
  font-size:50px;
}

.success i {
  color: #3cff00;
}

.error i {
  color: #ff4343;
}

.footer{
  padding: 20px 10%;
  background-color: black;
}

@media screen and (max-width: 1400px){
}

@media screen and (max-width: 1200px){
  .padltr{
    padding:50px 5%;
  }

  .header{
    padding: 10px 5%;
  }

}

@media screen and (max-width: 992px){
  .none{display:flex;}
  .r-flex-col{flex-direction: column;}
  /*.ltr{order:1;}*/
  /*.rtl{order:2;}*/
  .h-100{height: auto;}

  .padltr{
    padding:50px 3%;
  }
  .title {
    font-size:42px;
  }
  .title-II{
    font-size: 32px;
  }
  .col,.service-card,.blog-card,.mark-box{width: 100%;}

  .header{
    padding: 10px 3%;
  }

  .header .logo .logo-text-main{
    display: none;
  }

  .nav-links{
    display: none;
  }

  .c-icon{
    position: static;
  }
  
}
/* ================= MOBILE SIDEBAR ================= */

.mobile-nav{
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(148, 163, 184, 0.15);
    padding: 90px 25px 30px;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 1001;
}

.mobile-nav a{
    color: var(--text-muted);
    font-size: 16px;
    transition: 0.3s;
}

.mobile-nav a:hover{
    color: var(--text-main);
    transform: translateX(5px);
}

.mobile-nav.active{
    left: 0;
}

.mobile-logo{
    position: absolute;
    top: 25px;
    left: 25px;
    font-weight: 600;
}

/* Overlay */

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}

/* Mobile Behaviour */

@media screen and (max-width: 992px){

    .nav-links{
        display: none !important;
    }

    #menu-btn{
        display: flex !important;
    }

}
/* ================= HERO VISUAL PREMIUM ================= */

.hero-visual {
    flex: 1;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Glow Background */
.glow-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
        rgba(99,102,241,0.4),
        rgba(236,72,153,0.2),
        transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from { transform: translateY(-20px); }
    to { transform: translateY(20px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(20, 25, 45, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    color: #fff;
}

/* Main Center Card */
.main-card {
    width: 260px;
    text-align: center;
    z-index: 2;
}

.main-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.main-card p {
    font-size: 13px;
    color: #9ca3af;
}

/* Small Cards */
.small-card {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 14px 18px;
}

.small-card i {
    color: #6366f1;
}

/* Positioning */
.card-1 {
    top: 40px;
    left: 40px;
    animation: float1 4s ease-in-out infinite alternate;
}

.card-2 {
    bottom: 60px;
    right: 60px;
    animation: float2 5s ease-in-out infinite alternate;
}

.card-3 {
    top: 120px;
    right: 20px;
    animation: float3 6s ease-in-out infinite alternate;
}

@keyframes float1 {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

@keyframes float2 {
    from { transform: translateY(0); }
    to { transform: translateY(18px); }
}

@keyframes float3 {
    from { transform: translateY(0); }
    to { transform: translateY(-12px); }
}

/* Responsive */
@media(max-width:992px){
    .hero-visual {
        height: 380px;
        margin-top: 40px;
    }

    .main-card {
        width: 220px;
    }

    .small-card {
        font-size: 12px;
    }
}
/* ================= IMPACT SECTION ================= */

.impact-card{
    width: 260px;
    transition: var(--transition);
}

.impact-card i{
    font-size: 28px;
    color: var(--primary);
}

.impact-card:hover{
    transform: translateY(-6px);
    border-color: rgba(129, 140, 248, 0.8);
}

/* ================= ARCHITECTURE CARD ================= */

.architecture-box {
    position: relative;
    padding-left: 20px;
}

.arch-step {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 20px;
}

.arch-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 22px;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(148, 163, 184, 0.25);
}

.arch-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    flex-shrink: 0;
    margin-top: 5px;
}

.arch-step strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.arch-step small {
    font-size: 12px;
    display: block;
}
del {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.footer .social a{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.footer a i{
  font-size: 18px;
  transition: var(--transition);
}

.footer a:hover i{
  color: var(--primary);
  transform: translateY(-2px) scale(1.1);
}