/* =========================
GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* =========================
ROOT VARIABLES
========================= */

:root{

  --bg:#050505;
  --bg-light:#0b0b0b;

  --white:#ffffff;

  --text:#a1a1aa;

  --blue:#0A84FF;

  --green:#9ACD32;

  --border:
  rgba(255,255,255,0.08);

  --glass:
  rgba(255,255,255,0.04);

  --gradient:
  linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );

  --shadow:
  0 25px 60px rgba(0,0,0,0.35);

}

/* =========================
GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:"Inter",sans-serif;

  background:var(--bg);

  color:var(--white);

  overflow-x:hidden;

}

body::-webkit-scrollbar{
  width:8px;
}

body::-webkit-scrollbar-thumb{

  background:linear-gradient(
    var(--blue),
    var(--green)
  );

  border-radius:20px;

}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

img{
  width:100%;
  display:block;
}

.container{

  width:90%;
  max-width:1400px;

  margin:auto;

}

/* =========================
GLOBAL TYPOGRAPHY SYSTEM
========================= */

.section-heading{

  font-size:72px;

  line-height:1;

  font-weight:800;

  letter-spacing:-4px;

  margin-bottom:28px;

}

.section-heading span{

  background:var(--gradient);

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

}

.center-heading{
  text-align:center;
}

.section-text{

  font-size:18px;

  line-height:1.9;

  color:var(--text);

}

.section-top{

  text-align:center;

  margin-bottom:80px;

}

.section-badge{

  display:inline-flex;

  align-items:center;

  gap:12px;

  padding:14px 24px;

  border-radius:100px;

  background:var(--glass);

  border:1px solid var(--border);

  margin-bottom:30px;

  font-size:14px;

  letter-spacing:1px;

}

.section-badge span{

  width:10px;
  height:10px;

  border-radius:50%;

  background:var(--green);

}


/* =========================
CURSOR
========================= */

.cursor{

  position:fixed;

  width:18px;
  height:18px;

  border-radius:50%;

  background:var(--gradient);

  pointer-events:none;

  z-index:999999;

  transform:translate(-50%,-50%);

  box-shadow:
  0 0 30px rgba(10,132,255,0.4);

}

.cursor::before{

  content:"";

  position:absolute;

  inset:-10px;

  border-radius:50%;

  border:1px solid rgba(255,255,255,0.12);

  animation:cursorPulse 2s infinite;

}

@keyframes cursorPulse{

  100%{
    transform:scale(1.8);
    opacity:0;
  }

}

/* =========================
NAVBAR
========================= */

.navbar{

  position:fixed;

  top:18px;
  left:50%;

  transform:translateX(-50%);

  width:74%;

  padding:18px 35px;

  border-radius:24px;

  background:
  rgba(10,10,10,0.45);

  backdrop-filter:blur(20px);

  border:1px solid var(--border);

  z-index:9999;

}

.nav-container{

  display:flex;

  align-items:center;

  justify-content:space-between;

}

.logo img{
  width:220px;
}

.nav-links{

  display:flex;

  align-items:center;

  gap:34px;

}

.nav-links a{

  color:
  rgba(255,255,255,0.82);

  font-size:15px;

  font-weight:500;

  transition:0.3s;

}

.nav-links a:hover{
  color:#fff;
}

.nav-btn{

  padding:15px 28px;

  border-radius:100px;

  background:var(--gradient);

  font-weight:600;

}

.mobile-menu-btn{

  display:none;

  font-size:32px;

  cursor:pointer;

}

/* =========================
DROPDOWN
========================= */

.dropdown{
  position:relative;
}

.dropdown-menu{

  position:absolute;

  top:45px;
  left:0;

  width:260px;

  background:#111;

  border:1px solid var(--border);

  border-radius:22px;

  padding:14px;

  display:flex;

  flex-direction:column;

  gap:8px;

  opacity:0;
  visibility:hidden;

  transition:0.3s;

}

.dropdown:hover .dropdown-menu{

  opacity:1;
  visibility:visible;

}

.dropdown-menu a{

  padding:14px;

  border-radius:14px;

}

.dropdown-menu a:hover{

  background:
  rgba(255,255,255,0.05);

}

/* ======================================================
FINAL HERO
====================================================== */

.hero{

  position:relative;

  min-height:100vh;

  overflow:hidden;

  background:#050505;

  padding-top:140px;

  display:flex;

  align-items:center;

}

/* BG */

.hero-gradient{

  position:absolute;

  inset:0;

  background:

  radial-gradient(
    circle at top left,
    rgba(10,132,255,0.15),
    transparent 35%
  ),

  radial-gradient(
    circle at bottom right,
    rgba(154,205,50,0.10),
    transparent 35%
  );

}

