/* COLORS (logo se match kar lena) */
:root{
  --primary:#ff6b00;
  --dark:#0f172a;
}

body{
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
}

/* HEADER BASE */
#mainHeader{
  background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.01));
  padding:8px 0;
  transition:0.4s;
}



/* SCROLL EFFECT */
#mainHeader.scrolled{
  background:#0f172a;
  padding: 0;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* LOGO */
.navbar-brand{
  font-weight:700;
  color:#fff;
  font-size:22px;
}

/* NAV LINKS */
.nav-link{
  color:#fff !important;
  font-weight:500;
  margin:0 15px;
  position:relative;
  transition:0.3s;
  font-size: 18px;
}

/* UNDERLINE HOVER */
.nav-link::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  background:var(--primary);
  left:0;
  bottom:-6px;
  transition:0.3s;
}
.nav-link:hover::after{
  width:100%;
}

/* CTA BUTTON */
.cta-btn{
  position:relative;
  display:inline-block;
  padding:5px 20px;
  border-radius: 30px;
  font-weight: 500;
  color:#fff;
  border:2px solid var(--primary);
  overflow:hidden;
  z-index:1;
  font-size: 16px;
  transition:0.4s;
  text-decoration: none;
}

/* SLIDE FROM TOP EFFECT */
.cta-btn::before{
  content:'';
  position:absolute;
  top:-100%;
  left:0;
  width:100%;
  height:100%;
  background:var(--primary);
  z-index:-1;
  transition:0.4s;
}

.cta-btn:hover::before{
  top:0;
}

.cta-btn:hover{
  color:#fff;
}

/* MOBILE MENU */
.offcanvas{
  background:#0f172a;
  color:#fff;
}

.offcanvas .nav-link{
  color:#fff !important;
  font-size:18px;
  padding:10px 0;
}

/* TOGGLER */
.navbar-toggler{
  border:none;
  color:#fff;
}


/* HERO VIDEO SECTION */
.hero-video{
  position:relative;
  height:100vh;
  overflow:hidden;
}

/* VIDEO */
.hero-bg-video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(-50%,-50%);
  z-index:1;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;

  z-index:2;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:3;
  color:#fff;
  top:50%;
  transform:translateY(-50%);
}

.hero-content h1{
  font-size:60px;
  font-weight:600;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  opacity:0.9;
}

/* BUTTONS */
.cta-btn{
  padding:12px 30px;
  border:2px solid #ff6b00;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.about-content .cta-btn{
  color: #000;
}

.about-content .cta-btn:hover{
  color: #ffffff;
}

.about-content{
  margin-left: 20px;
}

.cta-btn-outline{
  padding:12px 30px;
  border:2px solid #fff;
  color:#fff;
}

/* BUTTON HOVER */
.cta-btn::before{
  content:'';
  position:absolute;
  top:-100%;
  left:0;
  width:100%;
  height:100%;
  background:#ff6b00;
  z-index:-1;
  transition:.4s;
}

.cta-btn:hover::before{
  top:0;
}

/* MOBILE FIX */
@media(max-width:768px){
  .hero-content h1{
    font-size:32px;
  }
}

/* ABOUT SECTION */
.about-section{
  padding:60px 0;
  background:linear-gradient(to right,#f8f9fa,#ffffff);
}

/* IMAGE */
.about-img-wrapper{
  position:relative;
  overflow:hidden;
  border-radius:20px;
}

.main-img{
  border-radius:20px;
  transition:0.6s;
}

.about-img-wrapper:hover .main-img{
  transform:scale(1.08);
}

/* FLOATING BOX */
.about-float-box{
  position:absolute;
  bottom:-30px;
  left:30px;
  background:#00abea;
  color:#fff;
  padding:20px 30px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.about-float-box h4{
  font-size:28px;
  margin:0;
}

.about-float-box p{
  margin:0;
  font-size:14px;
}

/* TEXT */
.about-subtitle{
  color:#e31e26;
  font-weight:600;
  letter-spacing:1px;
}

.about-title{
  font-size:40px;
  font-weight:800;
  margin:15px 0;
}

.about-text{
  color:#555;
  line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-title{
    font-size:25px;
  }

  .about-float-box{
    left:10px;
    bottom:-20px;
    padding:15px;
  }
}

/* SECTION */
.services-section{
  padding:60px 0;
  background:#0f172a;
  color:#fff;
}

/* HEADING */
.section-subtitle{
  color:#ff6b00;
  letter-spacing:2px;
}

.section-title{
  font-size:40px;
  font-weight:800;
}

/* CARD */
.service-card{
  position:relative;
  overflow:hidden;
  border-radius:15px;
}

.service-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:0.6s;
}

/* OVERLAY */
.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
  padding:25px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:0.4s;
}

