body {
  background: #0a0a0a;
  color: #fff;
  font-family: sans-serif;
  margin: 0;
}

header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(145deg, #111, #222);
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 0 30px #ffcc5b;
}

header h1 {
  font-size: 2.5em;
  margin: 10px 0;
}

header p {
  color: #ccc;
  font-size: 1.2em;
}

.cta {
  display: inline-block;
  padding: 12px 25px;
  background: #ffcc5b;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px;
  transition: 0.3s;
}

.cta:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

.cta.whatsapp {
  background: #25D366;
  color: #fff;
}

.cta.whatsapp:hover {
  background: #128C7E;
}

.gallery {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery h2 {
  text-align: center;
  color: #ffcc5b;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px;
}

.image-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 20px black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.image-card:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 10px 30px #ffcc5b;
}

.image-card:hover img {
  transform: scale(1.1);
}

/* Contact Section Styles */
#contact {
  padding: 50px 20px;
  max-width: 600px;
  margin: 40px auto;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 5px 20px black;
  color: #fff;
}

#contact h2 {
  text-align: center;
  color: #ffcc5b;
  margin-bottom: 30px;
  font-size: 2em;
}

#contact p {
  text-align: center;
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1.1em;
}

#contact p a {
  color: #ffcc5b;
  text-decoration: none;
  font-weight: bold;
}

#contact p a:hover {
  color: #ff9900;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact form input,
#contact form textarea {
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #ffcc5b;
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
}

#contact form input::placeholder,
#contact form textarea::placeholder {
  color: #888;
}

#contact form button {
  padding: 12px;
  background: #ffcc5b;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

#contact form button:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9em;
  color: #aaa;
}




/* --- Ultra Compact Poster Header --- */
.poster-header-fixed {
  width: 100%;
  background-color: #000;
  font-family: 'Arial Narrow', Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Yellow Strip: Height sirf 20px */
.p-top-bar {
  background-color: #ffcc00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 22px; 
}

.p-brand {
  color: #000;
  font-weight: 900;
  font-size: 10px;
  padding-left: 8px;
}

.p-status {
  background-color: #000;
  color: #fff;
  height: 100%;
  padding: 0 10px 0 20px;
  font-size: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Main Body: Height ko restrict kiya hai */
.p-main-body {
  display: grid;
  grid-template-columns: 0.8fr 2fr 1fr; /* Teeno columns ek line mein */
  align-items: center;
  padding: 5px 8px; /* Minimum padding */
  height: 55px; /* Header ki total body height fix kar di */
}

.p-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo: Size chota */
.p-img {
  max-height: 80px;
  width: auto;
}

/* Text: Ek dum tight alignment */
.p-text-area {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 5px;
}

.p-l1 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.p-l2 {
  color: #ffcc00;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.p-l3 {
  color: #fff;
  font-size: 8.5px;
  margin-top: 2px;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* Support: Tight spacing */
.p-support-area {
  gap: 4px;
}

.p-icon {
  background-color: #ffcc00;
  color: #000;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.p-supp-txt {
  display: flex;
  flex-direction: column;
}

.p-247 {
  color: #ffcc00;
  font-size: 18px;
  font-weight: bold;
  line-height: 0.8;
}

.p-label {
  color: #fff;
  font-size: 8px;
  font-weight: bold;
}

/* Mobile Screen Smallest Fix */
@media (max-width: 360px) {
  .p-l1 { font-size: 20px; }
  .p-l2 { font-size: 22px; }
  .p-img { max-height: 40px; }
}
/* ================= PREMIUM SERVICE LOCATION DESIGN ================= */

.premium-areas{
  padding:60px 15px;
  background:#050505;
}

/* Heading */

.premium-areas h2{
  text-align:center;
  color:#ffcc00;
  font-size:42px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:15px;
  text-transform:uppercase;
  text-shadow:
  0 0 10px rgba(255,204,0,.25);
}

.premium-subtext{
  text-align:center;
  color:#d5d5d5;
  font-size:16px;
  line-height:1.8;
  max-width:900px;
  margin:auto;
  margin-bottom:45px;
}

/* Grid */

.premium-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(180px,1fr));

  gap:18px;

  max-width:1400px;
  margin:auto;
}

/* Card */

.premium-box{

  position:relative;

  background:
  linear-gradient(
  145deg,
  #171717,
  #0f0f0f);

  border:
  1px solid rgba(255,204,0,.18);

  border-radius:18px;

  padding:18px 14px;

  text-align:center;

  color:#fff;

  font-size:15px;
  font-weight:700;

  letter-spacing:.3px;

  overflow:hidden;

  transition:.35s ease;

  box-shadow:
  0 5px 18px rgba(0,0,0,.45);
}

/* Golden Glow Dot */

.premium-box::before{
  content:"";
  position:absolute;
  top:10px;
  right:10px;

  width:7px;
  height:7px;

  border-radius:50%;

  background:#ffcc00;

  box-shadow:
  0 0 8px #ffcc00;
}

/* Hover */

.premium-box:hover{

  transform:
  translateY(-6px)
  scale(1.03);

  color:#ffcc00;

  border-color:#ffcc00;

  background:
  linear-gradient(
  145deg,
  #1f1f1f,
  #111);

  box-shadow:
  0 10px 28px rgba(255,204,0,.16);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .premium-areas{
    padding:50px 5px;
  }

  .premium-areas h2{
    font-size:30px;
  }

  .premium-subtext{
    font-size:14px;
    margin-bottom:35px;
  }

  .premium-grid{
    grid-template-columns:
    repeat(2,1fr);

    gap:12px;
  }

  .premium-box{
    padding:15px 10px;
    font-size:13px;
    border-radius:14px;
  }

}

/* Small Mobile */

@media(max-width:420px){

  .premium-grid{
    grid-template-columns:
    repeat(2,1fr);
  }

  .premium-box{
    font-size:12px;
    padding:14px 8px;
  }

}


/* ===== RESPONSIVE HEADER FIX ===== */

.p-main-body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px;
  flex-wrap:nowrap;
}

.p-logo-area{
  flex:0 0 80px;
}

.p-logo-area img{
  width:100%;
  max-width:80px;
  height:auto;
  display:block;
}

.p-text-area{
  flex:1;
  min-width:0;
}

.p-l1{
  font-size:clamp(16px,4vw,28px);
}

.p-l2{
  font-size:clamp(20px,5vw,40px);
}

.p-l3{
  font-size:clamp(10px,2.5vw,16px);
}

.p-support-area{
  flex:0 0 70px;
  text-align:center;
}

.p-icon{
  font-size:28px;
}

.p-247{
  font-size:22px;
  font-weight:bold;
}

/* Small mobile fix */
@media (max-width:480px){

  .p-main-body{
    gap:6px;
    padding:6px;
  }

  .p-logo-area{
    flex:0 0 65px;
  }

  .p-support-area{
    flex:0 0 55px;
  }

  .p-l1{
    font-size:15px;
  }

  .p-l2{
    font-size:22px;
  }

  .p-l3{
    font-size:9px;
  }

}