.hero-grid{

  position:absolute;

  inset:0;

  background-image:

  linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
  ),

  linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
  );

  background-size:55px 55px;

  animation:gridMove 18s linear infinite;

}

@keyframes gridMove{

  100%{
    transform:translateY(55px);
  }

}

/* CONTAINER */

.hero-container{

  position:relative;

  z-index:5;

  width:90%;

  max-width:1400px;

  margin:auto;

  display:grid;

  grid-template-columns:
  1.1fr 0.9fr;

  gap:70px;

  align-items:center;

}

/* LEFT */

.hero-content{

  max-width:700px;

}

.hero-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:14px 22px;

  border-radius:100px;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.08);

  margin-bottom:28px;

  backdrop-filter:blur(20px);

}

.hero-badge span{

  width:10px;
  height:10px;

  border-radius:50%;

  background:#9ACD32;

}

/* HEADING */

.hero-heading{

  display:flex;

  flex-direction:column;

  line-height:0.92;

  margin-bottom:34px;

}

.hero-heading .line{

  font-size:clamp(38px,5vw,72px);

  font-weight:800;

  letter-spacing:-3px;

  line-height:0.95;

  color:#fff;

}

.typing-line{

  height:80px;

}

.typing-text{

  display:inline-block;

  min-width:420px;

  background:
  linear-gradient(
    135deg,
    #0A84FF,
    #9ACD32
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

}

/* TEXT */

.section-text{

  max-width:620px;

  font-size:18px;

  line-height:1.9;

  color:#a1a1aa;

}

/* BUTTONS */

.hero-buttons{

  display:flex;

  gap:18px;

  margin-top:40px;

  margin-bottom:55px;

}

.hero-btn{

  height:60px;

  padding:0 34px;

  border-radius:100px;

  display:inline-flex;

  align-items:center;

  justify-content:center;

  font-weight:700;

  transition:0.4s;

}

.primary-btn{

  background:
  linear-gradient(
    135deg,
    #0A84FF,
    #9ACD32
  );

}

.secondary-btn{

  border:
  1px solid rgba(255,255,255,0.08);

  background:
  rgba(255,255,255,0.04);

}

.hero-btn:hover{

  transform:translateY(-5px);

}

/* STATS */

.hero-stats{

  display:flex;

  gap:50px;

  flex-wrap:wrap;

}

.stat h3{

  font-size:48px;

  margin-bottom:10px;

}

/* RIGHT */

.hero-visual{

  position:relative;

}

.glass-card{

  padding:20px;

  border-radius:32px;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(20px);

}

.card-top{

  display:flex;

  gap:10px;

  margin-bottom:18px;

}

.card-top span{

  width:12px;
  height:12px;

  border-radius:50%;

}

.card-top span:nth-child(1){
  background:#ff5f57;
}

.card-top span:nth-child(2){
  background:#febc2e;
}

.card-top span:nth-child(3){
  background:#28c840;
}

.glass-card img{

  width:100%;

  height:500px;

  object-fit:cover;

  border-radius:22px;

  display:block;

}

/* FLOATING */

/* ======================================================
PREMIUM HERO VISUAL FIX
====================================================== */

.hero-visual{

  position:relative;

  display:flex;

  align-items:center;

  justify-content:center;

}

/* MAIN CARD */

.glass-card{

  position:relative;

  width:100%;

  max-width:620px;

  padding:18px;

  padding-bottom: 35px;

  border-radius:34px;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(20px);

  box-shadow:
  0 25px 70px rgba(0,0,0,0.45);

  overflow:hidden;

}

/* TOP DOTS */

.card-top{

  display:flex;

  gap:10px;

  margin-bottom:18px;

}

.card-top span{

  width:12px;
  height:12px;

  border-radius:50%;

}

.card-top span:nth-child(1){

  background:#ff5f57;

}

.card-top span:nth-child(2){

  background:#febc2e;

}

.card-top span:nth-child(3){

  background:#28c840;

}

/* IMAGE */

.glass-card img{

  width:100%;

  height:100%;

  object-fit:cover;

  border-radius:24px;

  display:block;

  filter:
  brightness(0.88)
  contrast(1.02);

  transition:0.6s;

}

.glass-card:hover img{

  transform:scale(1.03);

}

/* ======================================================
FLOATING CARDS
====================================================== */

.floating-card{

  position:absolute;

  width:220px;

  padding:18px 20px;

  border-radius:24px;

  background:
  rgba(20,20,20,0.75);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(18px);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.35);

  z-index:5;

}

.floating-card i{

  font-size:22px;

  color:#9ACD32;

  margin-bottom:10px;

}

.floating-card h4{

  font-size:18px;

  margin-bottom:4px;

  font-weight:700;

}

.floating-card p{

  font-size:14px;

  color:#a1a1aa;

  line-height:1.5;

}

