
:root{
  --primary:#0d6efd;
  --secondary:#20c997;
  --dark:#0b1c2d;
}
body{font-family:'Segoe UI',sans-serif;background:#f5f7fa}

/* HERO */
.hero{
  background:linear-gradient(122deg, #000000, #042c71);
  color:#fff;padding:40px 0;
}
.hero-box{
  height:260px;
  border:2px dashed rgba(255,255,255,.6);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden; /* image bahar na nikle */
}

.hero-box img{
  width:100%;
  height:100%;
  object-fit:cover; /* image crop ho kar box fill kare */
  border-radius:16px;
}
.logo-box{
  width:70px;
  height:70px;
  border:2px dashed #fff;
  border-radius:12px;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logo-box img{
  width:106%;
  height:101%;
  object-fit:contain;   /* logo crop na ho */
}

/* ===== SERVICES ONLY: MOBILE ICON GRID ===== */
@media (max-width: 767px){

  /* only services grid */
  .services-section .service-card h5{
    display:none;                 /* text hide */
  }

  .services-section .service-card{
    padding:14px 8px;             /* compact */
  }

  .services-section .icon-box{
    margin:0 auto;
    width:64px;
    height:64px;
    font-size:28px;
  }

  /* force 3 icons per row ONLY here */
  .services-section .row.g-4 > div{
    flex:0 0 33.3333%;
    max-width:33.3333%;
  }
}

/* SERVICES */
.service-card{
  background:#fff;border-radius:16px;padding:25px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  cursor:pointer;transition:.3s;
}
.service-card:hover{transform:translateY(-8px)}
.icon-box{
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(122deg, #000000, #042c71);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:26px;margin-bottom:15px;
}
 /* shiraj image add  */
.image-box{
  display:grid;
  grid-template-columns:repeat(3, 1fr); /* desktop = 3 images per row */
  gap:12px;
  background:#fff;
  padding:15px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.image-box img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
  transition:0.3s;
}

.image-box img:hover{
  transform:scale(1.05);
}

/* Tablet */
@media (max-width:992px){
  .image-box{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width:576px){
  .image-box{
    grid-template-columns:1fr;
  }
  .image-box img{
    height:200px;
  }
}

/* shiraj video */
.video-box{
  display:flex;
  gap:15px;
  background:#fff;
  padding:15px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.video-item{
  flex:1;
}

.video-item video{
  width:100%;
  height:220px;
  border-radius:12px;
  object-fit:cover;
  background:#000;
}

/* Mobile me niche niche */
@media (max-width:767px){
  .video-box{
    flex-direction:column;
  }
  .video-item video{
    height:200px;
  }
}


/* SLIDE PANEL */
.service-panel{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  height:75vh;                 /* thoda aur height */
  background:#f8f9fa;

  border-top-left-radius:45px; /* zyada bend */
  border-top-right-radius:45px;

  transform:translateY(100%);
  transition:.4s ease;
  z-index:9999;

  display:flex;
  flex-direction:column;       /* IMPORTANT */
}
.service-panel.active{
  transform:translateY(0);
}

.close-btn{font-size:26px;cursor:pointer}

.price-card{
  background:#fff;border-radius:16px;padding:25px;
  box-shadow:0 8px 25px rgba(0,0,0,.1);
}
.price{font-size:32px;font-weight:700;color:linear-gradient(122deg, #000000, #042c71)}
.img-placeholder{
  height:160px;border:2px dashed #bbb;
  border-radius:12px;display:flex;
  align-items:center;justify-content:center;
}
.service-image img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
}

/* ABOUT */
.about-box{
  background:#fff;border-radius:16px;
  padding:30px;box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* FOOTER */
.footer{background:#0b1c2d;color:#cfd8dc}
.footer h5{color:#fff}
.footer a{color:#cfd8dc;text-decoration:none;display:block;margin-bottom:8px}
.footer a:hover{color:#20c997}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:30px;padding-top:15px;font-size:14px;
}
.social-icons a{
  display:inline-flex;width:38px;height:38px;
  background:rgba(255,255,255,.1);
  align-items:center;justify-content:center;
  border-radius:50%;margin-right:10px;
}
.social-icons{
  display:flex;
  gap:16px;
}

.social-icons a{
  color:#fff;            /* white color */
  font-size:20px;        /* icon size */
  text-decoration:none;
  transition:0.3s ease;
}

.social-icons a:hover{
  color:#ddd;            /* hover par halka grey */
  transform:scale(1.1); /* thoda zoom effect */
}

/* ===== MOBILE FOOTER ONLY ===== */
.mobile-footer-contact{
  background:#0b1c2d;
  color:#ffffff;
  padding:60px 20px 20px; /* bottom tight */
}

.mobile-footer-contact .talk-text{
  font-family:'Oswald', sans-serif;
  font-size:42px;
  font-weight:700;
  line-height:1.05;
  letter-spacing:2px;
  text-transform:uppercase;
}

.mobile-footer-contact .email-text{
  font-family:'Poppins', sans-serif;
  font-size:18px;
  font-weight:300;
  letter-spacing:1px;
  opacity:0.9;
  word-break:break-all;
}

.mobile-footer-contact h5{
  color:#ffffff;
  margin-top:25px;
}

.mobile-footer-contact p{
  font-size:14px;
  opacity:0.85;
}


/* ===== FORCE DESKTOP FOOTER HIDE ON MOBILE ===== */
/* PHONE: hide desktop columns only */
@media (max-width: 767px){
  .desktop-footer{
    display:none !important;
  }
}

/* Desktop: hide mobile footer */
@media (min-width: 768px){
  .mobile-footer-contact{
    display:none;
  }
}
@media (max-width: 767px){
  .footer-bottom{
    margin-top:10px !important;
    padding-top:10px;
  }
}
.service-body{
  flex:1;                 /* header ke baad full space */
  overflow-y:auto;        /* SCROLL HERE */
  -webkit-overflow-scrolling:touch; /* smooth mobile scroll */
}

.panel-header{
  background:linear-gradient(122deg, #000000, #042c71);
  color:#fff;

  padding:10px 18px;   /* 👈 height kam */
  
  border-top-left-radius:45px;
  border-top-right-radius:45px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  position:relative;
}

#serviceTitle{
  font-weight:600;
  margin:0;
  font-size: 20px
}
.close-btn{
  font-size:15px;
  background:rgba(255,255,255,0.25);
  padding:6px 10px;
  border-radius:10px;
}
.panel-header::before{
  content:'';
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:50px;
  height:5px;
  background:rgba(255,255,255,0.7);
  border-radius:10px;
}
.hero-call-btn{
  font-weight:600;
  padding:14px 30px;
  border-radius:30px;
}

/* MOBILE: full width + strong CTA */
@media (max-width: 767px){
  .hero-call-btn{
    width:100%;
    font-size:18px;
  }
}

