* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR BASE */
/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 10, 30, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  transition: all 0.4s ease;
}
/* REMOVE NAVBAR LINK UNDERLINE */
.navbar a {
  text-decoration: none;
}


/* LEFT LOGO */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1e90ff, #2563eb);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

/* CENTER MENU */
.nav-center {
  display: flex;
  gap: 34px;
}

.nav-center a {
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-center a:hover {
  color: #4aa3ff;
}

/* RIGHT BUTTON */
.nav-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(5, 10, 25, 0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-center {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background: rgba(5, 10, 30, 0.95);
    backdrop-filter: blur(16px);
    padding: 25px 40px;
    border-radius: 20px;
    display: none;
    gap: 20px;
  }

  .nav-center.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
.nav-center a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 6px;
  height: 6px;
  background: #4aa3ff;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  box-shadow: 0 0 12px #4aa3ff;
  transition: 0.3s;
}

.nav-center a:hover::after {
  transform: translateX(-50%) scale(1);
}
.nav-center a.active {
  color: #4aa3ff;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 1.5s ease-in-out;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,15,40,0.95) 0%,
    rgba(5,15,40,0.85) 40%,
    rgba(5,15,40,0.4) 70%,
    rgba(5,15,40,0.1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 120px 80px;
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0,123,255,0.15);
  border: 1px solid rgba(0,123,255,0.4);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #2f80ff;
  margin: 10px 0;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
 max-width: 520px;
  margin: 20px 0 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #2f80ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 16px;
  cursor: pointer;
}


@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-content {
  position: relative;
  overflow: hidden;
}

.hero-content h1,
.hero-content h2,
.hero-content p,
.hero-buttons {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.hero-content.active h1,
.hero-content.active h2,
.hero-content.active p,
.hero-content.active .hero-buttons {
  opacity: 1;
  transform: translateX(0);
}


.about {
  background: linear-gradient(
    to right,
    #f8fbff,
    #f3f7ff
  );
  padding: 100px 0;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2563eb;
  margin-bottom: 12px;
}

.about-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.about-left h2 span {
  color: #2563eb;
}

.about-left p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}
.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.about-stats h3 {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 5px;
}

.about-stats span {
  font-size: 14px;
  color: #64748b;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.info-card h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Highlighted card */
.info-card.active {
  background: #2563eb;
}

.info-card.active h4,
.info-card.active p {
  color: #ffffff;
}

/* Hover effect */
.info-card:hover {
  transform: translateY(-6px);
}
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  color: #2563eb;
}

/* Active (blue) card icon */
.info-card.active .icon-box {
  background: rgba(255,255,255,0.15);
}

.info-card.active .icon-box svg {
  color: #ffffff;
}
/* Scroll animation initial state */
.info-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Jab visible ho */
.info-card.show {
  opacity: 1;
  transform: translateY(0);
}
.info-card:nth-child(1) {
  transition-delay: 0.1s;
}

.info-card:nth-child(2) {
  transition-delay: 0.3s;
}

.info-card:nth-child(3) {
  transition-delay: 0.5s;
}


.services {
  background: linear-gradient(to bottom, #f8fbff, #f3f7ff);
  padding: 120px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-tag {
  font-size: 20px;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}

.services h2 {
  font-size: 42px;
  margin: 15px 0;
  color: #010612;
}

.services h2 span {
  color: #2563eb;
}

.section-desc {
  max-width: 700px;
  margin: auto;
  color: #475569;
  font-size: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 70px;
}
.service-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e0ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  color: #2563eb;
  transition: 0.4s ease;
}


.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
.tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  font-size: 12px;
  padding: 6px 14px;
  background: #f1f5f9;
  border-radius: 20px;
  color: #334155;
}
/* Card hover */
.service-card:hover {
  transform: translateY(-8px);
}

/* Card blue overlay */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37,99,235,0.15),
    rgba(37,99,235,0.05)
  );
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before,
.service-card.active::before {
  opacity: 1;
}

/* ICON GLOW ON HOVER */
.service-card:hover .icon-box,
.service-card.active .icon-box {
  background: #2563eb;
  box-shadow:
    0 0 0 6px rgba(37,99,235,0.15),
    0 12px 25px rgba(37,99,235,0.35);
}

/* ICON COLOR WHITE */
.service-card:hover .icon-box svg,
.service-card.active .icon-box svg {
  color: #ffffff;
}

/* Active (Website Development jaisa) */
.service-card.active::before {
  opacity: 1;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.why-choose {
  padding: 100px 0;
  background: radial-gradient(circle at top, #1e3a8a, #020617);
  color: #fff;
  text-align: center;
}

.section-tag {
  color: #3b82f6;
  letter-spacing: 2px;
  font-size: 13px;
}

.why-choose h2 {
  font-size: 44px;
  margin: 15px 0;
}

.why-choose h2 span {
  color: #3b82f6;
}

.section-desc {
  max-width: 620px;
  margin: 0 auto 70px;
  color: #cbd5e1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.why-cards {
  flex-wrap: nowrap;
}

/* CARD */
.why-card {
  background: #ffffff;
  color: #0f172a;
  padding: 38px 28px;
  border-radius: 22px;
  position: relative;
  transition: 0.5s cubic-bezier(.4,0,.2,1);
  transform: translateY(0);
  opacity: 1;
}

.why-card h4 {
  margin: 18px 0 10px;
}

.why-card p {
  color: #475569;
  font-size: 15px;
}

/* ICON */
.icon-box {
  width: 56px;
  height: 56px;
  background: #e0ecff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  color: #2563eb;
  transition: 0.4s;
}

/* HOVER GLOW */
.why-card:hover,
.why-card.active {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(37,99,235,0.35);
}

.why-card:hover .icon-box,
.why-card.active .icon-box {
  background: #2563eb;
  box-shadow:
    0 0 0 8px rgba(37,99,235,0.2),
    0 15px 30px rgba(37,99,235,0.4);
}

.why-card:hover .icon-box svg,
.why-card.active .icon-box svg {
  color: #ffffff;
}

/* SCROLL ANIMATION ACTIVE */
.why-card.show {
  transform: translateY(0);
  opacity: 1;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}





.portfolio {
    padding: 100px 0;
    background: #ffff;
}

.portfolio h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #38bdf8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: #ffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item h3 {
    font-size: 20px;
    margin: 20px;
    color: #38bdf8;
}

.portfolio-item p {
    color: #130101;
    margin: 0 20px 20px;
}

.category {
    display: block;
    background: #38bdf8;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 0 20px 20px;
    width: fit-content;
}

.tech-stack {
    padding: 100px 0;
    background: #ffff;
    text-align: center;
}

.tech-stack h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #38bdf8;
}

.tech-stack p {
    color: #110000;
    margin-bottom: 50px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-list span {
    background: #010e1d;
    padding: 10px 20px;
    border-radius: 20px;
    color: #38bdf8;
    font-weight: 500;
}

.contact {
    padding: 100px 0;
    background: #0f0f0f;
}

.contact h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #38bdf8;
}

.contact p {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #38bdf8;
}

.info-item p {
    color: #ccc;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}

footer {
    background: #0f0f0f;
    padding: 50px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    margin-right: 50px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #38bdf8;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #38bdf8;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #ccc;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 150px 20px 50px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
    }

    .hero-images img {
        width: 80%;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .values {
        flex-direction: column;
    }

    .services-grid,
    .portfolio-grid,
    .reasons {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