/* POSITIONS */

.floating-1{

  left:-70px;

  bottom:70px;

}

.floating-2{

  right:-70px;

  top:120px;

}

.floating-3{

  top:-40px;

  left:40px;

}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:1100px){

  .floating-card{

    display:none;

  }

}

@media(max-width:768px){

  .glass-card img{

    height:380px;

  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-container{

    grid-template-columns:1fr;

    text-align:center;

  }

  .section-text{

    margin:auto;

  }

  .hero-buttons{

    justify-content:center;

  }

  .hero-stats{

    justify-content:center;

  }

  .floating-card{

    display:none;

  }

}

@media(max-width:768px){

  .hero{

    padding-top:160px;

  }

  .hero-heading .line{

    font-size:clamp(42px,10vw,64px);

    letter-spacing:-2px;

  }

  .typing-line{

    height:auto;

  }

  .typing-text{

    min-width:auto;

  }

  .hero-buttons{

    flex-direction:column;

  }

  .hero-btn{

    width:100%;

  }

  .glass-card img{

    height:360px;

  }

}

/* =========================
MARQUEE
========================= */

.marquee-section{

  padding:25px 0;

  padding-top: 25px;

  border-top:1px solid var(--border);

  border-bottom:1px solid var(--border);

  overflow:hidden;

  background:
  rgba(255,255,255,0.02);

}

.marquee{

  width:100%;

  overflow:hidden;

}

.marquee-track{

  display:flex;

  align-items:center;

  gap:70px;

  width:max-content;

  animation:marquee 22s linear infinite;

}

.marquee-track span{

  font-size:38px;

  font-weight:800;

  text-transform:uppercase;

  white-space:nowrap;

  color:
  rgba(255,255,255,0.9);

  position:relative;

}

.marquee-track span::after{

  content:"";

  position:absolute;

  right:-36px;
  top:50%;

  transform:translateY(-50%);

  width:12px;
  height:12px;

  border-radius:50%;

  background:var(--gradient);

}

@keyframes marquee{

  100%{
    transform:translateX(-50%);
  }

}

/* =========================
ABOUT SECTION
========================= */

.about-section{

  position:relative;

  padding:35px 0;

  overflow:hidden;

}

.about-container{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:100px;

}

.about-left{
  flex:1;
}

.about-right{

  position:relative;

  flex:1;

  height:700px;

  display:flex;

  align-items:center;

  justify-content:center;

}

.about-blur{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

}

.about-blur-1{

  width:420px;
  height:420px;

  background:
  rgba(10,132,255,0.12);

  top:0;
  left:-120px;

}

.about-blur-2{

  width:380px;
  height:380px;

  background:
  rgba(154,205,50,0.08);

  bottom:0;
  right:-120px;

}

/* =========================
CENTER CARD
========================= */

.center-card{

  position:relative;

  width:260px;
  height:260px;

  border-radius:34px;

  background:var(--glass);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  text-align:center;

  z-index:10;

}

.center-logo{

  width:90px;
  height:90px;

  background:#fff;

  border-radius:22px;

  display:flex;

  align-items:center;

  justify-content:center;

  margin-bottom:20px;

  padding:15px;

}

.center-card h3{

  font-size:32px;

  margin-bottom:10px;

}

.center-card p{
  color:var(--text);
}

/* =========================
ORBITS
========================= */

.orbit{

  position:absolute;

  border:1px solid rgba(255,255,255,0.08);

  border-radius:50%;

}

.orbit-1{

  width:400px;
  height:400px;

}

.orbit-2{

  width:560px;
  height:560px;

}

.center-glow{

  position:absolute;

  width:420px;
  height:420px;

  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    rgba(10,132,255,0.22),
    rgba(154,205,50,0.15)
  );

  filter:blur(90px);

}

/* =========================
UI BOXES
========================= */

.ui-box{

  position:absolute;

  padding:24px 28px;

  border-radius:24px;

  background:var(--glass);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

}

.box-a{

  top:70px;
  left:0;

}

.box-b{

  top:110px;
  right:0;

  display:flex;

  align-items:center;

  gap:16px;

}

.box-c{

  bottom:130px;
  left:30px;

  display:flex;

  align-items:center;

  gap:16px;

}

.box-a h4{

  font-size:54px;

  margin-bottom:8px;

}

.ui-box i{

  font-size:32px;

  color:var(--green);

}

/* =========================
PREMIUM TAGS
========================= */

.premium-tags{

  display:flex;

  flex-wrap:wrap;

  gap:14px;

  margin-top:45px;

}

.premium-tag{

  padding:16px 24px;

  border-radius:100px;

  background:var(--glass);

  border:1px solid var(--border);

  transition:0.4s;

}