/* NUMBER */
.service-overlay span{
  font-size:50px;
  font-weight:800;
  color:#ff6b00;
}

/* TEXT */
.service-overlay h4{
  font-size:22px;
  margin:10px 0;
}

.service-overlay p{
  font-size:14px;
  opacity:0.8;
}

/* HOVER EFFECT 🔥 */
.service-card:hover img{
  transform:scale(1.2);
}

/* .service-card:hover .service-overlay{
  background:rgba(0,0,0,0.95);
} */

.service-card:hover span{
  transform:translateY(-10px);
}

/* RESPONSIVE */
@media(max-width:768px){
  .section-title{
    font-size:25px;
  }
  .why-float-card{
    max-width: 100%!important;
  }
  .wcs-content{
    padding-left: 0px;
    margin-top: 30px;
  }
  .review-box{
    padding: 20px!important;
  }
  .career-form-box{
    padding: 20px!important;
    margin-top: 20px;
    margin-left: 0px!important;
  }
}

/* SECTION */
.why-light{
  padding:60px 0;
  background:#ffffff;
}

/* IMAGE */
.why-img-box{
  border-radius:20px;
  overflow:hidden;
  position:relative;
}

.why-img-box img{
  width:100%;
  transition:0.6s;
}

.why-img-box:hover img{
  transform:scale(1.08);
}

.wcs-content{
  padding-left: 20px;
}

.why-float-card h5{
  font-size: 18px;
  font-weight: 700;
}

.why-float-card p{
  font-size: 15px;
  margin-bottom: 0px;
}

/* FLOAT CARD */
.why-float-card{
  position:absolute;
  bottom:-30px;
  right:20px;
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  max-width:250px;
}

.why-float-card i{
  font-size:30px;
  color:#ff6b00;
  margin-bottom:10px;
}

/* FEATURES */
.why-feature{
  display:flex;
  gap:15px;
  padding-bottom: 10px;
    padding-top: 10px;
  transition:0.3s;
  border-bottom: 1px solid #aaa;
  align-items: center;
}

.why-feature:last-child{
  border-bottom: 0px ;
}

.why-feature i{
  font-size:25px;
  color:#ff6b00;
  min-width:40px;
}

/* HOVER EFFECT 🔥 */
.why-feature:hover{
  transform:translateX(8px);
}

.why-feature h5{
  margin:0;
  font-weight:700;
}

.why-feature p{
  margin:5px 0 0;
  font-size:14px;
  color:#666;
}

/* RESPONSIVE */
@media(max-width:768px){
  .why-float-card{
    position:static;
    margin-top:15px;
  }
}

/* SECTION */
.career-section{
  padding:60px 0;
  background:#f8f9fb;
}

/* REVIEW BOX */
.review-box{
  background:#fff;
  padding:30px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  
}

.review-box p{
  font-style:italic;
}

.review-box h5{
  margin-top:15px;
  color:#ff6b00;
}

/* ARROWS 🔥 */
.custom-arrow{
  width:35px;
  height:35px;
  background:#ff6b00;
  border-radius:50%;
  top:50%;
  transform:translateY(-50%);
}

.custom-arrow i{
  color:#fff;
  font-size:16px;
}

/* DOTS */
.carousel-indicators [data-bs-target]{
  background:#ff6b00;
}

/* FORM BOX 🔥 */
.career-form-box{
  background:#00abea;
  padding:35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
  margin-left: 20px;
}

/* INPUT */
.form-control{
  border:none;
  padding:12px;
  border-radius:8px;
}

/* INPUT FOCUS */
.form-control:focus{
  box-shadow:0 0 10px rgba(255,255,255,0.5);
}

/* BUTTON */
.cta-form-btn{
  background:#fff;
  color:#ff6b00;
  font-weight:600;
  border-radius:8px;
  transition:0.3s;
  border-color: #ff6b00;
  padding: 10px;
}

.cta-form-btn:hover{
  background:#ff6b00;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .custom-arrow{
    display:none;
  }
}


