/* ================= ROOT & BODY ================= */
:root{
  --gold:#d39c2c;
  --dark:#1b2a4e;
  --light:#fff8ec;
}

body{
  margin:0;
  font-family:'Open Sans',sans-serif;
}

/* ================= HEADER ================= */
.pk-header{
	box-shadow:0 4px 18px rgba(0,0,0,0.08);
	position:sticky;
	top:0;
	z-index:999;
	background-color: #F9F9F9;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
}

/* LOGO */
.pk-logo img{
  height:94px;
  width:auto;
  object-fit:contain;
}

/* MENU */
.pk-menu{
  display:flex;
  align-items:center;
  gap:26px;
}

.pk-menu a{
  font-size:15px;
  font-weight:600;
  color:var(--dark);
  text-decoration:none;
  position:relative;
  padding:6px 0;
}

.pk-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.3s;
}

.pk-menu a:hover,
.pk-menu a.active{
  color:var(--gold);
}

.pk-menu a:hover::after,
.pk-menu a.active::after{
  width:100%;
}

/* RIGHT */
.pk-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang-select{
  padding:5px 8px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

.icon-btn{
  font-size:18px;
  color:var(--dark);
  cursor:pointer;
}

.icon-btn:hover{
  color:var(--gold);
}

.call-btn{
  background:linear-gradient(135deg,var(--gold),#f1c40f);
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}

.hamburger span{
  width:22px;
  height:2px;
  background:var(--dark);
}

/* MOBILE HEADER */
@media(max-width:991px){

  /* Header stack */
  .header-inner{
    flex-direction:column;
    align-items:center;
    gap:10px;
    padding-bottom:10px;
  }

  /* Logo center */
  .pk-logo{
    text-align:center;
  }

  /* Right icons BELOW logo */
  .pk-right{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .pk-right-inner{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:6px;
  }

  /* Menu opens AFTER header fully */
  .pk-menu{
    position:relative;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    gap:16px;
    padding:20px;
    display:none;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
  }

  .pk-menu.show{
    display:flex;
  }

  /* Hamburger always visible */
  .hamburger{
    display:flex;
  }
}

/* ================= HERO SLIDER ================= */
/* HERO SLIDER HEIGHT FIX */
.pk-hero .carousel-item {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.45);
}

.hero-box {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 90px auto;
  background: rgba(255,255,255,0.92);
  padding: 32px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.hero-box h1 {
  font-size: 36px;
}

.hero-box p {
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .pk-hero .carousel-item {
    height: 320px;
  }

  .hero-box {
    margin: 55px 15px;
    padding: 22px 18px;
  }

  .hero-box h1 {
    font-size: 24px;
  }
}


/* ================= SERVICES ================= */
.pk-services{
  padding:90px 0;
  background:#ffffff;
}

.section-title{
  font-family:'Playfair Display',serif;
  font-size:36px;
  color:var(--dark);
}

.section-subtitle{
  color:#666;
  font-size:15px;
}

.service-card{
  background:#ffffff;
  padding:28px 18px;
  border-radius:20px;
  text-align:center;
  text-decoration:none;
  height:100%;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:.35s;
}

.service-icon{
  width:64px;
  height:64px;
  margin:0 auto 15px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff4df;
}

.service-icon i{
  font-size:30px;
  color:var(--gold);
}

.service-card h6{
  font-size:16px;
  font-weight:700;
  color:var(--dark);
}

.service-card p{
  font-size:13px;
  color:#666;
}

.service-card:hover{
  transform:translateY(-10px);
  background:linear-gradient(180deg,var(--gold),#f1c40f);
}

.service-card:hover h6,
.service-card:hover p,
.service-card:hover i{
  color:#fff;
}

/* ================= HOROSCOPE ================= */
/* ================= HOROSCOPE / RASHI SECTION ================= */
.pk-horoscope{
  padding:90px 0;
  background:#fff8ec;
}

/* GRID FIX */
.pk-horoscope .row{
  row-gap:24px;
}

/* RASHI CARD */
.rashi-card{
  background:#ffffff;
  padding:26px 20px;
  border-radius:22px;
  text-align:center;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  transition:all .35s ease;
}

/* ICON CIRCLE */
.rashi-card i{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#fff4df;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#d39c2c;
  margin-bottom:14px;
  transition:.35s;
}

/* TITLE */
.rashi-card h6{
  font-size:15px;
  font-weight:700;
  color:#1b2a4e;
  margin-bottom:8px;
}

/* TEXT */
.rashi-card p{
  font-size:13px;
  color:#555;
  line-height:1.5;
  margin:0;
}

/* HOVER EFFECT */
.rashi-card:hover{
  transform:translateY(-8px);
  background:linear-gradient(180deg,#d39c2c,#f1c40f);
  box-shadow:0 22px 45px rgba(211,156,44,0.35);
}

.rashi-card:hover i{
  background:#ffffff;
  color:#d39c2c;
}

.rashi-card:hover h6,
.rashi-card:hover p{
  color:#ffffff;
}

/* MOBILE */
@media(max-width:768px){
  .rashi-card{
    padding:22px 16px;
  }
  .rashi-card i{
    width:52px;
    height:52px;
    font-size:24px;
  }
}


/* ================= ABOUT ================= */
.pk-about{
  padding:80px 0;
  background:#ffffff;
}

.about-text{
  font-size:15px;
  color:#555;
  line-height:1.7;
}

.about-highlight{
  background:var(--light);
  padding:30px;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ================= PRODUCTS ================= */
.pk-products{
  padding:90px 0;
  background:var(--light);
}

.product-card{
  background:#ffffff;
  padding:18px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:.35s;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
}

.badge-discount{
  position:absolute;
  top:10px;
  left:10px;
  background:var(--gold);
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
}

.product-card button{
  background:linear-gradient(135deg,var(--gold),#f1c40f);
  border:none;
  color:#fff;
  padding:8px 22px;
  border-radius:30px;
}

/* ================= FOOTER ================= */
.pk-footer{
  background:#111827;
  color:#cbd5e1;
  padding:70px 0 30px;
}

.pk-footer h5{
  color:#ffffff;
  font-size:17px;
  font-weight:700;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--gold);
}

.footer-bottom{
  border-top:1px solid #1f2933;
  margin-top:30px;
  padding-top:15px;
  text-align:center;
  font-size:13px;
  color:#94a3b8;
}
/* ============ HOROSCOPE ============ */
.pk-horoscope{
  padding:90px 0;
  background:#fff8ec;
}

/* Tabs */
.rashi-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom:30px;
}

.rashi-tab{
  border:none;
  background:#ffffff;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  color:#1b2a4e;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  transition:.3s;
}

.rashi-tab.active,
.rashi-tab:hover{
  background:linear-gradient(135deg,#d39c2c,#f1c40f);
  color:#ffffff;
}

/* Content */
.rashi-content{
  display:none;
  background:#ffffff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.rashi-content.active{
  display:block;
}

.rashi-content h3{
  color:#1b2a4e;
  margin-bottom:12px;
}

.rashi-content p{
  color:#555;
  line-height:1.7;
}

.rashi-content ul{
  margin-top:12px;
  padding-left:18px;
}

.rashi-content ul li{
  font-size:14px;
  color:#444;
}

/* Mobile */
@media(max-width:768px){
  .rashi-tab{
    font-size:13px;
    padding:6px 14px;
  }
  .rashi-content{
    padding:22px;
  }
}
/* TOP BAR – BRAND MATCHED */
.pk-topbar {
	padding: 6px 0;
	font-size: 14px;
	background-color: #205DAF;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* About link */
.about-link {
  color: #f4b400; /* logo golden color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.about-link:hover {
  color: #FE7904;
  text-decoration: underline;
}

/* Divider */
.divider {
  color: #aaa;
}

/* Center Name */
.center-name {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .pk-topbar {
    font-size: 12px;
  }
}

.company-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.company-card img {
  max-width: 100%;
  height: 45px;
  object-fit: contain;
  margin-bottom: 10px;
}

.company-card h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.company-card:hover {
  transform: translateY(-6px);
}


/* FOOTER BASE */
.pk-footer {
  background: #0f172a; /* dark professional */
  color: #cbd5e1;
  font-size: 14px;
}

/* FOOTER HEADINGS */
.pk-footer h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

/* FOOTER TEXT */
.pk-footer .footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* FOOTER LINKS FIX */
.pk-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pk-footer .footer-links li {
  margin-bottom: 10px;   /* ?? GAP BETWEEN LINKS */
}

.pk-footer .footer-links li:last-child {
  margin-bottom: 0;
}

.pk-footer .footer-links a {
  font-size: 14px;       /* ?? SMART FONT SIZE */
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pk-footer .footer-links a:hover {
  color: #38bdf8;        /* hover highlight */
  padding-left: 4px;    /* subtle motion */
}

/* CONTACT LINKS */
.pk-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.pk-footer a:hover {
  color: #38bdf8;
}

/* SOCIAL ICONS */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #38bdf8;
  color: #000;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #94a3b8;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 767px) {
  .pk-footer h5 {
    font-size: 15px;
  }
  .pk-footer .footer-links li {
    margin-bottom: 8px;
  }
}