.premium-tag:hover{

  transform:translateY(-6px);

  background:
  linear-gradient(
    135deg,
    rgba(10,132,255,0.18),
    rgba(154,205,50,0.15)
  );

}

/* ======================================================
FINAL INDUSTRIES CLEAN UI
====================================================== */

.industries-section{

  position:relative;

  padding:80px 5%;

  background:#050505;

  overflow:hidden;

}

.industry-bg{

  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(10,132,255,0.14),
    transparent 70%
  );

  top:-250px;
  right:-250px;

  filter:blur(70px);

}

.industry-grid-bg{

  position:absolute;

  inset:0;

  background-image:

  linear-gradient(
    rgba(255,255,255,0.03) 1px,
    transparent 1px
  ),

  linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 1px,
    transparent 1px
  );

  background-size:55px 55px;

}

.industry-container{

  position:relative;

  z-index:5;

  max-width:1400px;

  margin:auto;

}

/* TOP */

.industry-top{

  text-align:center;

  margin-bottom:80px;

}

.industry-tag{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:14px 24px;

  border-radius:100px;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.08);

  margin-bottom:28px;

}

.industry-tag::before{

  content:"";

  width:10px;
  height:10px;

  border-radius:50%;

  background:#9ACD32;

}

.industry-top h2{

  font-size:clamp(48px,6vw,90px);

  line-height:1;

  font-weight:800;

  margin-bottom:22px;

}

.industry-top h2 span{

  background:
  linear-gradient(
    135deg,
    #0A84FF,
    #9ACD32
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

}

.industry-top p{

  max-width:720px;

  margin:auto;

  color:#a1a1aa;

  line-height:1.8;

  font-size:18px;

}

/* GRID */

.industry-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;

}

/* CARD */

.industry-card{

  position:relative;

  padding:38px;

  border-radius:32px;

  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(20px);

  transition:
  border-color 0.4s,
  box-shadow 0.4s,
  scale 0.4s;

  overflow:hidden;

}

.industry-card::before{

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(10,132,255,0.08),
    transparent,
    rgba(154,205,50,0.05)
  );

  opacity:0;

  transition:0.4s;

}

.industry-card:hover{

  border-color:
  rgba(255,255,255,0.15);

  box-shadow:
  0 20px 60px rgba(0,0,0,0.35);

}

.industry-card:hover::before{

  opacity:1;

}

.industry-card{

  opacity:1 !important;

  visibility:visible !important;

  transform:none;

}

.industry-card i{

  width:76px;
  height:76px;

  border-radius:24px;

  display:flex;

  align-items:center;

  justify-content:center;

  margin-bottom:26px;

  font-size:34px;

  color:#9ACD32;

  background:
  linear-gradient(
    135deg,
    rgba(10,132,255,0.15),
    rgba(154,205,50,0.15)
  );

  border:
  1px solid rgba(255,255,255,0.08);

}

.industry-card h3{

  font-size:30px;

  margin-bottom:16px;

  font-weight:700;

}

.industry-card p{

  color:#a1a1aa;

  line-height:1.8;

  font-size:16px;

}

/* RESPONSIVE */

@media(max-width:1100px){

  .industry-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

@media(max-width:768px){

  .industry-grid{

    grid-template-columns:1fr;

  }

}

/* =========================
SERVICES SECTION
========================= */

.services-section{

  position:relative;

  padding:80px 0;

  overflow:hidden;

}

.services-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:30px;

}

.service-card{

  position:relative;

  min-height:320px;

  padding:34px;

  border-radius:32px;

  background:var(--glass);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

  overflow:hidden;

  transition:0.5s;

}

.service-card:hover{

  transform:
  translateY(-10px);

  border-color:
  rgba(10,132,255,0.25);

  box-shadow:var(--shadow);

}

.service-glow{

  position:absolute;

  width:220px;
  height:220px;

  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    rgba(10,132,255,0.2),
    rgba(154,205,50,0.12)
  );

  filter:blur(80px);

  top:-100px;
  right:-100px;

  opacity:0;

  transition:0.5s;

}

.service-card:hover .service-glow{
  opacity:1;
}

.service-card lord-icon{

  margin-bottom:24px;

}

.service-card h3{

  font-size:30px;

  margin-bottom:18px;

  line-height:1.2;

}

.service-card p{

  color:var(--text);

  line-height:1.9;

  margin-bottom:28px;

}

.service-btn{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:14px 24px;

  border-radius:100px;

  background:
  rgba(255,255,255,0.05);

  border:1px solid var(--border);

  transition:0.3s;

}

.service-btn:hover{

  background:var(--gradient);

}

.service-number{

  position:absolute;

  right:20px;
  bottom:0;

  font-size:90px;

  font-weight:800;

  opacity:0.04;

}



