:root{
  --orange:#FF7A18;
  --blue:#2563EB;
  --bg:#F8FAFF;
  --dark:#0F172A;
  --text:#334155;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */

body{
  padding-top:80px; /* FIX for fixed header */
}

/* HEADER */
.pk-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:3000;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.9);
  border-bottom:2px solid transparent;
  border-image:linear-gradient(90deg,#FF7A18,#2563EB) 1;
}

/* NAV */
.pk-nav{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.pk-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.pk-logo img{
  height:42px;
}

.pk-logo span{
  font-size:1.1rem;
  font-weight:700;
  background:linear-gradient(90deg,#FF7A18,#2563EB);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


/* DESKTOP MENU */
.pk-menu a{
  margin-left:22px;
  font-weight:500;
}

.pk-cta{
  padding:10px 22px;
  border-radius:30px;
  background:linear-gradient(135deg,#FF7A18,#2563EB);
  color:#fff;
  font-weight:600;
}

/* HAMBURGER */
.pk-hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* MOBILE MENU */
.pk-mobile-menu{
  display:none;
  flex-direction:column;
  background:#ffffff;
  padding:20px;
  border-top:1px solid #eee;
}

.pk-mobile-menu a{
  padding:14px 0;
  font-size:16px;
  border-bottom:1px solid #eee;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .pk-menu{
    display:none;
  }

  .pk-hamburger{
    display:block;
  }

  .pk-mobile-menu.show{
    display:flex;
  }

  body{
    padding-top:70px;
  }

  .pk-logo img{
    height:36px;
  }
}


/* ================= HERO ================= */
.hero{
  margin-top:80px;
  height:90vh;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,122,24,.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(37,99,235,.25), transparent 40%);
  animation:floatGlow 10s infinite alternate;
  z-index:1;
}

@keyframes floatGlow{
  to{transform:translateY(-40px)}
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:1s;
}

.slide.active{opacity:1}

.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(0,0,0,.65),rgba(0,0,0,.35));
}

.hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:20px;
}

.hero h1{
  font-size:clamp(2.6rem,5vw,4rem);
  background:linear-gradient(90deg,var(--orange),#60A5FA);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  max-width:720px;
  margin:18px auto;
}

.btn{
  display:inline-block;
  padding:14px 36px;
  border-radius:50px;
  background:linear-gradient(135deg,var(--orange),var(--blue));
  color:#fff;
  font-weight:600;
}

/* ================= SECTION ================= */
section{
  padding:90px 20px;
}



.container{
  max-width:1200px;
  margin:auto;
}

/* ================= SERVICES ================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service{
  position:relative;
  min-height:260px;
  border-radius:22px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:.5s cubic-bezier(.2,.8,.2,1);
  cursor:pointer;
}

.service::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

.service:hover{
  transform:translateY(-14px) scale(1.02);
  box-shadow:0 40px 80px rgba(0,0,0,.35);
}

.service-content{
  position:relative;
  z-index:2;
  padding:30px;
}

.service h3{
  color:#FFB347;
  margin-bottom:8px;
}

.service-card{
  opacity:0;
  transform:translateY(60px) scale(.95);
  transition:.8s ease;
}

.service-card.show{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* ================= TESTIMONIALS ================= */
.testimonials{background:#eef2ff}

.testimonial-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
}

.testimonial-slider::-webkit-scrollbar{display:none}

.testimonial{
  min-width:280px;
  background:#fff;
  padding:30px 22px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  flex-shrink:0;
}

.testimonial img{
  width:70px;
  height:70px;
  border-radius:50%;
  margin-bottom:12px;
  border:3px solid var(--blue);
}

.testimonial p{
  font-size:.95rem;
  color:#475569;
}

.testimonial h4{
  margin-top:12px;
  color:var(--orange);
  font-weight:600;
}

/* ================= CONTACT ================= */
.contact{
  background:#fff;
  border-radius:20px;
  padding:40px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.contact form{
  display:grid;
  gap:18px;
}

.contact input,
.contact textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ccc;
  font-size:1rem;
}

.contact textarea{
  height:120px;
  resize:none;
}

/* ================= FOOTER (NEW) ================= */
.pk-footer-new{
  background:#020617;
  color:#CBD5E1;
  padding:80px 20px 25px;
}

.pk-footer-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1.2fr 1.3fr;
  gap:50px;
}

.pk-foot-col h2{
  color:#fff;
  font-size:28px;
  margin-bottom:15px;
}

.pk-foot-col h4{
  color:#fff;
  margin-bottom:15px;
}

.pk-foot-col p,
.pk-foot-col a,
.pk-foot-col span{
  font-size:15px;
  display:block;
  margin-bottom:10px;
  opacity:.9;
}

.pk-foot-col a:hover{color:var(--orange)}

.pk-foot-bottom{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:14px;
  opacity:.7;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .pk-footer-wrap{grid-template-columns:1fr}
}

@media(max-width:768px){
  .pk-menu{display:none}
  .hero{height:75vh}
}


.pk-footer-unique{
  background:#020617;
  color:#CBD5E1;
  padding:70px 20px 25px;
}

/* GRID FIX */
.pk-footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1.3fr 1fr 1.3fr;
  gap:45px;
}

/* COLUMN */
.pk-foot-box h3{
  color:#fff;
  font-size:26px;
  margin-bottom:12px;
}

