:root {
  --deep: #0b2a4a;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --primary: #0b66ff;
  --accent: #2fb0ff;
  --muted: #6b7480;
  --soft-bg: #eef8ff; /* new softer banner background */
  --card-shadow: 0 18px 50px rgba(9, 20, 40, 0.08);
  --glass: rgba(255, 255, 255, 0.6);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* Reset / base */
html,
body {
  width:100%;
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  color: #071524;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  margin: 0.25rem 0;
}.nav-link

/* Navbar (no topbar as requested) */
header.navbar {
  position: sticky;
  top: 0;
  z-index: 2200;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(7, 18, 32, 0.04);
}
.brand {
  font-weight: 800;
  color: var(--deep);
  font-size: 1.05rem;
}
.nav-link {
  color: #0b2336;
  font-size: 1.1rem;
  font-weight: 600;
}
.brand-logo img {
    max-width: 150px;
}
/* Hero - new style with soft animated blobs & blob-masked artwork */
.hero {
  padding: 5.25rem 0 3.5rem;
  position: relative;
  background: linear-gradient(180deg, var(--soft-bg) 0%, #ffffff 60%);
  overflow: hidden;
}

/* animated soft blobs that appear in different places */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.14;
  transform: translateZ(0);
  animation: float 14s ease-in-out infinite;
}
.blob.b1 {
  width: 420px;
  height: 420px;
  left: -80px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, #0b66ff, transparent 40%);
  animation-duration: 18s;
}
.blob.b2 {
  width: 320px;
  height: 320px;
  right: -40px;
  top: 40px;
  background: radial-gradient(circle at 40% 40%, #2fb0ff, transparent 40%);
  animation-duration: 16s;
  animation-delay: 2s;
  opacity: 0.12;
}
.blob.b3 {
  width: 260px;
  height: 260px;
  left: 30%;
  bottom: -80px;
  background: radial-gradient(circle at 40% 40%, #6b9cff, transparent 40%);
  animation-duration: 20s;
  opacity: 0.09;
}

/* float keyframe */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* hero content */
.hero  h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--deep);
}
.hero .lead {
  color: var(--muted);
  margin-top: 0.6rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.feat-row{
    font-size: 1rem;
    font-weight: 600;
}

/* CTAs */
.btn-primary-cta {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border: 0;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(11, 102, 255, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(11, 102, 255, 0.18);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(11, 102, 255, 0.12);
  color: var(--deep);
  padding: 0.85rem 1.2rem;  border-radius: 10px;
  font-weight: 700;
}
.btn-ghost:hover {
  background: rgba(11, 102, 255, 0.04);
}

/* visual on right: organic blob mask using SVG clipPath for non-squared image */
.visual-blob {
  display: block;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  position: relative;
  overflow: visible;
}
.visual-blob .art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(11, 102, 255, 0.06);
  transform: translateY(-6px);
}

/* services */
#services {
  padding: 3rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.15rem;
}
.svc {
  padding: 1.25rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(11, 102, 255, 0.04);
  box-shadow: 0 12px 30px rgba(8, 20, 40, 0.04);
  transition: transform 0.25s;
}
.svc:hover {
  transform: translateY(-10px);
}
.svc .icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--primary);
  background: linear-gradient(
    180deg,
    rgba(11, 102, 255, 0.06),
    rgba(47, 176, 255, 0.02)
  );
}

/* projects */
#work {
  padding: 2.6rem 0;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
}
.portfolio-card {
  border-radius: 12px;
  border: 1px solid rgba(11, 102, 255, 0.04);
  box-shadow: 0 12px 32px rgba(8, 20, 40, 0.05);
  transition: transform 0.25s;
}
.portfolio-card:hover {
  transform: translateY(-8px);
}
.portfolio-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.owl-carousel-wrks h6{
  font-size: 1.3rem;
  font-weight: 600;
}
/* what we do */
#what {
  padding: 2.6rem 0;
}
.what-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.what-card {
  flex: 1 1 260px;
  padding: 1.1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(11, 102, 255, 0.04);
  box-shadow: 0 12px 28px rgba(8, 20, 40, 0.04);
}

/* why choose us */
#why {
  padding: 2.2rem 0;
  background-color: var(--deep);
}
#why h2, #why p{
  color: #fff;
}
.why-card {
  border: 1px solid var(--accent);
  padding: 1rem;
  border-radius: 10px;
}
.why-card strong{
  font-size: 1.2rem;
   color: #fff;
  line-height: 1.3rem;
}
.why-card .small{
  color: #fff;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.prim-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.prim-list li{
    margin: 8px 0px;
  font-size: 1rem;
  font-weight: 600;
}
.c-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list i{
  margin-right: 5px;
  color: var(--primary);
}
.c-list li{
  margin: 8px 0px;
  font-size: 1.2rem;
  font-weight: 600;
}
/* workflow with 6 steps */
#workflow {
  padding: 3rem 0;
}
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.step {
  padding: 1.05rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(11, 102, 255, 0.04);
  box-shadow: 0 12px 30px rgba(8, 20, 40, 0.04);
  text-align: center;
  transition: transform 0.2s;
}
.step:hover {
  transform: translateY(-8px);
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 10px;
  font-weight: 800;
}
.ft-logo{
  max-width: 150px;
}
/* CTA section */
#cta {
  padding: 2.6rem 0;
  background: linear-gradient(180deg, #022744 0%, #021227 100%);
  color: #eaf6ff;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 18px 40px rgba(2, 10, 28, 0.3);
}

/* contact */
#contact {
  padding: 3rem 0;
}
.form-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(8, 20, 40, 0.06);
  border: 1px solid rgba(11, 102, 255, 0.04);
}
input.form-control,
textarea.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(11, 102, 255, 0.06);
}

/* footer */
footer {
  padding: 2.6rem 0 1rem 0;
  background: linear-gradient(180deg, #021227, #03162a);
  color: #dff6ff;
}
footer h6{
  font-size: 1.3rem;
   font-weight: 600;
}
.banner-img img {
  width: 100%;
  max-width: 100%;
}
.container{
    max-width: 1250px;
}
footer ul li{
  font-size: 0.9rem!important;
}
.form-card h3{
  margin-bottom: 30px;
  text-align: center;
}
.form-card h3 span{
  color: var(--primary);
}
.prim-brd{
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding:0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;

}
.prim-brd a{
    text-decoration: none;
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 50px;
  width: 60px;
  height: 60px;
  padding: 10px;
  z-index: 99999;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
.whatsapp-icon img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.whatsapp-icon img:hover {
  transform: scale(1.1);
}
@media (max-width: 700px){
  .whatsapp-icon{
     right: 20px;
  }
  .cta-card{
    flex-direction: column;
  }
  .btn-primary-cta{
    padding: 0.5rem 0.9rem;
    font-weight: 600;
  }
  .btn-ghost{
    padding: 0.5rem 0.9rem;
    font-weight: 600;
  }
  .brand-logo{
    margin-bottom: 15px;
  }
}
.form-popup-overlay{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.form-popup-box{
  background:#fff;
  width:95%;
  max-width:600px;
  max-height:90vh;
  overflow:auto;
  padding:20px;
  border-radius:8px;
  position:relative;
}
.form-popup-close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:26px;
  cursor:pointer;
}
.form-popup-box h3{
    margin-bottom:15px;
}