/* =========================
ECOMMERCE SECTION
========================= */

.ecommerce-section{

  position:relative;

  padding:80px 0;

  overflow:hidden;

}

.ecommerce-glow{

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(10,132,255,0.16),
    transparent 70%
  );

  top:-200px;
  right:-100px;

  filter:blur(100px);

}

.ecommerce-container{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:70px;

}

.ecommerce-left{
  flex:1;
}

.ecommerce-right{
  flex:1;
}

.ecommerce-features{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:18px;

  margin:
  45px 0;

}

.ecommerce-feature{

  display:flex;

  align-items:center;

  gap:12px;

  padding:18px 22px;

  border-radius:20px;

  background:var(--glass);

  border:1px solid var(--border);

}

.ecommerce-feature i{

  color:var(--green);

  font-size:22px;

}

.ecommerce-card{

  padding:24px;

  border-radius:34px;

  background:var(--glass);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

  box-shadow:var(--shadow);

}

.ecommerce-top{

  display:flex;

  gap:10px;

  margin-bottom:18px;

}

.ecommerce-top span{

  width:12px;
  height:12px;

  border-radius:50%;

}

.ecommerce-top span:nth-child(1){
  background:#ff5f57;
}

.ecommerce-top span:nth-child(2){
  background:#febc2e;
}

.ecommerce-top span:nth-child(3){
  background:#28c840;
}

.ecommerce-card img{

  border-radius:24px;

  filter:
  brightness(0.72)
  contrast(1.05);

}

/* =========================
REVIEWS SECTION
========================= */

.reviews-section{

  position:relative;

  padding:80px 0;

  overflow:hidden;

}

.reviews-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;

}

.review-card{

  min-height:320px;

  padding:34px;

  border-radius:30px;

  background:var(--glass);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

  transition:0.4s;

}

.review-card:hover{

  transform:translateY(-8px);

  box-shadow:var(--shadow);

}

.active-card{

  border-color:
  rgba(10,132,255,0.4);

}

.review-top{

  display:flex;

  align-items:center;

  gap:18px;

}

.review-top img{

  width:72px;
  height:72px;

  border-radius:50%;

  object-fit:cover;

}

.review-top h3{

  font-size:24px;

  margin-bottom:6px;

}

.review-top span{
  color:var(--text);
}

.stars{

  margin:
  30px 0 24px;

  color:#FFD700;

  font-size:24px;

}

.review-card p{

  color:var(--text);

  line-height:1.9;

}

/* =========================
FAQ SECTION
========================= */

.faq-section{

  position:relative;

  padding:80px 0;

  overflow:hidden;

}

.faq-wrapper{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:80px;

}

.faq-left{

  flex:1;

  display:flex;

  flex-direction:column;

  gap:18px;

}

.faq-item{

  background:var(--glass);

  border:1px solid var(--border);

  border-radius:24px;

  overflow:hidden;

  transition:0.4s;

}

.faq-item.active-faq{

  border-color:
  rgba(10,132,255,0.3);

  background:
  linear-gradient(
    145deg,
    rgba(10,132,255,0.06),
    rgba(255,255,255,0.02)
  );

}

.faq-question{

  padding:24px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  cursor:pointer;

}

.faq-question-left{

  display:flex;

  align-items:center;

  gap:16px;

}

.faq-question-left i{

  font-size:22px;

  color:var(--green);

}

.faq-question h3{

  font-size:20px;

}

.faq-toggle{

  width:46px;
  height:46px;

  border-radius:50%;

  background:
  rgba(255,255,255,0.05);

  display:flex;

  align-items:center;

  justify-content:center;

}

.faq-toggle i{

  font-size:24px;

  color:var(--green);

  transition:0.4s;

}

.faq-item.active-faq .faq-toggle i{

  transform:rotate(45deg);

}

.faq-answer{

  max-height:0;

  overflow:hidden;

  transition:max-height 0.4s ease;

}

.faq-item.active-faq .faq-answer{

  max-height:200px;

}

.faq-answer p{

  padding:
  0 24px 24px 62px;

  color:var(--text);

  line-height:1.9;

}

/* =========================
FAQ RIGHT SIDE
========================= */

.faq-right{

  flex:1;

  display:flex;

  align-items:center;

  justify-content:center;

}

.faq-visual{

  position:relative;

  width:100%;
  max-width:480px;

  height:580px;

  border-radius:34px;

  overflow:hidden;

  background:
  linear-gradient(
    145deg,
    rgba(10,132,255,0.08),
    rgba(154,205,50,0.03)
  );

  border:1px solid var(--border);

  display:flex;

  align-items:center;

  justify-content:center;

}

