/*==================================================
    WEBPILOT PORTFOLIO
    Author : WebPilot
==================================================*/

/*-----------------------------
Google Fonts
------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap");

/*-----------------------------
Variables
------------------------------*/
:root {
  --primary: #2563eb;
  --secondary: #06b6d4;

  --bg: #050816;
  --bg-light: #0d1228;
  --card: #101935;

  --white: #ffffff;
  --text: #b6bfd6;

  --border: rgba(255, 255, 255, 0.08);

  --gradient: linear-gradient(135deg, #2563eb, #06b6d4);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  --radius: 18px;

  --transition: 0.35s ease;
}

/*-----------------------------
Reset
------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);

  color: var(--white);

  font-family: "Manrope", sans-serif;

  overflow-x: hidden;
}

/*-----------------------------
Scrollbar
------------------------------*/

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-track {
  background: #070b18;
}

/*-----------------------------
Selection
------------------------------*/

::selection {
  background: var(--primary);

  color: #fff;
}

/*-----------------------------
Typography
------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Syne", sans-serif;

  font-weight: 700;
}

a {
  text-decoration: none;
}

img {
  width: 100%;

  display: block;
}

section {
  position: relative;
}

/*==================================================
NAVBAR
==================================================*/

.custom-nav {
  padding: 20px 0;

  transition: 0.4s;

  z-index: 999;
}

.custom-nav.scrolled {
  background: rgba(5, 8, 22, 0.75);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  padding: 14px 0;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.logo span {
  color: var(--secondary);
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  color: #c8d0e7;

  font-weight: 600;

  transition: 0.3s;

  position: relative;
}
.nav-link.active
{
  color: aqua!important;
}
.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--secondary);

  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-start {
  padding: 14px 28px;

  border-radius: 50px;

  background: var(--gradient);

  color: #fff;

  font-weight: 700;

  transition: 0.3s;

  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
}

.btn-start:hover {
  transform: translateY(-4px);

  color: #fff;
}

/*==================================================
HERO
==================================================*/

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: visible;

  position: relative;

  padding-top: 120px;
}

/* Background Glow */

.hero::before {
  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  border-radius: 50%;

  background: #2563eb;

  filter: blur(220px);

  opacity: 0.18;

  top: -200px;

  right: -120px;
}

.hero::after {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: #06b6d4;

  filter: blur(180px);

  opacity: 0.12;

  bottom: -120px;

  left: -80px;
}

.hero-small {
  color: var(--secondary);

  text-transform: uppercase;

  letter-spacing: 4px;

  font-size: 14px;

  margin-bottom: 18px;
}

.hero-title {
  font-size: 74px;

  line-height: 1.08;

  margin-bottom: 25px;

  letter-spacing: -2px;
}