.pk-foot-box h4{
  color:#fff;
  font-size:17px;
  margin-bottom:14px;
}

.pk-foot-box p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:8px;
}

.pk-foot-box a{
  display:block;
  font-size:15px;
  margin-bottom:8px;
  color:#CBD5E1;
}

.pk-foot-box ul{
  list-style:none;
  padding:0;
}

.pk-foot-box ul li{
  margin-bottom:8px;
  font-size:15px;
}

/* BUTTON */
.foot-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 24px;
  border-radius:30px;
  background:linear-gradient(135deg,#FF7A18,#2563EB);
  color:#fff;
  font-weight:600;
}

/* TRUST BAR */
.pk-footer-trust{
  margin-top:40px;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  font-size:14px;
}

/* COPYRIGHT */
.pk-footer-copy{
  margin-top:25px;
  text-align:center;
  font-size:14px;
  opacity:.7;
}

/* MOBILE FIX */
@media(max-width:900px){
  .pk-footer-grid{
    grid-template-columns:1fr;
    gap:35px;
  }
}


/* ANDROID APPS PAGE */
.android-apps{
  background:#f8faff;
  padding:90px 20px;
}

.android-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.android-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
}

.android-card h3{
  margin-bottom:10px;
  color:#2563EB;
}

.android-card p{
  font-size:15px;
  line-height:1.7;
  color:#475569;
}

.android-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}


/* ANDROID PAGE INTRO */
.android-intro{
  padding:140px 20px 80px;
  background:#f8faff;
}

.android-intro h1{
  font-size:clamp(2.2rem,4vw,3rem);
  background:linear-gradient(90deg,#FF7A18,#2563EB);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.intro-text{
  max-width:700px;
  margin:20px 0;
  font-size:16px;
  line-height:1.7;
}

.feature-list{
  margin-top:20px;
  line-height:1.9;
}

/* ANDROID APPS SECTION */
.android-apps{
  padding:90px 20px;
  background:#ffffff;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
  font-size:clamp(1.8rem,3vw,2.2rem);
}

.android-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.android-card{
  background:#f9fafb;
  padding:30px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s ease;
}

.android-card h3{
  margin-bottom:10px;
  color:#2563EB;
  font-size:1.2rem;
}

.android-card p{
  font-size:15px;
  color:#475569;
  line-height:1.6;
}

.android-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* MOBILE OPTIMIZATION */
@media(max-width:600px){
  .android-intro{
    padding-top:120px;
  }

  .feature-list{
    padding-left:18px;
  }
}


.pk-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.pk-logo img{
  height:42px;
  display:block;
}

.pk-logo span{
  font-size:1.1rem;
  font-weight:700;
  line-height:1;
  background:linear-gradient(90deg,#FF7A18,#2563EB);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ================= SERVICES SECTION FIX ================= */

.page-title{
  text-align:center;
  margin-bottom:60px;
}

.page-title h1{
  font-size:clamp(2.2rem,4vw,3rem);
  background:linear-gradient(90deg,var(--orange),var(--blue));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.page-title p{
  margin-top:14px;
  font-size:17px;
  color:#475569;
}

/* GRID */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* CARD */
.service-box{
  background:#ffffff;
  border-radius:22px;
  padding:32px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.45s cubic-bezier(.2,.8,.2,1);
  position:relative;
  overflow:hidden;
}

/* Gradient border glow */
.service-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:2px;
  background:linear-gradient(135deg,var(--orange),var(--blue));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
}

/* Hover effect */
.service-box:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 40px 80px rgba(0,0,0,.18);
}

/* ICON */
.service-icon{
  font-size:42px;
  margin-bottom:16px;
}

/* TEXT */
.service-box h2{
  font-size:22px;
  color:var(--dark);
  margin-bottom:6px;
}

.service-box h4{
  font-size:15px;
  font-weight:600;
  color:var(--blue);
  margin-bottom:14px;
}

.service-box p{
  font-size:15px;
  line-height:1.7;
  color:#475569;
  margin-bottom:16px;
}

/* LIST */
.service-box ul{
  list-style:none;
  padding:0;
}

.service-box ul li{
  font-size:14px;
  margin-bottom:8px;
  display:flex;
  align-items:center;
}

.service-box ul li::before{
  content:"✔";
  color:var(--orange);
  font-weight:700;
  margin-right:10px;
}

/* ================= CTA FIX ================= */

.cta{
  margin-top:90px;
  padding:70px 30px;
  border-radius:28px;
  background:linear-gradient(135deg,var(--orange),var(--blue));
  text-align:center;
  color:#fff;
}

.cta h2{
  font-size:clamp(1.8rem,3vw,2.4rem);
  margin-bottom:12px;
}

.cta p{
  font-size:17px;
  opacity:.95;
  margin-bottom:28px;
}

.cta a{
  display:inline-block;
  padding:14px 40px;
  border-radius:50px;
  background:#ffffff;
  color:var(--dark);
  font-weight:700;
  transition:.35s;
}

.cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}

/* MOBILE */
@media(max-width:768px){
  section{
    padding-top:120px;
  }
}


/* ================= APP GRID ================= */
.app-grid {
  padding: 80px 0;
  background: #f8faff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ================= APP CARD ================= */
.app-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.app-card h1 {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 16px;
}

.intro-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ================= FEATURE LIST ================= */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff7a18, #2563eb);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .app-card {
    padding: 30px;
  }
}