.faq-grid{

  position:absolute;

  inset:0;

  background-image:

  linear-gradient(
    rgba(255,255,255,0.04) 1px,
    transparent 1px
  ),

  linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 1px,
    transparent 1px
  );

  background-size:40px 40px;

}

.faq-glow{

  position:absolute;

  width:260px;
  height:260px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(10,132,255,0.3),
    transparent 70%
  );

  filter:blur(80px);

}

.faq-illustration{

  position:relative;

  z-index:2;

  width:75%;

  object-fit:contain;

  animation:faqFloat 5s ease-in-out infinite;

}

.faq-floating{

  position:absolute;

  border-radius:50%;

  background:var(--gradient);

  filter:blur(2px);

  opacity:0.8;

}

.faq-float-1{

  width:18px;
  height:18px;

  top:100px;
  left:80px;

  animation:floatOne 6s infinite ease-in-out;

}

.faq-float-2{

  width:14px;
  height:14px;

  right:70px;
  top:180px;

  animation:floatTwo 5s infinite ease-in-out;

}

.faq-float-3{

  width:22px;
  height:22px;

  bottom:120px;
  left:100px;

  animation:floatThree 7s infinite ease-in-out;

}

@keyframes faqFloat{

  50%{
    transform:translateY(-14px);
  }

}

@keyframes floatOne{

  50%{
    transform:
    translateY(-25px)
    translateX(10px);
  }

}

@keyframes floatTwo{

  50%{
    transform:
    translateY(20px)
    translateX(-10px);
  }

}

@keyframes floatThree{

  50%{
    transform:
    translateY(-20px)
    translateX(14px);
  }

}

/* =========================
CONTACT SECTION
========================= */

.contact-section{

  position:relative;

  padding:80px 0;

  overflow:hidden;

}

.contact-wrapper{

  display:grid;

  grid-template-columns:
  1fr 520px;

  gap:80px;

  align-items:center;

}

.contact-left{
  max-width:720px;
}

.contact-details{

  display:flex;

  flex-direction:column;

  gap:24px;

  margin-top:50px;

}

.contact-item{

  display:flex;

  align-items:center;

  gap:20px;

}

.contact-icon{

  width:72px;
  height:72px;

  border-radius:22px;

  background:var(--gradient);

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:30px;

}

.contact-text h4{

  font-size:28px;

  margin-bottom:6px;

}

.contact-text p{
  color:var(--text);
}

/* =========================
FORM
========================= */

.contact-form{

  position:relative;

  padding:40px;

  border-radius:34px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.015)
  );

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

  overflow:hidden;

}

.contact-form::before{

  content:"";

  position:absolute;

  top:-120px;
  right:-120px;

  width:240px;
  height:240px;

  background:
  radial-gradient(
    circle,
    rgba(10,132,255,0.18),
    transparent 70%
  );

}

.contact-form h3{

  font-size:26px;

  line-height:1;

  margin-bottom:16px;

}

.contact-form-sub{

  color:var(--text);

  margin-bottom:30px;

}

.form-group{

  margin-bottom:18px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

  width:100%;

  background:
  rgba(255,255,255,0.03);

  border:1px solid var(--border);

  border-radius:18px;

  padding:0 20px;

  color:#fff;

  font-size:15px;

  outline:none;

  transition:0.3s;

}

.contact-form input,
.contact-form select{
  height:60px;
}

.contact-form textarea{

  height:160px;

  resize:none;

  padding-top:20px;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

  border-color:var(--blue);

  box-shadow:
  0 0 0 4px rgba(10,132,255,0.08);

}

.contact-form select{

  appearance:none;

  cursor:pointer;

}

.contact-form option{

  background:#0b0b0b;

}

.contact-btn{

  width:100%;
  height:62px;

  border:none;

  border-radius:18px;

  background:var(--gradient);

  color:#fff;

  font-size:18px;

  font-weight:700;

  cursor:pointer;

  transition:0.4s;

}

.contact-btn:hover{

  transform:translateY(-4px);

  box-shadow:
  0 20px 40px rgba(10,132,255,0.22);

}

.form-message{

  margin-top:18px;

  color:#9ACD32;

  font-weight:600;

  display:none;

}

/* =========================
FOOTER
========================= */

.footer{

  position:relative;

  padding:
  100px
  clamp(30px,6vw,100px)
  30px;

  background:#000;

  overflow:hidden;

}

.footer::before{

  content:"";

  position:absolute;

  top:-180px;
  left:-180px;

  width:360px;
  height:360px;

  background:
  radial-gradient(
    circle,
    rgba(10,132,255,0.16),
    transparent 70%
  );

}

.footer::after{

  content:"";

  position:absolute;

  right:-180px;
  bottom:-180px;

  width:360px;
  height:360px;

  background:
  radial-gradient(
    circle,
    rgba(154,205,50,0.12),
    transparent 70%
  );

}

