*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, sans-serif;
}
/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

 background-color: #ffffff !important;
  border-bottom: 1px solid #e5e7eb;

  width: 100%;
}

/* container */
.nav-inner {
  max-width: 1250px;
  margin: auto;
  padding: 12px 24px;           /* compact height */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* logo */
.nav-logo img {
  height: 60px;
}

/* menu */
.nav-menu {
  display: flex;
  justify-content: center;      /* 🔥 CENTER LINKS */
  gap: 36px;
  margin-left: 30px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  position: relative;
}


/* hover underline (professional touch) */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #14b8a6;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #0f766e;
}

/* login button */
.login-btn {
  padding: 8px 20px;
  border-radius: 22px;
  background: linear-gradient(90deg, #14b8a6, #38bdf8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}



/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
    display: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    grid-template-columns: auto auto;
  }

  .nav-cta {
    display: none;
  }
}
/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

/* DROPDOWN BOX */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;                 /* ✅ RIGHT SIDE */
  background: #ffffff;
  min-width: 220px;
  padding: 10px 0 8px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* CLOSE ICON */
.dropdown-close {
  align-self: flex-end;
  padding: 4px 12px;
  font-size: 18px;
  cursor: pointer;
  color: #64748b;
}

.dropdown-close:hover {
  color: #0f172a;
}

/* LINKS */
.dropdown-menu a {
  padding: 10px 18px;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
}

/* DESKTOP HOVER */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 768px) {

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;   /* navbar ke niche */
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    z-index: 99;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-logo {
    z-index: 100;
  }

  .nav-toggle {
    margin-left: auto;   /* 🔥 THIS IS IMPORTANT */
  }
}
/* ================= HERO ================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  padding:160px 80px 100px;
  position:relative;
  overflow:hidden;
}

/* HERO TEXT */

.hero-content{
  margin-top:-60px;
}

.hero-content h1{
  font-size:56px;
  line-height:1.15;
  margin-bottom:22px;
  font-weight:600;
  color:#0f172a;
}

.hero-content h1 span{
  background:linear-gradient(90deg,#14b8a6,#38bdf8,#818cf8);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-content p{
  max-width:540px;
  font-size:16.8px;
  line-height:1.8;
  color:#334155;
}

/* BUTTONS */

.hero-actions{
  margin-top:40px;
}

.primary-btn{
  background:linear-gradient(90deg,#14b8a6,#38bdf8);
  color:#fff;
  padding:15px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  margin-right:22px;
}

.secondary-btn{
  color:#0f172a;
  text-decoration:none;
  border-bottom:1px solid #14b8a6;
  padding-bottom:4px;
}

/* ================= RIGHT SIDE CONTAINER ================= */

.hero-right{
  position:absolute;
  right:14%;
  top:50%;
  transform:translateY(-50%);
  width:360px;
  height:360px;
  pointer-events:none;
}

/* ================= GLASS BOX ================= */

.glass-box{
  position:absolute;
  width:260px;
  height:160px;
  padding:22px;
  border-radius:24px;
  overflow:hidden;

  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.12),
    inset 0 1px 1px rgba(255,255,255,0.6);

  animation:float 6s ease-in-out infinite;
}

/* GRADIENT BORDER */

.glass-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1.8px;

  background:linear-gradient(
    135deg,
    rgba(20,184,166,0.25),
    rgba(56,189,248,0.25)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  pointer-events:none;
}

/* IMAGE */

.glass-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ================= POSITIONS ================= */

.box1{
  top:0;
  left:80px;
  animation-delay:0s;
}

.box2{
  top:120px;
  left:0;
  animation-delay:1.5s;
}

.box3{
  top:250px;
  left:100px;
  animation-delay:3s;
}

/* ================= FLOAT ANIMATION ================= */

@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-16px); }
  100%{ transform:translateY(0); }
}

/* ================= TABLET & MOBILE ================= */

@media (max-width:992px){

  .hero{
    min-height:auto;
    grid-template-columns:1fr;
    padding:130px 30px 80px;
    text-align:center;
  }

  .hero-content{
    margin-top:0;
  }

  .hero-content p{
    margin:auto;
  }

  .hero-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
  }

  .hero-right{
    position:relative;
    top:auto;
    right:auto;
    transform:none;
    margin:60px auto 0;
    width:300px;
    height:300px;
  }

  .glass-box{
    width:220px;
    height:140px;
    padding:18px;
  }

  .box1{
    top:0;
    left:50%;
    transform:translateX(-50%);
  }

  .box2{
    top:110px;
    left:0;
  }

  .box3{
    top:220px;
    right:0;
    left:auto;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width:576px){

  .hero{
    padding:110px 20px 60px;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:15px;
  }

  .hero-right{
    width:260px;
    height:260px;
  }

  .glass-box{
    width:200px;
    height:130px;
  }
}
@media (max-width: 992px) {
  .hero-right {
    display: none;
  }
}
/* ================= ABOUT SECTION ================= */

.about-section{
  padding:100px 0;
  background:#ffffff;
}

.about-container{
  width:85%;
  margin:auto;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  align-items:center;
  gap:80px;
}