.hero-title span {
  background: var(--gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.typing-text {
  font-size: 28px;

  color: #82d8ff;

  margin-bottom: 25px;

  min-height: 45px;
}

.hero-desc {
  color: var(--text);

  font-size: 18px;

  line-height: 1.9;

  max-width: 540px;
}

/*==================================================
Buttons
==================================================*/

.hero-buttons {
  margin-top: 45px;

  display: flex;

  gap: 20px;
}

.btn-primary-custom {
  padding: 18px 38px;

  border-radius: 60px;

  background: var(--gradient);

  color: #fff;

  font-weight: 700;

  transition: 0.35s;

  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
}

.btn-primary-custom:hover {
  transform: translateY(-6px);

  color: #fff;
}

.btn-outline-custom {
  padding: 18px 38px;

  border-radius: 60px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #fff;

  transition: 0.35s;
}

.btn-outline-custom:hover {
  background: #fff;

  color: #111;
}

/*==================================================
Stats
==================================================*/

.hero-stats {
  display: flex;
  gap: 70px;
  margin-top: 70px;
  padding: 10px;
}

.hero-stats h2 {
  font-size: 42px;
  margin-bottom: 8px;
}

.hero-stats span {
  color: #98a4c7;
}
.stats {
  box-shadow: rgba(255, 255, 255, 255) 0px 5px 15px;
  padding: 10px;
  border-radius: 10px;
}

/*==================================================
Browser Window
==================================================*/

.browser-window {
  background: hsl(229, 51%, 10%);
  max-height: 400px !important;
  width: 90%;
  border-radius: 22px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: var(--shadow);

  /* transform: rotate(-4deg);

  animation: float 5s ease-in-out infinite; */
}

.browser-window:hover {
  transform: rotate(0deg) scale(1.02);
}

.browser-top {
  padding: 16px 20px;

  background: #151d3d;

  display: flex;

  gap: 10px;
}

.dot {
  width: 12px;

  height: 12px;

  border-radius: 50%;
}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbd2f;
}

.green {
  background: #27c93f;
}

.browser-body {
  padding: 18px;
}

.browser-body img {
  border-radius: 12px;
  width: 100%;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

/*==================================================
Scroll Indicator
==================================================*/

.scroll-down {
  position: absolute;

  bottom: 35px;

  left: 50%;

  transform: translateX(-50%);

  animation: bounce 2s infinite;

  font-size: 22px;

  color: #fff;
}

/*==================================================
Animations
==================================================*/

@keyframes float {
  0% {
    transform: translateY(0px) rotate(-4deg);
  }

  50% {
    transform: translateY(-18px) rotate(-2deg);
  }

  100% {
    transform: translateY(0px) rotate(-4deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 12px);
  }
}

/*==================================================
ABOUT
==================================================*/

.about {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #2563eb;
  filter: blur(180px);
  opacity: 0.08;
  top: 0;
  left: -120px;
}

.section-tag {
  color: var(--secondary);
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
}

.section-title {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: var(--text);
  line-height: 2;
  font-size: 17px;
  margin-bottom: 35px;
}

.about-image {
  position: relative;
  width: 90%;
}

.about-image img {
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.floating-card h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

.floating-card p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
}

.card-one {
  top: 35px;
  left: -35px;
}

.card-two {
  bottom: 35px;
  right: -30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}

.feature-item i {
  color: var(--secondary);
  font-size: 20px;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 42px;
  }

  .card-one,
  .card-two {
    position: static;
    margin-top: 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/*==================================================
SERVICES
==================================================*/

.services {
  padding: 120px 0;
  background: var(--bg-light);
}

.section-description {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--text);
  line-height: 1.9;
}

.service-card {
  height: 100%;
  padding: 40px 35px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--gradient);

  transform: scaleX(0);

  transition: 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);

  border-color: rgba(37, 99, 235, 0.5);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.active-card {
  border-color: rgba(37, 99, 235, 0.5);
}

.service-icon {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--gradient);

  color: #fff;

  font-size: 30px;

  margin-bottom: 25px;
}

.service-card h4 {
  margin-bottom: 18px;

  font-size: 28px;
}

.service-card p {
  color: var(--text);

  line-height: 1.9;

  margin-bottom: 25px;
}

.service-card a {
  color: var(--secondary);

  font-weight: 700;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  transition: 0.3s;
}

.service-card:hover a {
  gap: 18px;
}

/*==================================================
PROCESS
==================================================*/

.process {
  padding: 120px 0;

  background: var(--bg);

  position: relative;
}

.process-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  margin-top: 70px;
}

.process-line {
  position: absolute;

  top: 55px;

  left: 10%;

  width: 80%;

  height: 2px;

  background: linear-gradient(to right, #2563eb, #06b6d4);

  z-index: 0;
}

.process-card {
  position: relative;

  z-index: 2;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  padding: 35px;

  text-align: center;

  transition: 0.4s;

  backdrop-filter: blur(15px);
}

.process-card:hover {
  transform: translateY(-12px);

  border-color: #2563eb;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.step-number {
  position: absolute;

  top: 18px;

  right: 20px;

  font-size: 42px;

  font-weight: 800;

  color: rgba(255, 255, 255, 0.05);

  font-family: "Syne", sans-serif;
}

.step-icon {
  width: 80px;

  height: 80px;

  margin: auto;

  border-radius: 20px;

  background: var(--gradient);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 30px;

  margin-bottom: 25px;
}

.process-card h4 {
  margin-bottom: 20px;

  font-size: 28px;
}

.process-card p {
  color: var(--text);

  line-height: 1.9;
}

@media (max-width: 992px) {
  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }
}

/*==================================================
PROJECTS
==================================================*/

.projects {
  padding: 120px 0;

  background: var(--bg-light);
}

.project-card {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  height: 350px;

  cursor: pointer;
}

.project-card.large {
  height: 350px;
}

.project-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.7s;
}

