* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.container,
.main-content,
.section {
  width: 98%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1%;
  padding-right: 1%;
}

.consult-project {
  margin-top: 1.5rem;
}

a {
  text-decoration: none !important;
}

span {
  color: #42e76d !important;
}

.commonPaddingTB {
  padding: 2rem 1%;
}

/* Gradient main accent - no border-radius */
.bg_pink {
  background: linear-gradient(135deg, #00746b, #1a478a, #3a889f) !important;
  color: #ffffff !important;
}

/* Dark backgrounds – no border-radius */
.bg_green {
  background: linear-gradient(135deg, #0f1e3a, #1a478a, #2b6b9c) !important;
  color: #ffffff !important;
}

.bg_rate3 {
  background: linear-gradient(135deg, #160d16, #2a1c4a, #3a2a6a) !important;
  color: #ffffff !important;
}

.bannerBg {
  background: rgba(22, 13, 22, 0.70) !important;
  color: #ffffff !important;
}

.bg_cream {
  background: linear-gradient(135deg, #0e0a14, #1a1f3a, #2a334a) !important;
  color: #ffffff !important;
}

.bg_offwhite {
  background: linear-gradient(135deg, #0e0401, #160d16, #1a1a2a) !important;
  color: #ffffff !important;
}

.bg_yellow {
  background-color: #918e32 !important;
  color: #000000 !important;
}

/* Images पर ही border-radius */
img, .gallery-img, .profile-img, .banner-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Phone & WhatsApp buttons – pill shape */
.call-btn,
.phone-btn,
.whatsapp-btn,
.book-btn {
  background: linear-gradient(135deg, #00746b, #1a478a, #3a889f) !important;
  color: #ffffff !important;
  padding: 12px 30px;
  border-radius: 50px !important;           /* pill shape सिर्फ buttons पर */
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-btn:hover,
.phone-btn:hover,
.whatsapp-btn:hover,
.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 71, 138, 0.4);
}

/* List styling */
.list_ {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 98%;
}

.list_ li {
  padding: 0.6rem 0;
  font-size: clamp(15px, 3.2vw, 17px);
  font-weight: 500;
  color: inherit;
  line-height: 1.6;
}

/* Header */
.header {
  background-image: url('../images/background2.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 60vh;
  color: #ffffff !important;
  width: 100%;
}

/* Navbar */
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: clamp(14px, 3vw, 16px) !important;
  font-weight: 700 !important;
  padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.25rem);
}

/* Footer */
.footerBorder {
  border-radius: 0; /* कोई rounded corners नहीं */
}

/* Mobile calling bar */
.nowcalling {
  display: none;
}

@media only screen and (max-width: 768px) {
  .nowcalling {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
  }

  .lcol, .rcol {
    flex: 1;
    text-align: center;
    padding: 0.9rem 0;
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(15px, 4vw, 17px);
  }

  .lcol {
    background: linear-gradient(135deg, #160d16, #1a478a) !important;
  }

  .rcol {
    background: linear-gradient(135deg, #1a478a, #3a889f) !important;
  }

  .lcol a, .rcol a {
    color: #ffffff;
    display: block;
  }
}

/* WhatsApp button – pill नहीं, circular लेकिन radius सिर्फ button पर */
.whathp1 {
  position: fixed;
  width: clamp(50px, 8vw, 60px);
  height: clamp(50px, 8vw, 60px);
  bottom: clamp(50px, 5vw, 30px);
  left: clamp(15px, 4vw, 20px);
  background: linear-gradient(135deg, #1a478a, #3a889f) !important;
  color: #ffffff;
  border-radius: 50%; /* सिर्फ circular button */
  text-align: center;
  font-size: clamp(32px, 6vw, 38px);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 576px) {
  .commonPaddingTB {
    padding: 2rem 2%;
  }

  .header {
    min-height: 50vh;
  }

  .list_ li {
    font-size: clamp(14px, 4vw, 16px);
  }
}

@media (min-width: 992px) {
  .commonPaddingTB {
    padding: 2rem 2%;
  }

  .container,
  .main-content,
  .section {
    padding-left: 1.5%;
    padding-right: 1.5%;
  }
}

@media (min-width: 1400px) {
  .container,
  .main-content,
  .section {
    max-width: 1380px;
  }
}