/* ================= LEFT IMAGES ================= */

.about-images{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:24px;
  max-width:520px;
}

.about-images img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:22px;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.about-images img:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 18px 36px rgba(0,0,0,0.14);
}

/* ================= RIGHT CONTENT ================= */

.about-content{
  max-width:560px;
}

.about-tag{
  color:#10b981;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.5px;
}

.about-content h2{
  font-size:48px;
  line-height:1.2;
  color:#0f172a;
  margin:16px 0 22px;
}

.about-content p{
  font-size:16px;
  line-height:1.7;
  color:#475569;
  margin-bottom:18px;
}

/* ================= STATS ================= */

.about-stats{
  display:flex;
  gap:50px;
  margin-top:30px;
}

.about-stats .stat h3{
  font-size:32px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:4px;
}

.about-stats .stat p{
  font-size:14px;
  color:#64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px){

  .about-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-images{
    margin:0 auto;
  }

  .about-content{
    text-align:center;
    margin:0 auto;
  }

  .about-content h2{
    font-size:34px;
  }

  /* 🔥 STATS HORIZONTAL ON MOBILE */
  .about-stats{
    justify-content:center;
    gap:30px;
    flex-wrap:nowrap;
  }

  .about-stats .stat h3{
    font-size:26px;
  }
}

@media (max-width: 576px){

  .about-section{
    padding:70px 0;
  }

  .about-images img{
    height:150px;
  }

  .about-stats{
    gap:24px;
  }

  .about-stats .stat p{
    font-size:13px;
  }
}

/* ================= SERVICES ================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
}

.service-card{
  background:#ffffff;
  padding:32px;
  border-radius:20px;
  transition:0.35s ease;
  box-shadow:
    0 12px 30px rgba(15,23,42,0.06),
    inset 0 0 0 1px rgba(14,165,233,0.08);
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 22px 50px rgba(20,184,166,0.18);
}

.service-card h4{
  font-size:20px;
  margin-bottom:10px;
  font-weight:600;
  color:#0f172a;
}


/* ================= PROCESS ================= */
.process-steps{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.step{
  flex:1;
  min-width:200px;
  background:linear-gradient(135deg,#0f172a,#2563eb);
  color:#fff;
  padding:25px;
  border-radius:16px;
  font-weight:600;
  text-align:center;
}

/* ================= WHY US ================= */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
}

.why-grid div{
  background:#fff;
  padding:18px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
}

/* ================= PRICING ================= */
.pricing-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.price-card{
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  padding:35px;
  border-radius:20px;
  text-align:center;
}

.price-card h4{
  font-size:22px;
  margin-bottom:10px;
}

/* ================= TECH STACK ================= */
.tech-section{
  background:#0f172a;
  color:#fff;
  text-align:center;
}

.tech-section p{
  font-size:18px;
  margin-top:15px;
}

/* ================= CTA ================= */
.cta-section{
  text-align:center;
  background:linear-gradient(135deg,#0f172a,#2563eb);
  color:#fff;
}

.cta-section a{
  margin-top:20px;
  display:inline-block;
}

.milestone-section {
  padding: 70px;
}

.milestone-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.icon-box {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 12px;
  background: linear-gradient(90deg,#14b8a6,#38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #000;
  font-size: 22px;
}

.milestone-card h2 {
  font-size: 32px;
  margin: 10px 0 5px;
}

.milestone-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
  .milestone-card h2 {
    font-size: 26px;
  }
}
/* ================= MILESTONE FIX ================= */

.milestone-section{
  padding:80px 8%;
  background:#f8fafc;   /* light background */
}

.milestone-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:30px;
}

.milestone-card{
  background:#ffffff;          /* ❌ glass remove */
  border-radius:18px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:transform .3s ease;
}

.milestone-card:hover{
  transform:translateY(-6px);
}

.milestone-card h2{
  font-size:32px;
  color:#0f172a;
}

.milestone-card p{
  color:#475569;
  font-size:14px;
}

/* ICON */
.icon-box{
  width:54px;
  height:54px;
  margin:0 auto 14px;
  border-radius:14px;
  background:linear-gradient(90deg,#14b8a6,#38bdf8);
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-box i{
  color:#0f172a;
  font-size:22px;
}

/* MOBILE */
@media(max-width:600px){
  .milestone-section{
    padding:60px 6%;
  }

  .milestone-card{
    padding:22px 18px;
  }

  .milestone-card h2{
    font-size:26px;
  }
}
/* FORCE SINGLE ROW ON DESKTOP */
.milestone-container{
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: nowrap;   /* 🔥 yahi main fix hai */
}

/* ================= MOBILE HORIZONTAL SCROLL ================= */
@media (max-width: 768px) {

  .milestone-section {
    padding: 50px 20px;
    overflow: hidden;
  }

  .milestone-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;

    /* hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .milestone-container::-webkit-scrollbar {
    display: none;
  }

  .milestone-card {
    min-width: 220px;
    flex-shrink: 0;
  }
}
/* ================= MOBILE CLEAN MILESTONES ================= */
@media (max-width: 768px) {

  .milestone-section {
    padding: 40px 16px;
  }

  .milestone-container {
    gap: 14px;
  }

  .milestone-card {
    min-width: 180px;      /* chota box */
    padding: 18px 14px;
    border-radius: 14px;

    background: #ffffff;  /* pure white */
    color: #0f172a;

    box-shadow: none;     /* shadow remove */
    backdrop-filter: none;
  }

  .milestone-card:hover {
    transform: none;
    background: #ffffff;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .icon-box i {
    font-size: 18px;
    color: #000;
  }

  .milestone-card h2 {
    font-size: 22px;
    margin: 6px 0 4px;
    color: #0f172a;
  }

  .milestone-card p {
    font-size: 13px;
    opacity: 0.85;
    color: #334155;
  }
}

/* ================= FOOTER (LIGHT PREMIUM) ================= */
.footer {
  background: #eef2f4;              /* soft neutral light */
  color: #475569;
  padding: 60px 40px 30px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid #dbe2e8;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* ================= BRAND ================= */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand h3 {
  font-size: 20px;
  color: #0f172a;
  margin: 0;
}

.footer-brand small {
  color: #64748b;
}

.footer-brand p {
  margin: 18px 0 22px;
  max-width: 320px;
  line-height: 1.7;
  color: #475569;
}

/* CTA Button */
.footer-btn {
  display: inline-block;
  margin-bottom: 24px;
  padding: 12px 22px;
  background: #e6efee;
  color: #0f766e;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #c7e5df;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #0f766e;
  color: #ffffff;
}

/* ================= SOCIAL ================= */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #475569 !important;
  border-radius: 50%;
  border: 1px solid #dbe2e8;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-icons i:hover {
  background: #0f766e;
  color: #ffffff;
}

/* ================= LINKS ================= */
.footer-links,
.footer-trust {
  display: flex;
  flex-direction: column;
}

.footer-links h4,
.footer-trust h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #0f172a;
}

.footer-links ul,
.footer-trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #475569 !important;
  font-size: 14.5px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #0f766e;
}

/* ================= STATS ================= */
.footer-stats {
  display: flex;
  gap: 24px;
  margin-top: 22px;
}

.footer-stats h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f766e;
  margin: 0;
}