.project-overlay {
  position: absolute;

  inset: 0;

  padding: 40px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.15));

  transform: translateY(100%);

  transition: 0.5s;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay span {
  color: var(--secondary);

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 10px;
}

.project-overlay h3 {
  font-size: 34px;

  margin-bottom: 15px;
}

.project-overlay p {
  color: #d4d9eb;

  line-height: 1.8;

  margin-bottom: 20px;
}

.project-btn {
  display: inline-flex;

  gap: 10px;

  align-items: center;

  color: #fff;

  font-weight: 700;
}

.project-btn:hover {
  color: var(--secondary);
}

/*==================================================
PROJECTS
==================================================*/

.projects {
  padding: 120px 0;
  background: var(--bg-light);
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 350px;
  background: #101935; /* fallback if image is missing */
  /* border:1px solid rgba(255,255,255,.08); */
  border: 2px solid #fff;
}

.project-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.3),
    transparent
  );
  color: #fff;
}

.project-overlay h3 {
  margin: 10px 0;
}

.project-btn {
  display: inline-block;
  margin-top: 15px;
  color: #06b6d4;
}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us {
  padding: 120px 0;
  background: var(--bg);
}

.why-text {
  color: var(--text);
  line-height: 1.9;
  margin: 25px 0 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #fff;
}

.why-item i {
  color: var(--secondary);
  font-size: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  padding: 35px;

  text-align: center;

  transition: 0.4s;

  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-10px);

  border-color: var(--primary);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.stat-card i {
  width: 70px;
  height: 70px;

  background: var(--gradient);

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 28px;

  margin: auto auto 25px;
}

.stat-card h3 {
  font-size: 42px;

  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text);

  line-height: 1.8;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */

.cta-section {
  padding: 100px 0;
  overflow: hidden;
}

.cta-box {
  position: relative;
  background: #111111;
  border-radius: 30px;
  padding: 70px 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.cta-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 20px;
}

.cta-content h2 {
  font-size: 48px;
  line-height: 1.2;
  font-family: "Syne", sans-serif;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  color: #b5b5b5;
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 35px;
}

/* Buttons */

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-btn {
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #ffffff;
  color: #000;
}

.primary-btn:hover {
  transform: translateY(-5px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #000;
}

/* Glow Animation */

.cta-shape {
  position: absolute;
  width: 450px;
  height: 450px;
  right: -150px;
  top: -150px;
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  filter: blur(120px);
  opacity: 0.5;
  animation: glowMove 5s infinite alternate;
}

@keyframes glowMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(50px);
  }
}


.cta-form{
    background: #fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.cta-form h4{
    font-weight:700;
    color:#111827;
}

.cta-form .form-control,
.cta-form .form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #dcdcdc;
    padding:0 18px;
    box-shadow:none;
}

.cta-form .form-control:focus,
.cta-form .form-select:focus{
    border-color:var(--primary-color);
    box-shadow:0 0 0 .15rem rgba(59,130,246,.15);
}

.cta-list li{
    margin-bottom:14px;
    font-size:16px;
    font-weight:500;
}

.cta-list i{
    color:var(--primary-color);
    margin-right:10px;
}

.cta-btn.w-100{
    height:55px;
    border-radius:12px;
}

@media(max-width:991px){

    .cta-content{
        margin-bottom:40px;
    }

    .cta-form{
        padding:30px;
    }

}
/* Footer */

.footer-section {
  background: #080808;
  padding: 80px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
}

/* Brand */

.footer-brand h3 {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #999;
  line-height: 1.8;
  max-width: 350px;
}

/* Social */

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #f70808;
  transform: translateY(-5px);
}

/* Links */

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-family: "Syne", sans-serif;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #999;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact */

.footer-contact p {
  color: #999;
  margin-bottom: 18px;
}

.footer-contact i {
  color: #fff;
  margin-right: 10px;
}

/* Bottom */

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  color: #777;
  font-size: 14px;
}

/*==================================================
Responsive
==================================================*/

@media (max-width: 992px) {
  .hero {
    text-align: center;

    padding-top: 150px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-desc {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;

    margin-bottom: 60px;
  }

  .browser-window {
    margin-top: 60px;

    transform: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .cta-box {
    padding: 45px 25px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    text-align: center;
  }
}

/* Responsive */

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 30px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }
}
