@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url(font-awesome.min.css);
@import url(bootstrap.min.css);

:root{
  --dark:#0f172a;
  --dark2:#1e293b;
  --text:#334155;
  --muted:#64748b;
  --line:#e2e8f0;
  --white:#ffffff;
  --paper:#f8fafc;
  --primary:#0ea5a4;
  --blue:#2563eb;
  --orange:#f59e0b;
  --shadow:0 18px 40px rgba(0,0,0,.08);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--paper);
  color:var(--text);
  line-height:1.7;
}

a {
  text-decoration:none!important;
}

.section-padding{
  padding:100px 0;
}

.section-title{
  font-size:clamp(2rem,5vw,3.4rem);
  font-weight:900;
  line-height:1.1;
  margin-bottom:20px;
  color:var(--dark);
}

.section-subtitle{
  display:inline-block;
  color:var(--primary);
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:14px;
}

.section-copy{
  max-width:700px;
  color:var(--muted);
}

.btn-main{
  min-height:50px;
  padding:0 28px;
  border-radius:8px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:.3s;
}

.btn-primary-custom{
  background:var(--primary);
  color:var(--white);
}

.btn-primary-custom:hover{
  background:#0b8f8e;
  color:white;
  transform:translateY(-2px);
}

.btn-outline-custom{
  border:1px solid rgba(255,255,255,.5);
  color:white;
}

.btn-outline-custom:hover{
  background:white;
  color:var(--dark);
}

.navbar-custom{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  padding:18px 0;
  transition:.3s;
  background:rgba(15,23,42,.2);
}

.navbar-custom.scrolled{
  background:rgba(15,23,42,.95);
  backdrop-filter:blur(10px);
  padding:10px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.navbar-brand{
  font-weight:900;
  font-size:1.5rem;
  color:white!important;
}

.brand-box{
  width:42px;
  height:42px;
  background:var(--primary);
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
}

.nav-link{
  color:rgba(255,255,255,.8)!important;
  font-weight:700;
  margin-left:10px;
}

.nav-link:hover{
  color:white!important;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  color:white;
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(rgba(15,23,42,.88),rgba(15,23,42,.85)),
   url("/assets/images/default/codebg.png");
  background-size:cover;
  background-position:center;
}

.hero h1{
  font-size:clamp(3rem,8vw,6.5rem);
  font-weight:900;
  line-height:.95;
  margin-top: 90px !important;
  margin:20px 0;
}

.hero h1 span{
  color:#5eead4;
}

.hero p{
  max-width:700px;
  font-size:1.1rem;
  color:rgba(255,255,255,.8);
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-box{
  margin-top:45px;
  border-radius:10px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  max-width:700px;
}

.hero-top{
  height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.hero-code{
  padding:22px;
  font-family:Consolas;
  color:#d1fae5;
}

.stats{
  margin-top:-50px;
  position:relative;
  z-index:20;
}

.stat-box{
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:var(--shadow);
  text-align:center;
  height:100%;
}

.stat-box i{
  width:60px;
  height:60px;
  background:var(--primary);
  color:white;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  font-size:1.4rem;
}

.stat-box h2{
  font-size:2rem;
  font-weight:900;
}

.about-card,
.service-card,
.portfolio-card,
.team-card,
.testimonial-card,
.pricing-card{
  background:white;
  border-radius:10px;
  border:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.3s;
}

.about-card:hover,
.service-card:hover,
.portfolio-card:hover,
.team-card:hover,
.testimonial-card:hover,
.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.about-card{
  padding:40px;
}

.about-list{
  list-style:none;
  margin-top:30px;
}

.about-list li{
  margin-bottom:14px;
  font-weight:600;
}

.about-list i{
  color:var(--primary);
  margin-right:10px;
}

.service-card{
  padding:35px;
  height:100%;
}

.service-icon{
  width:60px;
  height:60px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  background:var(--primary);
  font-size:1.4rem;
  margin-bottom:25px;
}

.service-card h3{
  font-size:1.2rem;
  font-weight:800;
  margin-bottom:12px;
}

.service-card p{
  color:var(--muted);
}

.feature-section{
  background:#111827;
  color:white;
}

.feature-section .section-title{
  color:white;
}

.feature-section .section-copy{
  color:rgba(255,255,255,.7);
}

.code-box{
  background:#0f172a;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
}

.code-header{
  padding:15px 20px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.code-content{
  padding:25px;
  font-family:Consolas;
  color:#dbeafe;
}

.portfolio-card{
  overflow:hidden;
}

.portfolio-image{
  height:240px;
  background-size:cover;
  background-position:center;
}

.portfolio-body{
  padding:25px;
}

.portfolio-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.portfolio-tags span{
  padding:6px 14px;
  border-radius:30px;
  background:var(--paper);
  font-size:.8rem;
  font-weight:700;
}

.team-card{
  overflow:hidden;
  text-align:center;
}

.team-image{
  height:300px;
  background-size:cover;
  background-position:center;
}

.team-body{
  padding:25px;
}

.team-role{
  color:var(--primary);
  font-weight:700;
  margin:10px 0;
}

.team-socials{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.team-socials a{
  width:38px;
  height:38px;
  border-radius:8px;
  background:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dark);
}

.team-socials a:hover{
  background:var(--primary);
  color:white;
}

.process-box{
  display:flex;
  gap:20px;
  margin-bottom:35px;
}

.process-number{
  width:55px;
  height:55px;
  background:var(--primary);
  color:white;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.testimonial-card{
  padding:35px;
}

.stars{
  color:var(--orange);
  margin-bottom:18px;
}

.pricing-card{
  padding:35px;
  height:100%;
}

.price{
  font-size:2.5rem;
  font-weight:900;
  margin:20px 0;
}

.price span{
  font-size:1rem;
  color:var(--muted);
}

.price-list{
  list-style:none;
  margin-top:25px;
}

.price-list li{
  margin-bottom:14px;
}

.price-list i{
  color:green;
  margin-right:10px;
}

.contact-section{
  background:#0f172a;
  color:white;
}

.contact-section .section-title{
  color:white;
}

.contact-box{
  background:white;
  border-radius:10px;
  padding:35px;
  color:var(--text);
}

.contact-item{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.contact-item i{
  width:45px;
  height:45px;
  background:var(--primary);
  color:white;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.form-control{
  min-height:52px;
  border-radius:8px;
}

textarea.form-control{
  min-height:140px;
}

.footer{
  background:#020617;
  color:rgba(255,255,255,.7);
  padding:30px 0;
}

.footer-brand{
  color:white;
  font-weight:900;
}

.social-links{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.social-links a{
  width:40px;
  height:40px;
  border-radius:8px;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
}

.social-links a:hover{
  background:var(--primary);
}

.back-top{
  position:fixed;
  right:20px;
  bottom:20px;
  width:45px;
  height:45px;
  border:none;
  border-radius:10px;
  background:var(--primary);
  color:white;
  display:none;
  z-index:999;
}

@media(max-width:991px){

  .navbar-collapse{
    background:#0f172a;
    padding:20px;
    border-radius:10px;
    margin-top:15px;
  }

  .hero{
    text-align:center;
  }

  .social-links{
    justify-content:flex-start;
    margin-top:20px;
  }
}