*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#090913;
  color:white;
  overflow-x:hidden;
}

/* ================================= */
/* AKSHRAN PREMIUM LOADER */
/* ================================= */

#loader{

  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:100vh;

  z-index:99999999;

  overflow:hidden;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    135deg,
    #070710,
    #14142b,
    #1d1038,
    #0c0c16
  );
}

/* GLOW BACKGROUND */

.loader-bg{

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(215,76,255,0.25),
    transparent 70%
  );

  animation:pulseGlow 3s infinite ease-in-out;
}

/* PARTICLES */

.particles span{

  position:absolute;

  width:8px;
  height:8px;

  background:#d74cff;

  border-radius:50%;

  box-shadow:
  0 0 10px #d74cff,
  0 0 20px #d74cff;

  animation:particles 6s linear infinite;
}

.particles span:nth-child(1){

  top:15%;
  left:20%;

  animation-delay:0s;
}

.particles span:nth-child(2){

  top:70%;
  left:25%;

  animation-delay:1s;
}

.particles span:nth-child(3){

  top:40%;
  right:20%;

  animation-delay:2s;
}

.particles span:nth-child(4){

  bottom:15%;
  right:30%;

  animation-delay:3s;
}

.particles span:nth-child(5){

  top:20%;
  right:40%;

  animation-delay:4s;
}

/* MAIN CONTENT */

.loader-content{

  position:relative;

  z-index:10;

  text-align:center;

  animation:fadeIn 1.2s ease;
}

/* LOGO RING */

.logo-ring{

  width:180px;
  height:180px;

  margin:auto;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    135deg,
    #5b7cff,
    #d74cff,
    #ff5fd1
  );

  padding:5px;

  animation:
  rotateRing 6s linear infinite,
  floating 3s ease-in-out infinite;

  box-shadow:
  0 0 40px rgba(215,76,255,0.5),
  0 0 80px rgba(91,124,255,0.3);
}

/* LOGO */

.logo-ring img{

  width:100%;
  height:100%;

  object-fit:cover;

  border-radius:50%;

  background:#111;
}

/* TITLE */

.loader-content h1{

  margin-top:35px;

  font-size:65px;

  font-weight:800;

  letter-spacing:5px;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #ff5fd1
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  text-shadow:
  0 0 20px rgba(215,76,255,0.3);
}

/* SUBTITLE */

.loader-content p{

  margin-top:10px;

  color:#ddd;

  letter-spacing:6px;

  font-size:15px;
}

/* LOADING BAR */

.loading-bar{

  width:320px;
  height:10px;

  margin:35px auto 20px;

  background:#1f1f33;

  border-radius:30px;

  overflow:hidden;

  box-shadow:
  inset 0 0 10px rgba(0,0,0,0.5);
}

.loading-bar span{

  display:block;

  height:100%;

  width:0%;

  border-radius:30px;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #d74cff,
    #ff5fd1
  );

  box-shadow:
  0 0 20px rgba(215,76,255,0.6);

  animation:loading 3s linear forwards;
}

/* LOADING TEXT */

.loading-text{

  color:#aaa;

  font-size:15px;

  letter-spacing:3px;

  animation:blink 1.5s infinite;
}

/* ================================= */
/* ANIMATIONS */
/* ================================= */

@keyframes loading{

  0%{
    width:0%;
  }

  100%{
    width:100%;
  }

}

@keyframes floating{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes rotateRing{

  0%{
    transform:rotate(0deg);
  }

  100%{
    transform:rotate(360deg);
  }

}

@keyframes pulseGlow{

  0%{
    transform:scale(1);
    opacity:0.5;
  }

  50%{
    transform:scale(1.2);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:0.5;
  }

}

@keyframes fadeIn{

  from{
    opacity:0;
    transform:scale(0.8);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes blink{

  0%{
    opacity:0.3;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:0.3;
  }

}

@keyframes particles{

  0%{
    transform:translateY(0px);
    opacity:0;
  }

  50%{
    opacity:1;
  }

  100%{
    transform:translateY(-120px);
    opacity:0;
  }

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:768px){

  .logo-ring{

    width:140px;
    height:140px;
  }

  .loader-content h1{

    font-size:42px;
  }

  .loader-content p{

    font-size:11px;

    letter-spacing:3px;
  }

  .loading-bar{

    width:250px;
  }

}

/* ================================= */
/* APPOINTMENT SECTION */
/* ================================= */

.appointment-section{

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #0d0d17,
    #15152c,
    #1e1036
  );
}

.appointment-wrapper{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:50px;

  align-items:center;
}

.appointment-left h2{

  font-size:52px;

  line-height:1.2;

  margin:20px 0;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #ff5fd1
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.appointment-left p{

  color:#ddd;

  line-height:1.9;

  margin-bottom:35px;
}

.appointment-tag{

  display:inline-block;

  padding:10px 25px;

  border-radius:30px;

  background:
  rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.1);

  color:#ff73e2;

  font-size:14px;

  letter-spacing:2px;
}

.appointment-features{

  display:flex;

  flex-direction:column;

  gap:18px;
}

.feature{

  display:flex;

  align-items:center;

  gap:15px;

  font-size:17px;

  color:#eee;
}

.feature i{

  color:#d74cff;
}

/* FORM */

.appointment-right{

  background:
  rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.1);

  backdrop-filter:blur(15px);

  padding:45px;

  border-radius:30px;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.3);
}