/* FOOTER */
.footer-section{
  background:#0b1120;
  color:#ccc;
  padding-top:80px;
}

/* LOGO */
.footer-logo{
  color:#fff;
  font-weight:800;
}

/* HEADINGS */
.footer-section h5{
  color:#fff;
  margin-bottom:15px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#aaa;
  text-decoration:none;
  transition:0.3s;
  font-size: 15px;
}

/* HOVER 🔥 */
.footer-links a:hover{
  color:#ff6b00;
  padding-left:5px;
}

/* CONTACT ICON */
.footer-section i{
  color:#ff6b00;
  margin-right:8px;
}
.footer-section p{
   font-size: 15px;
}
/* SOCIAL */
.social-icons a{
  display:inline-block;
  width:35px;
  height:35px;
  line-height:35px;
  text-align:center;
  background:#1a2238;
  color:#fff;
  border-radius:50%;
  margin-right:10px;
  transition:0.3s;
}

.social-icons a i{
  margin-right: 0px!important;
}

/* HOVER */
.social-icons a:hover{
  background:#ff6b00;
  transform:translateY(-5px);
  color: #fff!important;
}

.social-icons a:hover i{
  color: #fff;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:40px;
  padding:20px 0;
  font-size:14px;
  color:#aaa;
}



/* ===== BREADCRUMB ===== */
.pkm-breadcrumb {
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0') center/cover no-repeat;
    padding: 200px 0px 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkm-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.pkm-breadcrumb-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.pkm-breadcrumb-content h2 {
    font-weight: 700;
    font-size: 50px;
}

.pkm-breadcrumb-content p {
    margin: 0;
    color: #ff6b00;
}

.pkm-breadcrumb-content p a{
  color: #fff;
  text-decoration: none;
}

/* ===== ABOUT ===== */
.pkm-about {
    padding: 60px 0;
}

.pkm-about h3 {
    font-weight: 700;
}

/* ===== MISSION VISION ===== */
.pkm-mv-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.pkm-mv-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.pkm-mv-card:hover {
    transform: translateY(-5px);
}

.pkm-mv-icon {
    font-size: 35px;
    color: #0aa1b1;
    margin-bottom: 15px;
}

/* ===== WHY CHOOSE US ===== */
.pkm-why {
    padding: 60px 0;
}

.pkm-why-box {
    text-align: center;
    padding: 20px;
}

.pkm-why-icon {
    font-size: 30px;
    color: #0aa1b1;
    margin-bottom: 10px;
}




.bgh-mv-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Image */
.bgh-mv-img {
    overflow: hidden;
    border-radius: 20px;
}

.bgh-mv-img img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.bgh-mv-img:hover img {
    transform: scale(1.08);
}

/* Cards */
.bgh-mv-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid #00abea;
}

.bgh-mv-card h3 {
    color: #ff6600;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Hover Effect */
.bgh-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Left Border Accent */

.bgh-mv-card p{
  font-size: 15px;
  line-height: 1.5;
}

.pmk-services-section {
    background: #f8f9fa;
}

/* Title */
.pmk-sec-title {
    font-weight: 700;
}

.pmk-sec-subtitle {
    color: #666;
}

/* Card */
.pmk-service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    height: 100%;
}

.pmk-service-content h4{
  font-size: 20px;
  font-weight: 700;
}

.pmk-service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.pmk-service-content {
    padding: 20px;
    position: relative;
}

.pmk-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #ff6600;
    color: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
}

/* Hover Effect */
.pmk-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.pmk-enquiry-btn {
    background: #ff6600;
    border: none;
    width: 100%;
}

.pmk-enquiry-btn:hover {
    background: #e65c00;
}

.pmk-modal-content {
    border-radius: 15px;
    padding: 10px;
}

/* Modal Box */
.pmk-modal-box {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

/* Header */
.pmk-modal-header {
    background: linear-gradient(45deg, #0688b6, #01adeb);
    color: #fff;
    padding: 10px;
    position: relative;
}

.pmk-modal-header h4 {
    margin: 0;
}

.pmk-modal-header p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0px;
}

/* Close button */
.pmk-close {
    position: absolute;
    right: 15px;
    top: 15px;
    filter: invert(1);
}

/* Floating Inputs */
.pmk-input-group {
    position: relative;
    margin-bottom: 20px;
}

.pmk-input-group input,
.pmk-input-group select,
.pmk-input-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    background: transparent;
    z-index: 11;
    position: relative;

}