.footer-container{

  position:relative;

  z-index:2;

  max-width:1450px;

  margin:auto;

  display:grid;

  grid-template-columns:
  1.1fr
  0.7fr
  0.9fr
  1fr;

  gap:60px;

}

.footer-logo{

  display:inline-block;

  margin-bottom:26px;

}

.footer-logo img{

  max-width:240px;

}

.footer-text{

  color:var(--text);

  line-height:1.9;

  margin-bottom:34px;

}

.footer-socials{

  display:flex;

  gap:14px;

}

.footer-socials a{

  width:58px;
  height:58px;

  border-radius:18px;

  background:var(--glass);

  border:1px solid var(--border);

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:22px;

  transition:0.4s;

}

.footer-socials a:hover{

  transform:translateY(-6px);

  background:var(--gradient);

}

.footer-links,
.footer-services,
.footer-contact{

  display:flex;

  flex-direction:column;

}

.footer-links h4,
.footer-services h4,
.footer-contact h4{

  font-size:24px;

  margin-bottom:28px;

}

.footer-links a,
.footer-services a,
.footer-contact a{

  display:flex;

  align-items:flex-start;

  gap:12px;

  color:
  rgba(255,255,255,0.78);

  margin-bottom:18px;

  transition:0.3s;

}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover{

  transform:translateX(5px);

  color:#fff;

}

/* =========================
FOOTER ICONS
========================= */

.footer-services a i,
.footer-contact a i{

  color:var(--blue);

  font-size:18px;

  min-width:18px;

  margin-top:3px;

}

.footer-contact span{

  display:block;

  color:
  rgba(255,255,255,0.48);

  font-size:13px;

  margin-bottom:4px;

}

.footer-contact p{

  color:#fff;

  font-weight:600;

  line-height:1.5;

}

/* =========================
FOOTER BOTTOM
========================= */

.footer-bottom{

  position:relative;

  z-index:2;

  max-width:1450px;

  margin:
  70px auto 0;

  padding-top:24px;

  border-top:
  1px solid var(--border);

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

}

.footer-bottom p{

  color:
  rgba(255,255,255,0.55);

  font-size:14px;

}

.footer-policy{

  display:flex;

  gap:22px;

}

.footer-policy a{

  color:
  rgba(255,255,255,0.55);

  font-size:14px;

  transition:0.3s;

}

.footer-policy a:hover{
  color:#fff;
}

/* =========================
BACK TO TOP
========================= */

.back-top{

  position:fixed;

  right:25px;
  bottom:25px;

  width:58px;
  height:58px;

  border:none;

  border-radius:18px;

  background:var(--gradient);

  color:#fff;

  font-size:24px;

  cursor:pointer;

  z-index:999;

  display:flex;

  align-items:center;

  justify-content:center;

  opacity:0;
  visibility:hidden;

  transition:0.4s;

}

.back-top.active{

  opacity:1;
  visibility:visible;

}

.back-top:hover{

  transform:
  translateY(-6px);

}

/* =========================
SECTION MOTION EFFECTS
========================= */

.services-section::before,
.reviews-section::before,
.contact-section::before{

  content:"";

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  filter:blur(120px);

  opacity:0.12;

}

.services-section::before{

  background:var(--blue);

  top:-180px;
  left:-180px;

}

.reviews-section::before{

  background:var(--green);

  bottom:-180px;
  right:-180px;

}

.contact-section::before{

  background:var(--blue);

  top:-120px;
  right:-180px;

}

/* =========================
GLOBAL HOVER EFFECTS
========================= */

.service-card,
.review-card,
.industry-card,
.contact-form,
.faq-item,
.premium-tag{

  will-change:transform;

}

/* =========================
MOBILE NAVBAR
========================= */

@media(max-width:1100px){

  .navbar{

    width:92%;

    padding:16px 24px;

  }

  .nav-links{

    position:absolute;

    top:100px;
    left:0;

    width:100%;

    background:#0b0b0b;

    border:
    1px solid var(--border);

    border-radius:24px;

    padding:30px;

    flex-direction:column;

    align-items:flex-start;

    gap:24px;

    opacity:0;
    visibility:hidden;

    transform:
    translateY(-20px);

    transition:0.4s;

  }

  .nav-links.active{

    opacity:1;
    visibility:visible;

    transform:
    translateY(0);

  }

  .mobile-menu-btn{
    display:block;
  }

  .nav-btn{
    display:none;
  }

  .dropdown-menu{

    position:relative;

    top:15px;

    opacity:1;
    visibility:visible;

    width:100%;

    display:none;

  }

  .dropdown.active .dropdown-menu{
    display:flex;
  }

  .hero-container,
  .about-container,
  .ecommerce-container,
  .faq-wrapper{

    flex-direction:column;

  }

  .contact-wrapper{

    grid-template-columns:1fr;

  }

  .services-grid,
  .reviews-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

  .footer-container{

    grid-template-columns:
    1fr 1fr;

  }

}