.input-group{

  margin-bottom:22px;
}

.input-group label{

  display:block;

  margin-bottom:10px;

  color:#ddd;

  font-size:15px;
}

.input-group input,
.input-group textarea{

  width:100%;

  padding:16px;

  border:none;

  border-radius:16px;

  background:#1d1d34;

  color:white;

  outline:none;

  font-size:15px;
}

.input-group input:focus,
.input-group textarea:focus{

  border:1px solid #d74cff;
}

.appointment-btn{

  width:100%;

  padding:17px;

  border:none;

  border-radius:18px;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #d74cff,
    #ff5fd1
  );

  color:white;

  font-size:17px;

  cursor:pointer;

  transition:0.4s;
}

.appointment-btn:hover{

  transform:translateY(-3px);

  box-shadow:
  0 15px 30px rgba(215,76,255,0.3);
}

/* ================================= */
/* SUCCESS POPUP */
/* ================================= */

.appointment-success{

  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:100vh;

  display:none;

  justify-content:center;
  align-items:center;

  background:
  rgba(0,0,0,0.75);

  z-index:999999;

  backdrop-filter:blur(10px);
}

.success-card{

  width:90%;
  max-width:520px;

  background:
  linear-gradient(
    135deg,
    #121223,
    #1b1b36,
    #2a1245
  );

  padding:50px;

  border-radius:35px;

  text-align:center;

  border:1px solid rgba(255,255,255,0.1);

  box-shadow:
  0 20px 60px rgba(215,76,255,0.25);

  animation:successPopup 0.5s ease;
}

.success-animation{

  width:110px;
  height:110px;

  margin:auto;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #d74cff
  );

  margin-bottom:30px;

  animation:successPulse 2s infinite;
}

.success-animation i{

  font-size:55px;

  color:white;
}

.success-card h2{

  font-size:34px;

  margin-bottom:25px;

  color:#ff73e2;
}

.success-card p{

  color:#ddd;

  line-height:1.9;

  margin-bottom:35px;
}

.success-card button{

  padding:15px 40px;

  border:none;

  border-radius:35px;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #d74cff
  );

  color:white;

  font-size:16px;

  cursor:pointer;
}

/* ANIMATIONS */

@keyframes successPopup{

  from{

    opacity:0;
    transform:scale(0.7);

  }

  to{

    opacity:1;
    transform:scale(1);

  }

}

@keyframes successPulse{

  0%{

    transform:scale(1);

  }

  50%{

    transform:scale(1.08);

  }

  100%{

    transform:scale(1);

  }

}

/* MOBILE */

@media(max-width:900px){

  .appointment-wrapper{

    grid-template-columns:1fr;
  }

  .appointment-left h2{

    font-size:38px;
  }

}

/* NAVBAR */

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;

  transition: transform 0.4s ease;
  
  padding:18px 8%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(10,10,20,0.75);

  backdrop-filter:blur(15px);
}