.footer-stats p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

/* ================= BOTTOM ================= */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0%;
  padding: 18px 10px;
  font-size: 14px;
  color: #64748b;

  /* 🔹 Theme based subtle background */
  background: linear-gradient(
    90deg,
    #91a19f,
    #f0fdfa,
    #e6efee
  );

  border-top: 1px solid #cfe7e3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-stats {
    justify-content: space-between;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* Header */
.header {
  background-color: #0d6efd;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.header h1 {
  font-size: 2.5rem;
}

.header p {
  margin-top: 10px;
  font-size: 1.2rem;
}


/* services */
.services{
  max-width:1300px;
  margin:auto;
}

.title{
  text-align:center;
  padding:120px 20px 70px;
}

.section-heading{
  margin:80px 20px 35px;
  font-size:32px;
  color:#0f766e;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  padding:0 20px;
}

.service-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
  cursor:pointer;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card-content{
  padding:24px;
}

/* CLEAN REVEAL */
.title,
.section-heading,
.service-card{
  opacity:0;
  transform:translateY(18px);
  transition:.6s ease;
}

.reveal-visible{
  opacity:1;
  transform:none;
}

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:none;
  align-items:center;
  justify-content:center;
}

.modal-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  max-width:600px;
  width:90%;
}

.close{
  position:absolute;
  right:20px;
  top:15px;
  font-size:26px;
  cursor:pointer;
}