/* =========================
TABLET
========================= */

@media(max-width:768px){

  .section-heading{

    font-size:52px;

    line-height:1.05;

  }

  .hero-heading .line{

    font-size:58px;

  }

  .hero-stats{

    flex-wrap:wrap;

    gap:30px;

  }

  .services-grid,
  .reviews-grid{

    grid-template-columns:1fr;

  }

  .industry-roadmap::before{
    left:20px;
  }

  .industry-item{

    width:100%;

    padding-left:70px;

    padding-right:0;

    left:0 !important;

    text-align:left !important;

  }

  .industry-dot{

    left:10px !important;

    right:auto !important;

  }

  .ecommerce-features{

    grid-template-columns:1fr;

  }

  .footer-container{

    grid-template-columns:1fr;

  }

  .footer-bottom{

    flex-direction:column;

    align-items:flex-start;

  }

  .contact-form h3{

    font-size:40px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:560px){

  .container{
    width:92%;
  }

  .navbar{

    top:12px;

    padding:14px 18px;

  }

  .logo img{
    width:180px;
  }

  .hero{

    padding-top:140px;
  }

  .hero-heading .line{

    font-size:44px;

    letter-spacing:-2px;

  }

  .section-heading{

    font-size:40px;

    letter-spacing:-2px;

  }

  .section-text{

    font-size:16px;

    line-height:1.8;

  }

  .hero-buttons{

    flex-direction:column;

    align-items:flex-start;

  }

  .hero-btn{

    width:100%;

    text-align:center;

  }

  .floating-card{

    display:none;

  }

  .glass-card{

    padding:16px;

  }

  .service-card,
  .review-card,
  .industry-card{

    padding:26px;

  }

  .contact-form{

    padding:28px;

  }

  .faq-question{

    padding:20px;

  }

  .faq-question h3{

    font-size:17px;

  }

  .faq-answer p{

    padding:
    0 20px 20px 20px;

  }

  .footer{

    padding:
    70px 20px 24px;

  }

}

/* ======================================================
POPUP ENQUIRY
====================================================== */

.enquiry-popup{

  position:fixed;

  inset:0;

  z-index:99999;

  display:flex;

  align-items:center;

  justify-content:center;

  opacity:0;

  visibility:hidden;

  transition:0.4s;

}

.enquiry-popup.active{

  opacity:1;

  visibility:visible;

}

/* OVERLAY */

.popup-overlay{

  position:absolute;

  inset:0;

  background:
  rgba(0,0,0,0.7);

  backdrop-filter:blur(8px);

}

/* BOX */

.popup-box{

  position:relative;

  width:90%;

  max-width:520px;

  padding:46px;

  border-radius:34px;

  background:
  rgba(15,15,15,0.96);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(20px);

  z-index:5;

  transform:
  translateY(40px);

  transition:0.4s;

}

.enquiry-popup.active .popup-box{

  transform:
  translateY(0);

}

/* CLOSE */

.popup-close{

  position:absolute;

  top:18px;
  right:18px;

  width:46px;
  height:46px;

  border:none;

  cursor:pointer;

  border-radius:14px;

  background:
  rgba(255,255,255,0.05);

  color:#fff;

  font-size:22px;

}

/* TAG */

.popup-tag{

  display:inline-flex;

  padding:12px 20px;

  border-radius:100px;

  background:
  rgba(154,205,50,0.12);

  border:
  1px solid rgba(154,205,50,0.2);

  color:#9ACD32;

  margin-bottom:24px;

}

/* TEXT */

.popup-box h2{

  font-size:42px;

  line-height:1.1;

  margin-bottom:18px;

}

.popup-box p{

  color:#a1a1aa;

  line-height:1.8;

}

/* INPUT */

.popup-input{

  margin-top:22px;

}

.popup-input input{

  width:100%;

  height:62px;

  border:none;

  outline:none;

  padding:0 22px;

  border-radius:18px;

  background:
  rgba(255,255,255,0.04);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#fff;

  font-size:16px;

}

/* BUTTON */

.popup-submit{

  width:100%;

  height:62px;

  margin-top:24px;

  border:none;

  cursor:pointer;

  border-radius:18px;

  font-size:17px;

  font-weight:700;

  color:#fff;

  background:
  linear-gradient(
    135deg,
    #0A84FF,
    #9ACD32
  );

  transition:0.4s;

}

.popup-submit:hover{

  transform:translateY(-4px);

}

.popup-success{

  margin-top:18px;

  color:#9ACD32;

  font-size:15px;

}