.logo-box{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-box img{
  width:65px;
  height:65px;
  border-radius:50%;
}

.logo-box h2{
  color:#d06cff;
  font-size:28px;
}

.logo-box p{
  color:#e7c0ff;
  font-size:12px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  transition:0.3s;
  font-weight:500;
}

nav a:hover{
  color:#d06cff;
}

/* HERO SECTION */

.hero{
  height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
  padding:20px;

  background:
  linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1800&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:850px;
}

.hero h1{
  font-size:70px;
  line-height:1.2;
  margin-bottom:25px;

  background:
  linear-gradient(to right,#5b7cff,#ff4fd8);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  color:#ddd;
  font-size:18px;
  margin-bottom:40px;
}

.btn{
  display:inline-block;

  padding:16px 40px;

  border-radius:40px;

  text-decoration:none;

  background:
  linear-gradient(to right,#5b7cff,#d74cff);

  color:white;
  font-weight:600;

  transition:0.4s;
}

.btn:hover{
  transform:scale(1.05);
}

/* COMMON */

.section{
  padding:100px 8%;
}

.dark{
  background:#111122;
}

.container h2{
  text-align:center;
  font-size:45px;
  margin-bottom:60px;
  color:#e06cff;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-grid img{
  width:100%;
  border-radius:25px;
}

.about-grid p{
  margin-bottom:20px;
  color:#ddd;
  line-height:1.8;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(300px,1fr));

  gap:30px;
}

.service-card{
  background:#1b1b31;

  border-radius:25px;

  overflow:hidden;

  transition:0.4s;

  border:1px solid rgba(255,255,255,0.1);
}

.service-card:hover{
  transform:translateY(-12px);
}

.service-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.service-card h3{
  padding:25px 25px 10px;
  font-size:24px;
}

.service-card p{
  padding:0 25px 25px;
  color:#ddd;
}

/* PACKAGES */

.pricing-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(300px,1fr));

  gap:30px;
}

.pricing-card{
  position:relative;

  background:#16162a;

  border-radius:25px;

  padding:40px;

  text-align:center;

  border:1px solid rgba(255,255,255,0.1);

  transition:0.4s;
}

.pricing-card:hover{
  transform:translateY(-10px);
}

.featured{
  border:2px solid #d74cff;
  transform:scale(1.03);
}

.tag{
  position:absolute;

  top:15px;
  right:15px;

  background:#d74cff;

  color:white;

  padding:5px 12px;

  border-radius:20px;

  font-size:12px;
}

.price{
  font-size:42px;

  margin:20px 0;

  color:#ff73e2;

  font-weight:700;
}

.pricing-card ul{
  list-style:none;
}

.pricing-card li{
  margin:15px 0;
  color:#ddd;
}

.package-btn{
  display:inline-block;

  margin-top:25px;

  padding:14px 30px;

  border-radius:30px;

  text-decoration:none;

  color:white;

  background:
  linear-gradient(to right,#5b7cff,#d74cff);

  transition:0.4s;
}

.package-btn:hover{
  transform:scale(1.05);
}

/* CONTACT */

.contact-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:25px;
}

.contact-card{
  background:#1a1a2e;

  padding:40px;

  border-radius:25px;

  text-align:center;
}

.contact-card i{
  font-size:40px;

  margin-bottom:20px;

  color:#d74cff;
}

.contact-card h3{
  margin-bottom:15px;
}

/* FLOATING BUTTONS */

.floating-buttons{
  position:fixed;

  right:25px;
  bottom:25px;

  z-index:9999;

  display:flex;
  flex-direction:column;

  gap:15px;
}

.float-btn{
  width:65px;
  height:65px;

  border:none;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:28px;

  color:white;

  cursor:pointer;

  text-decoration:none;

  box-shadow:0 10px 25px rgba(0,0,0,0.3);

  animation:float 2s infinite ease-in-out;
}

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

.whatsapp-btn{
  background:#25D366;
}

.support-btn{
  background:
  linear-gradient(to right,#5b7cff,#d74cff);
}

.quotation-btn{
  background:
  linear-gradient(to right,#ff4f81,#ff7d4f);
}

.success-popup{

  display:none;

  position:fixed;

  left:0;
  top:0;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.75);

  z-index:999999;

  justify-content:center;
  align-items:center;

  backdrop-filter:blur(10px);
}

.success-box{

  width:90%;
  max-width:450px;

  background:
  linear-gradient(
    135deg,
    #111122,
    #1c1c35,
    #2d1245
  );

  border:2px solid #d74cff;

  padding:45px;

  border-radius:30px;

  text-align:center;

  box-shadow:
  0 20px 60px rgba(215,76,255,0.3);

  animation:popupScale 0.4s ease;
}

@keyframes popupScale{

  from{
    transform:scale(0.7);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }

}

.success-icon{

  width:90px;
  height:90px;

  margin:auto;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #d74cff
  );

  margin-bottom:25px;
}

