:root {
  --gold: #ffd700;
  --black: #000000;
  --dark: #111111;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%; /* prevents oversized elements */
}

html, body {
  width: 100%;
  overflow-x: hidden; /* fully disable horizontal scroll */
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--black);
  color: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- HEADER ---------- */
header {
  background: radial-gradient(circle at top left, var(--gold), #333);
  padding: 80px 20px 60px;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

header h1 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--gold);
}

header h2 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--light);
}

/* ---------- BADGES ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  overflow-x: hidden;
}

.badge {
  border-radius: 999px;
  border: 1px solid #ffffff33;
  padding: 6px 12px;
  background: #00000066;
  text-align: center;
  white-space: nowrap;
}

/* ---------- CTA BUTTONS ---------- */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  overflow-x: hidden;
}

.btn-primary,
.btn-ghost {
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #ffea70;
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid var(--gold);
  padding: 11px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- MAIN ---------- */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  overflow-x: hidden;
  width: 100%;
}

.section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 24px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  text-align: center;
  color: #cccccc;
  margin-bottom: 28px;
}

/* ---------- TWO COLUMN ---------- */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  overflow-x: hidden;
}

.two-column .col {
  flex: 1 1 260px;
  min-width: 0;
}

/* ---------- SERVICES ---------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: 100%;
}

.service-block {
  background: var(--dark);
  border-radius: 14px;
  padding: 16px 16px 18px;
  border: 1px solid #ffffff22;
  transition: 0.2s ease;
  max-width: 100%;
  overflow-wrap: break-word;
}

.service-block:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px #000000aa;
}

.service-block h3 {
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--gold);
}

.service-block p {
  margin-bottom: 8px;
  font-size: 13px;
  color: #dddddd;
}

.service-meta {
  font-size: 12px;
  color: #bbbbbb;
}

.cta-mini {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- MAP ---------- */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffffff22;
  background: #000;
  max-width: 100%;
}

iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ---------- ADDRESS ---------- */
.address {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color: #dddddd;
  word-wrap: break-word;
}

/* ---------- FOOTER ---------- */
footer {
  background: #000;
  border-top: 1px solid #ffffff22;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  color: #aaaaaa;
  overflow-x: hidden;
}

/* ---------- STICKY BAR ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000ee;
  border-top: 1px solid #ffffff33;
  display: flex;
  justify-content: space-around;
  padding: 8px 10px;
  z-index: 999;
  overflow-x: hidden;
}

.sticky-btn {
  flex: 1;
  margin: 0 4px;
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 8px 6px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ---------- MEDIA QUERIES ---------- */
@media (min-width: 768px) {
  header h1 {
    font-size: 34px;
  }

  header h2 {
    font-size: 20px;
  }

  iframe {
    height: 320px;
  }

  .sticky-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  header {
    padding: 60px 15px 40px;
  }

  header h1 {
    font-size: 24px;
  }

  header h2 {
    font-size: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .two-column {
    gap: 20px;
  }

  .service-block {
    padding: 14px;
  }
}

/* wrapper prevents image from covering text */
.service-img-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden; /* IMPORTANT */
  position: relative;
}

/* image styling */
.service-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

/* hover zoom effect */
.service-img-wrapper:hover .service-img {
  transform: scale(1.08);
}

/* service block */
.service-block {
  padding: 15px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}


.premium-services-cta{
  background: linear-gradient(135deg,#0a0a0a,#1a1a1a);
  padding: 60px 30px;
  position: relative;
}

.premium-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.premium-left{
  flex: 1;
  min-width: 300px;
}

.premium-title{
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 15px;
}

.premium-subtitle{
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.premium-services-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-services-list span{
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 8px 14px;
  border-radius: 30px;
  color: #ffd700;
  font-size: 14px;
}

/* Right contact box */
.premium-right{
  flex: 1;
  min-width: 300px;
}

.premium-contact-box{
  background: linear-gradient(135deg,#ffd700,#9b7b00);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  color: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.premium-contact-box h3{
  font-size: 24px;
  margin-bottom: 10px;
}

.premium-call-btn{
  display: inline-block;
  margin-top: 15px;
  background: #000;
  color: #ffd700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.premium-call-btn:hover{
  background: #222;
  transform: scale(1.05);
}

.premium-small{
  margin-top: 15px;
  font-size: 13px;
}

/* Responsive */
@media(max-width:768px){

  .premium-title{
    font-size: 24px;
  }

  .premium-container{
    flex-direction: column;
    text-align: center;
  }

}


.dNtlyB {
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    color: #fff !important;
    text-wrap: balance;
    line-height: 1.32;
}

/***********added css*******/

/* =========================
   NEW TOP HEADER
========================= */
/* Header */
.top-header{
  background:#ffffff;
  padding:1px 20px;
  border-bottom:1px solid #eee;
}

/* Header container */
.header-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Logo */
.logo img{
  height:100%;
  width:auto;
}

/* Call button */
.call-btn{
  background:#FFD700;
  color:#000;
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:0.3s;
}

.call-btn:hover{
  background:#000!important;
  color:#FFD700;
}

/* Mobile */
@media(max-width:767px){

  .header-container{
    flex-direction:row !important;
  }

  .logo img{
    height:100%;
  }

  .call-btn{
    padding:8px 16px;
    font-size:14px;
  }

}


/* =========================
   INTRO SECTION
========================= */

.intro-section {

  background: #000;
  color: #fff;

  min-height: 60vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

padding-bottom: 40px;
padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
}

.intro-container {

  max-width: 900px;
  margin: 0 auto;

}

/* Title */

.intro-title {

  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;

}

/* Subtitle */

.intro-subtitle {

  font-size: 20px;
  margin-bottom: 25px;
  opacity: 0.95;

}

/* Badge center */

.badge-row {

  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;

}

/* Buttons center */

.cta-buttons {

  justify-content: center;
  flex-wrap: wrap;

}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */

@media (max-width: 992px){

  .intro-title {

    font-size: 34px;

  }

  .intro-subtitle {

    font-size: 18px;

  }

}

/* Mobile */

@media (max-width: 576px){

  .intro-section {

    min-height: 50vh;
    padding: 20px 15px;

  }

  .intro-title {

    font-size: 36px;

  }

  .intro-subtitle {

    font-size: 18px;

  }

}


.extraclass{
  margin-top: 10px;
  justify-content: left;
}