/* Label */
.pmk-input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    font-size: 14px;
    color: #777;
    transition: 0.3s;
    z-index: 0;
}

/* Focus effect */
.pmk-input-group input:focus + label,
.pmk-input-group input:valid + label,
.pmk-input-group textarea:focus + label,
.pmk-input-group textarea:valid + label,
.pmk-input-group select:focus + label,
.pmk-input-group select:valid + label {
    top: 0px;
    font-size: 12px;
    color: #ff6600;
    background-color: #fff;
    z-index: 111;
}

/* Submit Button */
.pmk-submit-btn {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.pmk-submit-btn:hover {
    transform: scale(1.05);
}

/* ===== SECTION ===== */
.jhakas-contact-section{
    padding:60px 0;
}

/* ===== BOX ===== */
.jhakas-contact-box{
    background:#1e293b;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.5);
    color: #fff;
}

/* ===== ICON ===== */
.jhakas-icon{
    width:55px;
    height:55px;
    background:#00adeb;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    margin-right:15px;
}

/* ===== INFO ITEM ===== */
.jhakas-info{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

/* ===== FORM ===== */
.jhakas-form input,
.jhakas-form textarea{
    background:transparent;
    border:1px solid #fff;

    color:#fff;
    border-radius:10px;
    padding:8px;
}

.jhakas-form input::placeholder,
.jhakas-form textarea::placeholder{
  color: #b2b2b2;
}

.jhakas-form input:focus,
.jhakas-form textarea:focus{
    outline:none;
    box-shadow:0 0 10px #00adeb;
    background-color: transparent;
    color: #fff;

}

/* ===== BUTTON ===== */
.jhakas-btn{
    background:#e65c00;
    border:none;
    padding:12px 30px;
    border-radius:30px;
    color:#fff;
    transition:0.3s;
}

.jhakas-btn:hover{
    background:#00adeb;
}

/* ===== SOCIAL ===== */
.jhakas-social a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#e65c00;
    border-radius:50%;
    margin-right:10px;
    color:#fff;
    transition:0.3s;
    text-decoration: none;
}


.jhakas-social a:hover{
    background:#00adeb;
}

/* ===== MAP ===== */
.jhakas-map iframe{
    width:100%;
    height:350px;
    border-radius:20px;
    border:none;
}


@media screen and (max-width:768px) {
  .hero-video {
   
    height: 60vh;

}

.about-content{
  margin-left: 0px;
  margin-top: 40px;
}

.pkm-breadcrumb{
  padding: 150px 0px 80px;
}

}

.btn-close{
  background: url(../img/close.png);
  background-repeat: no-repeat;
}



/* PMK Client Hunt Section */
.pmk-client-hunt {
  background: linear-gradient(135deg, #f8f9fb, #edf3fb);
}

.pmk-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #04abee; /* PMK Primary Blue */
}

.pmk-subtitle {
  font-size: 15px;
  color: #555;
  margin-top: 0.8rem;
}

.pmk-benefits li {
  font-size: 1rem;
  color: #030303;
  margin-bottom: 0.6rem;
  font-weight: 500;
  padding: 10px;
    background: #fff;
    border-radius: 10px;
}

.pmk-benefits i {
  color: #ff7f00; /* PMK Accent Orange */
}

.pmk-form-card {
  background: #fff;
  border-radius: 10px;
}

.pmk-input {
  border: 1px solid #04abee;
  border-radius: 5px;
  padding: 8px 10px;
  height: 40px;
  font-size: 0.95rem;
}

.pmk-input:focus {
  border-color: #ff7f00;
  box-shadow: 0 0 0 0.2rem rgba(255,127,0,0.25);
}

.pmk-textarea {
  border: 1px solid #04abee;
  border-radius: 5px;
  padding: 8px 10px;
  height: 80px;
  font-size: 0.95rem;
}

.pmk-textarea:focus {
  border-color: #ff7f00;
  box-shadow: 0 0 0 0.2rem rgba(255,127,0,0.25);
}

.pmk-btn {
  background-color: #04abee;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}

.pmk-btn:hover {
  background-color: #ff7f00;
  color: #fff;
}

@media(max-width: 991px){
  .pmk-title {
    font-size: 2rem;
  }
}

.pmk-benefits{
   display: flex;
   gap: 10px;
   justify-content: space-between;
}