.success-icon i{

  font-size:42px;
  color:white;
}

.success-box h2{

  font-size:32px;

  margin-bottom:20px;

  color:#ff7df0;
}

.success-box p{

  color:#ddd;

  line-height:1.8;

  margin-bottom:30px;
}

.success-box button{

  padding:14px 35px;

  border:none;

  border-radius:30px;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #d74cff
  );

  color:white;

  font-size:16px;

  cursor:pointer;

  transition:0.4s;
}

.success-box button:hover{

  transform:scale(1.05);
}

/* POPUP */

.popup{
  display:none;

  position:fixed;

  z-index:99999;

  left:0;
  top:0;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.7);
}

.popup-content{
  width:90%;
  max-width:500px;

  background:#16162a;

  margin:6% auto;

  padding:40px;

  border-radius:25px;

  position:relative;
}

.close{
  position:absolute;

  right:25px;
  top:15px;

  font-size:35px;

  cursor:pointer;
}

.popup-content h2{
  margin-bottom:30px;
  color:#ff73e2;
}

.popup-content form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.popup-content input,
.popup-content textarea{

  width:100%;

  padding:15px;

  border:none;

  border-radius:15px;

  background:#24243b;

  color:white;

  outline:none;
}

.popup-content button{

  padding:15px;

  border:none;

  border-radius:15px;

  background:
  linear-gradient(to right,#5b7cff,#d74cff);

  color:white;

  cursor:pointer;

  font-weight:600;

  transition:0.4s;
}

.popup-content button:hover{
  transform:scale(1.03);
}

/* FOOTER */

footer{
  background:#08080f;

  text-align:center;

  padding:25px;

  color:#999;
}

/* ================================= */
/* ANIMATED STATISTICS SECTION */
/* ================================= */

.stats-section{

  position:relative;

  padding:120px 8%;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #0c0c16,
    #16162d,
    #241040
  );
}

/* BACKGROUND CIRCLES */

.stats-bg-circle{

  position:absolute;

  border-radius:50%;

  filter:blur(100px);

  opacity:0.25;
}

.stats-circle-1{

  width:350px;
  height:350px;

  background:#d74cff;

  top:-100px;
  left:-100px;

  animation:floatCircle 8s infinite ease-in-out;
}

.stats-circle-2{

  width:300px;
  height:300px;

  background:#5b7cff;

  bottom:-100px;
  right:-100px;

  animation:floatCircle 10s infinite ease-in-out;
}

/* TITLE */

.stats-title{

  text-align:center;

  max-width:850px;

  margin:auto auto 70px;
}

.stats-title span{

  display:inline-block;

  padding:10px 25px;

  border-radius:30px;

  background:
  rgba(255,255,255,0.08);

  border:
  1px solid rgba(255,255,255,0.1);

  color:#ff73e2;

  font-size:14px;

  letter-spacing:2px;

  margin-bottom:25px;
}

.stats-title h2{

  font-size:55px;

  line-height:1.2;

  margin-bottom:25px;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #ff5fd1
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.stats-title p{

  color:#ddd;

  line-height:1.9;

  font-size:17px;
}

/* GRID */

.stats-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:35px;
}

/* CARD */

.stats-card{

  position:relative;

  overflow:hidden;

  background:
  rgba(255,255,255,0.06);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(15px);

  border-radius:35px;

  padding:45px 30px;

  text-align:center;

  transition:0.5s;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.25);
}

/* GLOW EFFECT */

.stats-card::before{

  content:"";

  position:absolute;

  width:180px;
  height:180px;

  background:
  radial-gradient(
    circle,
    rgba(215,76,255,0.35),
    transparent 70%
  );

  top:-50px;
  right:-50px;

  transition:0.5s;
}

.stats-card:hover{

  transform:
  translateY(-12px)
  scale(1.03);

  border:
  1px solid rgba(215,76,255,0.35);

  box-shadow:
  0 25px 60px rgba(215,76,255,0.2);
}

.stats-card:hover::before{

  transform:scale(1.3);
}

/* ICON */

.stats-icon{

  width:95px;
  height:95px;

  margin:auto;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    135deg,
    #5b7cff,
    #d74cff,
    #ff5fd1
  );

  margin-bottom:30px;

  box-shadow:
  0 15px 35px rgba(215,76,255,0.35);

  animation:iconPulse 3s infinite;
}