/* ================= HERO ================= */
.about-hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  padding:120px 80px;
  background:
    radial-gradient(circle at top right,#99f6e4,transparent 60%),
    linear-gradient(135deg,#f8fafc,#ecfeff);
}

.hero-text h1{
  font-size:56px;
  line-height:1.1;
}

.hero-text h1 span{
  color:#0f766e;
}

.hero-text p{
  margin-top:18px;
  font-size:17px;
  line-height:1.7;
  color:#475569;
}

.hero-btn{
  margin-top:30px;
  display:inline-block;
  padding:14px 34px;
  background:linear-gradient(90deg,#14b8a6,#38bdf8);
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* VISUAL */
.hero-visual{
  position:relative;
}
.hero-box{
  background:#0f766e;
  border-radius:40px;
  height:420px;
  box-shadow:0 40px 120px rgba(15,118,110,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden; /* IMPORTANT */
}

.hero-box img{
  width:100%;
  height:100%;
  object-fit:cover; /* or 'contain' if you want full image visible */
}


.hero-float{
  position:absolute;
  background:#fff;
  padding:16px 22px;
  border-radius:18px;
  font-weight:600;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  animation:float 6s ease-in-out infinite;
}

.hero-float.one{ top:40px; left:-40px; }
.hero-float.two{ bottom:50px; right:-40px; animation-delay:1s; }

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}
/* ================= STORY ================= */
.about-story{
  max-width:1200px;
  margin:auto;
  padding:120px 20px;
  text-align:center;
}

.about-story h2{
  font-size:42px;
  font-weight:700;
  color:#0f172a;
}

.about-story p{
  margin-top:18px;
  max-width:820px;
  margin-inline:auto;
  font-size:16.5px;
  color:#475569;
  line-height:1.8;
}

/* ================= BOXES ================= */
.about-boxes{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
  max-width:1200px;
  margin:auto;
  padding-bottom:120px;
}

.about-box{
  background:linear-gradient(135deg,#14b8a6,#0ea5e9);
  color:#ffffff;
  border-radius:32px;
  padding:55px;
  transition:.4s ease;
}

.about-box:hover{
  transform:translateY(-10px);
}

.about-box h3{
  font-size:26px;
  margin-bottom:14px;
  font-weight:600;
}

.about-box p{
  font-size:15.5px;
  line-height:1.7;
  opacity:.95;
}

/* ================= VALUES ================= */
.values{
  background:linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
  padding:120px 20px;
}

.values h2{
  text-align:center;
  font-size:42px;
  font-weight:700;
  color:#0f172a;
}

.values-grid{
  max-width:1200px;
  margin:60px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

/* VALUE CARDS */
.value-card{
  background:#ffffff;
  border-radius:26px;
  padding:45px 32px;
  text-align:center;
  box-shadow:
    0 20px 45px rgba(15,23,42,.08),
    inset 0 0 0 1px rgba(14,165,233,.08);
  transition:.35s ease;
}

.value-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 30px 70px rgba(20,184,166,.25);
}

.value-card h4{
  font-size:20px;
  margin-bottom:12px;
  color:#14b8a6;
  font-weight:600;
}

.value-card p{
  font-size:14.5px;
  color:#475569;
  line-height:1.7;
}

/* ================= ANIMATION ================= */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .about-hero{
    grid-template-columns:1fr;
    padding:100px 24px;
    text-align:center;
  }

  .hero-box{
    height:320px;
    margin-top:50px;
  }

  .about-boxes{
    grid-template-columns:1fr;
    padding:0 20px 100px;
  }
}
/* ================= SERVICES SECTION ================= */
/* ===============================
   SERVICES HERO (HALF PAGE)
================================ */

.services-hero {
  height: 50vh;
  min-height: 360px;
  width: 100%;
  background: url("service.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay */
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.6)
  );
  z-index: 1; /* 👈 overlay layer */
}

/* HERO CONTENT — FIX */
.services-hero-content {
  position: relative;
  z-index: 2; /* 👈 THIS IS THE FIX */
  text-align: center;
  color: #ffffff;
  max-width: 720px;
  padding: 0 20px;
  animation: heroFadeUp 1s ease forwards;
}

.services-hero-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.services-hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE FIX
================================ */

@media (max-width: 768px) {
  .services-hero {
    height: 42vh;
  }

  .services-hero-content h1 {
    font-size: 2rem;
  }
}

/* ===============================
   SERVICES CONTENT SECTION
================================ */

.services-content {
  padding: 90px 8%;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.services-content h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #0f172a;
}

/* ===============================
   SERVICES GRID & CARDS
================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #0f172a;
  padding: 35px 30px;
  border-radius: 18px;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(56, 189, 248, 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(56, 189, 248, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #38bdf8;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===============================
   SCROLL REVEAL ANIMATION
================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .services-hero {
    height: 42vh;
  }

  .services-hero-content h1 {
    font-size: 2rem;
  }

  .services-content {
    padding: 70px 6%;
  }
}


/* ================= CONTACT LAYOUT ================= */
.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color:#19ffe1;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-box {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.info-box i {
  font-size: 22px;
  color: #334155;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #334155;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-links a:hover {
  background: #14b8a6;
}
.contact-hero {
  min-height: 70vh;
  background-image: url("contact1.jpg"); /* CHANGE IMAGE HERE */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.contact-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.contact-hero-content h1 {
  font-size: clamp(36px,5vw,56px);
  margin-bottom: 12px;
}

.contact-hero-content p {
  font-size: 18px;
  line-height: 1.6;
}
/* ================= CONTACT SECTION (THEME MATCHED) ================= */
.contact-section {
  padding: 90px 8%;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
}

/* Layout */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* ================= LEFT INFO ================= */
.contact-info {
  flex: 1;
  animation: fadeLeft 1s ease forwards;
}

.contact-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f172a;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #334155;
  font-size: 16px;
}

.info-box i {
  font-size: 18px;
  color: #14b8a6;
}

/* Social icons */
.social-links {
  margin-top: 35px;
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.social-links a:hover {
  transform: translateY(-6px) scale(1.05);
}

/* ================= RIGHT FORM CARD ================= */
.contact-form {
  flex: 1;
  background: #ffffff;
  padding: 45px 45px 50px;
  border-radius: 22px;
  animation: fadeRight 1s ease forwards;
}

.contact-form h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0f172a;
}

/* ================= INPUTS ================= */
.input-group {
  position: relative;
  margin-bottom: 24px;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 16px 16px;
  border-radius: 12px;
  border: 1.5px solid #c7d2fe;
  font-size: 15px;
  outline: none;
  background: #ffffff;
  transition: 0.3s ease;
}

/* Focus */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20,184,166,0.15);
}