.stats-icon i{

  font-size:40px;

  color:white;
}

/* NUMBER */

.stats-card h3{

  font-size:58px;

  margin-bottom:15px;

  font-weight:800;

  background:
  linear-gradient(
    to right,
    #5b7cff,
    #ff5fd1
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

/* TEXT */

.stats-card p{

  color:#ddd;

  font-size:18px;

  letter-spacing:1px;
}

/* ANIMATIONS */

@keyframes iconPulse{

  0%{

    transform:scale(1);

  }

  50%{

    transform:scale(1.08);

  }

  100%{

    transform:scale(1);

  }

}

@keyframes floatCircle{

  0%{

    transform:translateY(0px);

  }

  50%{

    transform:translateY(-25px);

  }

  100%{

    transform:translateY(0px);

  }

}

/* MOBILE */

@media(max-width:768px){

  .stats-title h2{

    font-size:38px;
  }

  .stats-card h3{

    font-size:46px;
  }

}

/* ================================= */
/* OUR PROCESS SECTION */
/* ================================= */

.process-section{

    background:
    linear-gradient(
        135deg,
        #0d0d18,
        #14142b,
        #1e1036
    );

    position:relative;

    overflow:hidden;
}

/* GRID */

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:35px;
}

/* CARD */

.process-card{

    position:relative;

    padding:40px 30px;

    border-radius:28px;

    background:
    rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    overflow:hidden;

    transition:0.5s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25);
}

/* ANIMATED GLOW */

.process-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:28px;

    padding:1.5px;

    background:
    linear-gradient(
        135deg,
        #5b7cff,
        #7c3aed,
        #d74cff,
        #ff4fd8
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    animation:borderGlow 4s linear infinite;
}

/* HOVER */

.process-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    box-shadow:
    0 0 30px rgba(215,76,255,0.35),
    0 0 60px rgba(91,124,255,0.2);
}

/* STEP NUMBER */

.process-number{

    position:absolute;

    top:20px;
    right:25px;

    font-size:65px;

    font-weight:800;

    color:rgba(255,255,255,0.05);
}

/* ICON */

.process-icon{

    width:75px;
    height:75px;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    background:
    linear-gradient(
        to right,
        #5b7cff,
        #d74cff
    );

    box-shadow:
    0 10px 25px rgba(215,76,255,0.35);

    animation:floatIcon 3s ease-in-out infinite;
}

.process-icon i{

    font-size:32px;

    color:white;
}

/* TITLE */

.process-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:white;
}

/* TEXT */

.process-card p{

    color:#dcdcdc;

    line-height:1.9;

    font-size:15px;
}

/* ICON FLOAT */

@keyframes floatIcon{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

}

/* BORDER ANIMATION */

@keyframes borderGlow{

    100%{
        filter:hue-rotate(360deg);
    }

}

/* MOBILE */

@media(max-width:768px){

    .process-card{

        padding:35px 25px;
    }

    .process-card h3{

        font-size:24px;
    }

}

/* ================================= */
/* PREMIUM SCROLL PROGRESS BAR */
/* ================================= */

/* CONTAINER */

.scroll-progress-container{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:
    rgba(255,255,255,0.03);

    z-index:9999999;

    backdrop-filter:blur(10px);
}

/* BAR */

.scroll-progress-bar{

    width:0%;
    height:100%;

    border-radius:0 20px 20px 0;

    background:
    linear-gradient(
        to right,
        #5b7cff,
        #7c3aed,
        #d74cff,
        #ff4fd8
    );

    box-shadow:
    0 0 10px #5b7cff,
    0 0 20px #7c3aed,
    0 0 30px #d74cff,
    0 0 50px #ff4fd8;

    transition:width 0.15s linear;
}

/* ANIMATED GLOW */

.scroll-progress-bar::after{

    content:'';

    position:absolute;

    right:0;
    top:0;

    width:80px;
    height:100%;

    background:
    rgba(255,255,255,0.4);

    filter:blur(12px);
}

/* HIDE MENU ON MOBILE */

@media (max-width: 900px) {

    nav {
        display: none !important;
    }

}

@media (max-width:900px){
   .desktop-menu{
      display:none !important;
   }
}

/* MOBILE */

@media(max-width:900px){

  header{
    flex-direction:column;
    gap:20px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  nav a{
    margin:10px;
  }

  .hero h1{
    font-size:42px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

}