/* Floating labels */
.input-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 8px;
  font-size: 14px;
  color: #64748b;
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group textarea {
  height: 130px;
  resize: none;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group select:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label,
.input-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #14b8a6;
}

/* ================= BUTTON ================= */
.contact-form button {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 18px 45px rgba(14,165,233,0.35);
}

.contact-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(20,184,166,0.5);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 50px;
  }

  .contact-form {
    padding: 35px;
  }
}


/* FLOATING INPUTS */
.input-group {
  position: relative;
  margin-bottom: 22px;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 6px;
}

.input-group textarea {
  height: 120px;
  resize: none;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group select:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label,
.input-group select:valid + label {
  top: -6px;
  font-size: 12px;
  color: #14b8a6;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
}

/* ANIMATIONS */
.animate-left {
  animation: slideLeft 1s ease forwards;
}

.animate-right {
  animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}

.map-container {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: 80px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= login ================= */
.brand {
  text-align: center;
  margin-bottom: 25px;
}

.brand img {
  height: 55px;
  margin-bottom: 10px;
}

.brand h2 {
  font-size: 22px;
  color: #0f172a;
}

.brand p {
  font-size: 14px;
  color: #64748b;
}

/* ================= FORM ================= */
form h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 18px;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #334155;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #14b8a6;
}

/* ================= OPTIONS ================= */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.options a {
  color: #14b8a6;
  text-decoration: none;
}

/* ================= BUTTON ================= */
.btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #14b8a6, #38bdf8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}

/* ================= SOCIAL ================= */
.social-login {
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.divider span {
  font-size: 12px;
  color: #64748b;
}

.social-btn {
  width: 100%;
  padding: 11px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 500;
}

.social-btn i {
  margin-right: 8px;
}

.social-btn.google { color: #ea4335; }
.social-btn.apple { color: #000; }
.social-btn.facebook { color: #1877f2; }

/* ===== STATIC WEBSITE THEME ===== */

.static-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 120px;
}

.static-hero-left{
  width:45%;
}

.static-hero-left h1{
  font-size:52px;
  color:#0c0e0e !important;
}
.hero-content h1 span{
  background:linear-gradient(90deg,#14b8a6,#38bdf8,#818cf8);
  -webkit-background-clip:text;
  color:transparent;
}
/* SAME gradient jo tumne pehle approve kiya tha */
.grow-gradient{
  background: linear-gradient(
    90deg,
    #14b8a6,   /* Teal */
    #38bdf8,   /* Blue */
    #818cf8    /* Indigo */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.static-hero-left p{
  margin:20px 0;
  font-size:18px;
  color:#475569;
}

.static-btn{
  display:inline-block;
  padding:14px 32px;
  background:#10b981;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* Right box animation */
.static-info-box{
  width:300px;
  padding:24px;
  border-radius:20px;
  background:#ecfdf5;
  animation:static-float 6s ease-in-out infinite;
}

@keyframes static-float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-16px); }
}
/* RIGHT IMAGE BOX – LANDING PAGE */
.static-image-box{
  width:420px;
  height:280px;
  border-radius:24px;
  overflow:hidden;
  background:#ecfdf5;
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
  animation:static-float 6s ease-in-out infinite;
}

.static-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ABOUT */
.static-about{
  padding:100px 120px;
  text-align:center;
}

.static-about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.static-about-card{
  padding:30px;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}
/* ===== STATIC PRICING ===== */

.static-pricing{
  padding:80px 120px;
}
/* PRICING HEADING */
.static-pricing-title{
  text-align:center;
  font-size:42px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:10px;
}

.static-pricing-sub{
  text-align:center;
  font-size:16px;
  color:#64748b;
  margin-bottom:40px;
}

/* Mobile tweak */
@media (max-width: 768px){
  .static-pricing-title{
    font-size:32px;
  }
}

.static-toggle{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom:50px;
  font-size:16px;
}

/* TOGGLE SWITCH */
.static-switch{
  position:relative;
  width:50px;
  height:26px;
}

.static-switch input{ display:none; }

.static-slider{
  position:absolute;
  inset:0;
  background:#d1fae5;
  border-radius:20px;
  cursor:pointer;
}

.static-slider::before{
  content:"";
  position:absolute;
  width:22px;
  height:22px;
  background:#10b981;
  border-radius:50%;
  top:2px;
  left:2px;
  transition:0.3s;
}

.static-switch input:checked + .static-slider::before{
  transform:translateX(24px);
}

/* GRID */
.static-pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.static-price-card{
  background:#fff;
  border-radius:24px;
  padding:40px;
  box-shadow:0 30px 60px rgba(0,0,0,0.1);
  transition:all 0.4s ease;
  cursor:pointer;
  position:relative;
}

.static-price-card ul{
  margin:20px 0;
}

.static-price-card li{
  margin-bottom:8px;
}

.static-price{
  font-size:36px;
  margin:20px 0;
  font-weight:700;
}

/* ACTIVE CARD */
.static-price-card.active{
  transform:scale(1.06);
  background:#ecfdf5;
  border:2px solid #10b981;
  box-shadow:0 40px 80px rgba(16,185,129,0.25);
  z-index:2;
}

/* BUTTONS */
.static-price-card button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:30px;
  background:#d1fae5;
}

.static-price-card .primary{
  background:#10b981;
  color:#fff;
}

/* BADGE */
.badge{
  position:absolute;
  top:20px;
  right:20px;
  background:#10b981;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:12px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px){
  .static-pricing{
    padding:60px 40px;
  }

  .static-pricing-grid{
    grid-template-columns:1fr;
  }

  .static-price-card.active{
    transform:scale(1.03);
  }
}
/* PAGE LOAD */
.static-animate-load{
  opacity:0;
  transform:translateY(30px);
  animation:loadUp 0.9s ease forwards;
}

@keyframes loadUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* SCROLL ANIMATIONS */
.static-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.static-reveal.show{
  opacity:1;
  transform:translateY(0);
}
/* ================= GLOBAL REVEAL ================= */
.static-reveal{
  opacity:0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.static-reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* ================= DELAYS ================= */
.delay-1{ transition-delay: .15s; }
.delay-2{ transition-delay: .3s; }
.delay-3{ transition-delay: .45s; }
.delay-4{ transition-delay: .6s; }

/* ================= HERO ANIMATIONS ================= */
.static-hero-left h1{
  animation: heroText 1.1s ease forwards;
}

@keyframes heroText{
  from{
    opacity:0;
    transform: translateY(40px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* Hero Image Zoom */
.static-image-box{
  animation: heroImage 1.2s ease forwards;
}

@keyframes heroImage{
  from{
    opacity:0;
    transform: scale(0.9);
  }
  to{
    opacity:1;
    transform: scale(1);
  }
}

/* ================= ABOUT CARDS ================= */
.static-about-card{
  transition: transform .4s ease, box-shadow .4s ease;
}

.static-about-card:hover{
  transform: translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ================= PRICING CARDS ================= */
.static-price-card{
  transition: transform .4s ease, box-shadow .4s ease;
}

.static-price-card:hover{
  transform: translateY(-12px) scale(1.03);
  box-shadow:0 30px 60px rgba(0,0,0,.2);
}

/* ================= BUTTON MICRO ================= */
.static-btn,
.static-price-card button{
  transition: all .3s ease;
}

.static-btn:hover,
.static-price-card button:hover{
  transform: translateY(-3px);
  box-shadow:0 15px 40px rgba(56,189,248,.45);
}


/* ================= STATIC SERVICES ================= */

.section-heading{
  font-size:42px;
  font-weight:600;
  text-align:center;
  margin-bottom:50px;
  color:#0f172a;
}

/* GRID */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  padding:0 120px;
}

/* CARD */
.service-card{
  background:#ffffff;
  border-radius:22px;
  overflow:hidden;
  cursor:pointer;

  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  transition:all 0.45s ease;
  position:relative;
}

/* IMAGE */
.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* CONTENT */
.card-content{
  padding:22px 24px;
}

.card-content h3{
  font-size:20px;
  font-weight:600;
  color:#0f172a;
  margin-bottom:8px;
}

.card-content p{
  font-size:14.5px;
  line-height:1.6;
  color:#475569;
}

/* HOVER ANIMATION */
.service-card:hover{
  transform:translateY(-12px);
  box-shadow:0 35px 70px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM ON HOVER */
.service-card:hover img{
  transform:scale(1.08);
  transition:transform 0.6s ease;
}

/* ================= DYNAMIC PAGE ================= */

/* HERO */
.dynamic-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px;
}

.dynamic-hero-left{
  width:45%;
}

.dynamic-hero-left h1{
  font-size:56px;
  line-height:1.15;
  color:#0f172a;
}

.dynamic-hero-left p{
  margin-top:20px;
  font-size:17px;
  color:#475569;
  line-height:1.7;
}

.dynamic-btn{
  display:inline-block;
  margin-top:30px;
  padding:15px 36px;
  border-radius:40px;
  background:linear-gradient(90deg,#6366f1,#818cf8);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* HERO IMAGE */
.dynamic-image-box{
  width:380px;
  height:260px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.dynamic-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ABOUT */
.dynamic-about{
  padding:100px 120px;
  text-align:center;
}

.dynamic-about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.dynamic-about-card{
  padding:32px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* REVEAL */
.dynamic-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .9s ease;
}
.dynamic-reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .dynamic-hero{
    flex-direction:column;
    text-align:center;
    padding:80px 20px;
  }

  .dynamic-hero-left{
    width:100%;
  }

  .dynamic-about-grid{
    grid-template-columns:1fr;
  }
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px){
  .service-grid{
    padding:0 40px;
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .section-heading{
    font-size:30px;
    margin-bottom:30px;
  }

  .service-grid{
    grid-template-columns:1fr;
    padding:0 20px;
  }

  .service-card img{
    height:90px;
   
  }
}

.process-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.process-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(20,184,166,0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.process-header h2 {
  font-size: 36px;
  color: #0f172a;
}

.process-header h2 span {
  color: #38bdf8;
  

}

.process-header p {
  color: #64748b;
  margin-top: 10px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.process-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(90deg,#14b8a6,#38bdf8);
  color: #000;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.process-step:hover .step-circle {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 25px rgba(20,184,166,0.45);
}

.process-step:hover .step-circle {
  animation: pulse 1.2s ease infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}


.process-step h4 {
  margin-bottom: 10px;
  color: #0f172a;
}

.process-step p {
  font-size: 14px;
  color: #64748b;
}

.step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background:  #bfebe6;
  
}

/* ================= MOBILE APP PAGE ================= */

/* HERO */
.app-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px;
}

.app-hero-left{
  width:45%;
}

.app-hero-left h1{
  font-size:56px;
  line-height:1.15;
  color:#0f172a;
}

.app-hero-left p{
  margin-top:20px;
  font-size:17px;
  color:#475569;
  line-height:1.7;
}

.app-btn{
  display:inline-block;
  margin-top:30px;
  padding:15px 36px;
  border-radius:40px;
  background:linear-gradient(90deg,#14b8a6,#38bdf8);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* HERO IMAGE */
.app-image-box{
  width:380px;
  height:260px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.app-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ABOUT */
.app-about{
  padding:100px 120px;
  text-align:center;
}

.app-about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.app-about-card{
  padding:32px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* REVEAL */
.app-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .9s ease;
}
.app-reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .app-hero{
    flex-direction:column;
    text-align:center;
    padding:80px 20px;
  }

  .app-hero-left{
    width:100%;
  }

  .app-about-grid{
    grid-template-columns:1fr;
  }
}
/* ================= WORDPRESS PAGE ================= */

/* HERO */
.wp-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px;
}

.wp-hero-left{
  width:45%;
}

.wp-hero-left h1{
  font-size:56px;
  line-height:1.15;
  color:#0f172a;
}

.wp-hero-left p{
  margin-top:20px;
  font-size:17px;
  color:#475569;
  line-height:1.7;
}

.wp-btn{
  display:inline-block;
  margin-top:30px;
  padding:15px 36px;
  border-radius:40px;
  background:linear-gradient(90deg,#2563eb,#60a5fa);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* HERO IMAGE */
.wp-image-box{
  width:380px;
  height:260px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.wp-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ABOUT */
.wp-about{
  padding:100px 120px;
  text-align:center;
}

.wp-about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.wp-about-card{
  padding:32px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* REVEAL */
.wp-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .9s ease;
}
.wp-reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .wp-hero{
    flex-direction:column;
    text-align:center;
    padding:80px 20px;
  }

  .wp-hero-left{
    width:100%;
  }

  .wp-about-grid{
    grid-template-columns:1fr;
  }
}
/* ================= SAAS PAGE ================= */

/* HERO */
.saas-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px;
}

.saas-hero-left{
  width:45%;
}

.saas-hero-left h1{
  font-size:56px;
  line-height:1.15;
  color:#0f172a;
}

.saas-hero-left p{
  margin-top:20px;
  font-size:17px;
  color:#475569;
  line-height:1.7;
}

.saas-btn{
  display:inline-block;
  margin-top:30px;
  padding:15px 36px;
  border-radius:40px;
  background:linear-gradient(90deg,#22c55e,#16a34a);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* HERO IMAGE */
.saas-image-box{
  width:380px;
  height:260px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.saas-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ABOUT */
.saas-about{
  padding:100px 120px;
  text-align:center;
}

.saas-about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.saas-about-card{
  padding:32px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* REVEAL */
.saas-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .9s ease;
}
.saas-reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){
  .saas-hero{
    flex-direction:column;
    text-align:center;
    padding:80px 20px;
  }

  .saas-hero-left{
    width:100%;
  }

  .saas-about-grid{
    grid-template-columns:1fr;
  }
}
/* ===============================
   SERVICES SECTION
================================ */

.svc {
  padding: 100px 8%;
  background: #f9fafb; /* off-white */
  overflow: hidden;
}

/* ===============================
   TOP HEADER
================================ */

.svc-tag {
  font-size: 0.85rem;
  color: #64748b;
  letter-spacing: 0.5px;
}

.svc-heading h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.svc-heading h2 span {
  background: linear-gradient(90deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   NAV BUTTONS
================================ */

.svc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.svc-btn:hover {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  color: #ffffff;
  border-color: transparent;
}

/* ===============================
   SLIDER TRACK
================================ */

.svc-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.svc-track::-webkit-scrollbar {
  display: none;
}

/* ===============================
   SERVICE CARD
================================ */

.svc-card {
  min-width: 300px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(37, 99, 235, 0.18);
}

/* Image */
.svc-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

/* Text */
.svc-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #0f172a;
}

.svc-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===============================
   CTA
================================ */

.svc-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  position: relative;
}

.svc-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0f172a, #2563eb);
  transition: width 0.3s ease;
}

.svc-cta:hover::after {
  width: 100%;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .svc {
    padding: 80px 6%;
  }

  .svc-heading h2 {
    font-size: 2rem;
  }

  .svc-card {
    min-width: 260px;
  }
}
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* FOOTER LOGO SIZE FIX – CSS ONLY */
.footer-brand .logo img{
  width: 180px;        /* footer ke liye balanced size */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* ================= LOGIN PAGE ONLY ================= */

.auth-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at top left,#e6fffa 0%,#f0fdfa 30%),
    linear-gradient(135deg,#f8fafc 30%,#99f6e4 65%,#7dd3fc 100%);
  font-family:'Segoe UI', sans-serif;
}

.auth-wrapper{
  width:100%;
  padding:20px;
  display:flex;
  justify-content:center;
}

.auth-card{
  background:#fff;
  width:100%;
  max-width:420px;
  padding:32px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
  text-align:center;
}

.auth-brand h2{
  font-size:26px;
  color:#0f172a;
}

.auth-brand p{
  font-size:14px;
  color:#475569;
  margin-top:4px;
}

/* INPUTS */
.form-group{
  margin-top:22px;
  position:relative;
}

.form-group input{
  width:100%;
  padding:12px 40px 12px 14px;
  border-radius:10px;
  border:1px solid #cbd5e1;
  outline:none;
}

.form-group i{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
  color:#64748b;
}

.form-group input:focus{
  border-color:#14b8a6;
}

/* OPTIONS */
.auth-options{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  font-size:14px;
}

/* BUTTONS */
.btn-primary{
  width:100%;
  margin-top:20px;
  padding:13px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#14b8a6,#38bdf8);
  font-weight:600;
  cursor:pointer;
}

.btn-outline{
  width:100%;
  margin-top:18px;
  padding:12px;
  border-radius:30px;
  border:1px solid #cbd5e1;
  background:#fff;
  cursor:pointer;
}

/* DIVIDER */
.divider{
  display:flex;
  align-items:center;
  margin:22px 0;
}

.divider::before,
.divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#e2e8f0;
}

.divider span{
  padding:0 12px;
  font-size:12px;
  color:#64748b;
}

/* SOCIAL */
.social-login{
  display:flex;
  justify-content:space-between;
  margin-top:16px;
}

.social-login button{
  width:30%;
  padding:12px;
  border-radius:14px;
  border:1px solid #e2e8f0;
  background:#fff;
  cursor:pointer;
}

/* SWITCH */
.switch{
  margin-top:22px;
  font-size:14px;
}

/* MOBILE */
@media(max-width:480px){
  .auth-card{ padding:26px; }
}
/* ================= SIGNUP PAGE ONLY ================= */

.auth-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at top left,#e6fffa 0%,#f0fdfa 30%),
    linear-gradient(135deg,#f8fafc 30%,#99f6e4 65%,#7dd3fc 100%);
  font-family:'Segoe UI', sans-serif;
}

.auth-wrapper{
  width:100%;
  padding:20px;
  display:flex;
  justify-content:center;
}

.auth-card{
  background:#fff;
  width:100%;
  max-width:440px;
  padding:32px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
  text-align:center;
}

/* HEADER */
.auth-brand h2{
  font-size:26px;
  color:#0f172a;
}

.auth-brand p{
  font-size:14px;
  color:#475569;
  margin-top:4px;
}

/* FORM */
.form-group{
  margin-top:20px;
  text-align:left;
}

.form-group label{
  font-size:14px;
  font-weight:500;
}

.form-group input{
  width:100%;
  margin-top:6px;
  padding:12px 40px 12px 14px;
  border-radius:10px;
  border:1px solid #cbd5e1;
  outline:none;
}

.form-group input:focus{
  border-color:#14b8a6;
}

/* ROW */
.row{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.row input{
  flex:1;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #cbd5e1;
  outline:none;
}

/* ICON INPUT */
.icon-field{
  position:relative;
}

.icon-field i{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
  color:#64748b;
}

/* BUTTON */
.btn-primary{
  width:100%;
  margin-top:22px;
  padding:13px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#14b8a6,#38bdf8);
  font-weight:600;
  cursor:pointer;
  color:#fff;
}

.btn-primary.disabled{
  opacity:0.5;
  cursor:not-allowed;
}

/* SWITCH */
.switch{
  margin-top:22px;
  font-size:14px;
}

/* MOBILE */
@media(max-width:480px){
  .auth-card{ padding:26px; }
  .row{ flex-direction:column; }
}
/* ================= MOBILE NAV FIX ================= */

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:26px;
  height:3px;
  background:#0f172a;
  border-radius:4px;
}

/* MOBILE */
@media(max-width:768px){

  .nav-toggle{
    display:flex;
  }

  .nav-menu{
    position:fixed;
    top:72px;
    left:0;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    gap:22px;
    padding:30px 20px;
    transform:translateY(-120%);
    transition:0.4s ease;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
    z-index:999;
  }

  .nav-menu.active{
    transform:translateY(0);
  }

  .nav-menu a{
    font-size:18px;
  }

  /* Dropdown mobile */
  .nav-dropdown .dropdown-menu{
    position:static;
    box-shadow:none;
    display:none;
  }

  .nav-dropdown.open .dropdown-menu{
    display:block;
  }
}



