	body {
  background: #05000a;
}
p a {
  color: inherit;
  text-decoration: none;
}

p a:hover {
  color: #fff;
  text-decoration: underline;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(5,0,10,0.6);
  transition: 0.3s;
}

/* SCROLL EFFECT */
.main-header.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* CONTAINER */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

/* LOGO */
.logo img {
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(255,0,85,0.4));
}

/* MENU */
.menu a {
  margin: 0 12px;
  color: #ccc;
  text-decoration: none;
  position: relative;
}

/* UNDERLINE */
.menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#ff0055,#ffcc70);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #fff;
}

/* BUTTONS */
.header-btns a {
  margin-left: 10px;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
}

.whatsapp { background:#25D366; color:#fff; }
.call { background:linear-gradient(90deg,#ff0055,#ff6600); color:#fff; }

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* MOBILE MENU */
@media(max-width:768px){

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .menu a {
    padding: 15px;
    display: block;
    border-bottom: 1px solid #111;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header-btns {
    display: none;
  }

}

/* ===== COMMON BANNER ===== */
.lux-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* OVERLAY FIX */
.lux-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* CONTENT */
.lux-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

/* TITLE */
.banner-title {
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffcc70, #ff0055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-title {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ff0055; }
  to { text-shadow: 0 0 20px #ffcc70; }
}
/* TAGLINE */
.banner-tagline {
  color: #eee;
  margin-bottom: 20px;
}

/* BUTTONS */
.banner-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* BUTTON STYLE */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

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

.btn.call {
  background: linear-gradient(90deg, #ff0055, #ff6600);
  color: #fff;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== DESKTOP BANNER ===== */
.desktop-banner {
  height: 90vh;
  background: url('../images/banner-desktop.webp') center/cover no-repeat;
}

.desktop-banner .lux-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
}

.desktop-banner .banner-title {
  font-size: 42px;
}

.desktop-banner .banner-tagline {
  font-size: 18px;
}

/* ===== MOBILE BANNER ===== */
.mobile-banner {
  height: 70vh;
  background: url('../images/banner-mobile.webp') center/cover no-repeat;
  display: none;
}

.mobile-banner .lux-overlay {
  background: rgba(0,0,0,0.45); /* 👈 fixed */
}

.mobile-banner .banner-title {
  font-size: 24px;
  color: #fff;
}

.mobile-banner .banner-tagline {
  font-size: 14px;
}

/* MOBILE BUTTON FIX */
.mobile-banner .banner-actions {
  flex-direction: column;
  gap: 10px;
}

.mobile-banner .btn {
  width: 100%;
  padding: 12px;
}

/* ===== RESPONSIVE SWITCH ===== */
@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: flex;
  }
}

/* ===============================
   FLOATING WHATSAPP BUTTON
================================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  animation: pulse 1.5s infinite;
}

/* ICON SIZE */
.whatsapp-float i {
  font-size: 26px;
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ===============================
   BOTTOM CTA (MOBILE ONLY)
================================= */
.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}

/* BUTTON BASE */
.cta {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* COLORS */
.cta.whatsapp {
  background: #25D366;
}

.cta.call {
  background: linear-gradient(90deg,#ff0055,#ff6600);
}

/* ICON SIZE */
.cta i {
  font-size: 16px;
}

/* ===============================
   MOBILE VIEW ONLY
================================= */
@media (max-width: 768px) {

  /* SHOW CTA BAR */
  .bottom-cta {
    display: flex;
  }

  /* MOVE FLOAT BUTTON UP */
  .whatsapp-float {
    bottom: 90px;
  }

}


.text-content {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  line-height: 1.8;
  background: #05000a; /* DARK BACKGROUND */
}

/* HEADINGS */
/* H1 - GOLD PREMIUM */
h1 {
  color: #ffcc70;
  font-size: 32px;
  font-weight: 700;
}

/* H2 - PINK (already using) */
h2 {
  color: #ff0055;
  font-size: 26px;
  font-weight: 600;
}

/* H3 - CYAN MODERN */
h3 {
  color: #c77dff;
  font-size: 20px;
  font-weight: 500;
}

/* PARAGRAPH */
.text-content p {
  color: #bfbfbf;  /* LIGHT GREY (VISIBLE) */
  font-size: 16px;
  margin-bottom: 18px;
}

/* BOLD KEYWORD */
.text-content b {
  color: #ffffff;
}

/* SPACING IMPROVE */
.text-content h2:first-child {
  margin-top: 0;
}

/* MOBILE */
@media(max-width:768px){
  .text-content h2 {
    font-size: 22px;
  }

  .text-content p {
    font-size: 14px;
  }
}
	
body {
  background: #0b0615;
  font-family: Arial, sans-serif;
}

.gallery {
  padding: 40px 20px;
}

/* GRID */
.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.card:hover {
  transform: translateY(-6px);
}

/* IMAGE FIX (IMPORTANT) */
.img-box {
  position: relative;
  display: block; /* FIX */
}

.img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* BADGE FIX (MAIN ISSUE SOLVED HERE) */
.badge {
  position: absolute;
  left: 10px;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 30px;
  color: #fff;
  line-height: normal;
  font-weight: 600;
  z-index: 2;
}

/* VERIFIED */
.verified {
  top: 10px;
  background: #16a34a;
}

/* VIP */
.vip {
  top: 42px;
  background: #d4a017;
}

/* VIEWS */
.views {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff2d75;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  color: #fff;
  z-index: 2;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

.card-content h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 5px;
}

.location {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 10px;
}

/* TAGS */
.tags {
  display: flex;
  gap: 8px;
}

.tags span {
  background: #1a1a1a;
  color: #ddd;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.rating {
  background: #2a2a2a;
}
/* ===== FORCE FIX BADGE ISSUE ===== */

.img-box {
  position: relative !important;
  display: block !important;
}

.img-box img {
  display: block;
}

/* MAIN FIX */
.badge {
  position: absolute !important;
  left: 10px !important;

  display: inline-block !important;
  width: auto !important;
  height: auto !important;

  padding: 5px 12px !important;
  font-size: 12px !important;

  border-radius: 30px !important;
  line-height: normal !important;

  top: auto !important;
  bottom: auto !important;

  max-height: 30px !important;
}

/* VERIFIED */
.verified {
  top: 10px !important;
  background: #16a34a !important;
}

/* VIP */
.vip {
  top: 42px !important;
  background: #d4a017 !important;
}

/* PREVENT ANY STRETCH */
.img-box * {
  align-self: flex-start !important;
}

	.steps-section {
  background: #05000a;
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.steps-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 50px;
}

/* ✅ FIXED GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3 column fix */
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.step-card {
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
/* ✅ CARD FIX */
.step-card {
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  position: relative;
  min-height: 180px; /* 👈 equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s;
}

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

/* NUMBER */
.step-no {
  font-size: 38px;
  font-weight: bold;
  opacity: 0.2;
  margin-bottom: 10px;
}

/* TEXT FIX */
.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff; /* 👈 important */
}

.step-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* GRADIENT COLORS */
.step1 { background: linear-gradient(135deg, #3a001f, #12000a); }
.step2 { background: linear-gradient(135deg, #001f3a, #000a12); }
.step3 { background: linear-gradient(135deg, #003a1f, #00120a); }
.step4 { background: linear-gradient(135deg, #3a1f00, #120a00); }
.step5 { background: linear-gradient(135deg, #2a003a, #0a0012); }
.step6 { background: linear-gradient(135deg, #3a2a00, #120f00); }

/* 📱 MOBILE FIX */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
	
	.seo-content{
padding:50px 20px;
max-width:1000px;
margin:auto;
color:#ddd;
line-height:1.7;
}

.seo-content h1{
font-size:28px;
color:#ffcc70;
}

.seo-content h2{
margin-top:20px;
color:#fff;
}

.seo-content ul{
margin-left:20px;
}
	
	/* SECTION */
.types-section {
  padding: 60px 20px;
  background: #05000a;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 32px;
  color: #ffcc70;
  margin-bottom: 40px;
}

/* GRID */
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD BASE */
.type-card {
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER EFFECT */
.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,0,85,0.2);
}

/* COLORS */
.type-card.pink {
  background: linear-gradient(135deg, #2b0015, #4d0025);
}

.type-card.gold {
  background: linear-gradient(135deg, #2b1a00, #4d2c00);
}

/* TEXT */
.type-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.type-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* TAGS */
.tags {
  margin-top: 15px;
}

.tags span {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: #ffcc70;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
  margin-top: 5px;
}

/* MOBILE */
@media (max-width:768px){
  .types-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
	
	/* SECTION */
.why-section {
  padding: 80px 20px;
  background: #05000a;
}

/* CONTAINER */
.why-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.why-image {
  position: relative;
  flex: 1;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
}

/* BADGE */
.badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.badge span {
  background: #ff0055;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  color: #fff;
}

/* CONTENT */
.why-content {
  flex: 1;
  color: #fff;
}

/* LABEL */
.label {
  color: #ff0055;
  font-size: 12px;
  letter-spacing: 2px;
}

/* HEADING */
.why-content h2 {
  font-size: 32px;
  margin: 10px 0;
}

.why-content h2 span {
  color: #ff0055;
}

/* TEXT */
.why-content p {
  color: #ccc;
  line-height: 1.7;
}

/* STATS */
.stats {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.stat-box {
  background: #111;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-box h3 {
  color: #ffcc70;
  margin: 0;
}

.stat-box p {
  font-size: 12px;
  color: #aaa;
}

/* MOBILE */
@media (max-width:768px) {

  .why-container {
    flex-direction: column;
  }

  .why-content h2 {
    font-size: 24px;
  }

  .stats {
    flex-direction: column;
  }

}
	
	/* SECTION */
.price-section {
  padding: 80px 20px;
  background: #05000a;
}

/* CONTAINER */
.price-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.price-left {
  flex: 1;
}

.price-left h2 {
  color: #ff0055;
  font-size: 28px;
}

.price-left p {
  color: #ccc;
  line-height: 1.7;
}

/* BADGES */
.badges {
  margin-top: 20px;
}

.badges span {
  display: inline-block;
  background: #111;
  padding: 8px 14px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 13px;
  color: #ffcc70;
}

/* RIGHT CARD */
.price-card {
  flex: 1;
  background: linear-gradient(135deg,#1a0010,#2b0015);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

/* TEXT */
.price-card .top {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 40px;
  color: #ffcc70;
}

.price-card .sub {
  color: #ccc;
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.features div {
  background: #111;
  padding: 15px;
  border-radius: 10px;
}

.features span {
  font-size: 12px;
  color: #aaa;
}

/* TAGS */
.tags span {
  display: inline-block;
  background: #2b0015;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 5px;
  font-size: 12px;
  color: #ff0055;
}

/* BUTTON */
.call-btn {
  display: block;
  margin-top: 20px;
  background: linear-gradient(90deg,#ff0055,#ff6600);
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){
  .price-container {
    flex-direction: column;
  }
}
	
	/* FAQ SECTION */
.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #ffcc70;
}

/* ITEM */
.faq-item {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  padding: 15px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  position: relative;
}

/* PLUS ICON */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #ff0055;
  transition: 0.3s;
}

/* ACTIVE STATE */
.faq-item.active .faq-question::after {
  content: "-";
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #ccc;
  font-size: 14px;
  transition: max-height 0.4s ease, padding 0.3s;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 15px 15px;
}
	
	/* ===============================
   PREMIUM GLASS FOOTER
================================= */
.premium-footer {
  background: linear-gradient(180deg, #05000a, #0a0015);
  color: #ccc;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* GLOW BACKGROUND EFFECT */
.premium-footer::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,85,0.25), transparent);
  top: -80px;
  left: -80px;
  filter: blur(80px);
}

.premium-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.25), transparent);
  bottom: -80px;
  right: -80px;
  filter: blur(80px);
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* GLASS CARD EFFECT */
.footer-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

/* HOVER GLOW */
.footer-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,0,85,0.3);
}

/* HEADINGS */
.footer-col h3 {
  color: #ffcc70;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #ff0055;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

/* LINK HOVER GLOW */
.footer-col ul li a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* SOCIAL ICON */
.footer-social a {
  font-size: 20px;
  margin-right: 10px;
  color: #25D366;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px #25D366;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 15px;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media(max-width:768px){
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px){
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* TEXT MORE CLEAR */
.footer-col p {
  color: #e5e5e5;   /* light white */
}

.footer-col ul li a {
  color: #f1f1f1;   /* links bhi white */
}

/* HOVER EFFECT */
.footer-col ul li a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

/* CONTACT TEXT */
.footer-col p,
.footer-col span {
  color: #eaeaea;
}

	/* ===============================
   OVERLAY SECTION
================================= */
.overlay-section {
  position: relative;
  padding: 80px 20px;
  background: url('../images/bg.webp') center/cover no-repeat;
}

/* DARK OVERLAY */
.overlay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65); /* darkness control */
}

/* CONTENT */
.overlay-content {
  position: relative;
  max-width: 1000px;
  margin: auto;
  text-align: left;
  color: #fff;
}

/* HEADING */
.overlay-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* PARAGRAPH */
.overlay-content p {
  font-size: 16px;
  color: #e5e5e5;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* MOBILE */
@media(max-width:768px){

  .overlay-section {
    padding: 50px 15px;
  }

  .overlay-content h2 {
    font-size: 26px;
  }

  .overlay-content p {
    font-size: 14px;
  }
}


.whatsapp a{
    width: 50%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #009999;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    z-index: 99;
}
.whatsapp a i{
    margin-right: 10px;
}
.call a{
    width: 50%;
    position: fixed;
    bottom: 0;
    background: #fd275a;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    right: 0;
    z-index: 99;
}
.call a i {
    margin-right: 10px;
}
.content-sec-1 .images{
    background: #10012a;
    padding: 10px;
    border-radius: 10px;
}
.content-sec-1 .images img{
    border-radius: 10px;
    margin-bottom: 20px;
}
.content-sec-1 .image{
    border-radius: 10px;
    overflow: hidden;
}
.content-sec-1 .image:hover img{
    transform: scale(1.1);
    transition: .5s ease;
}
.gallery{
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.lcol, .rcol {
    float: left;
    width: 50%;
}
.lcol a, .rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.lcol {
    background-color: #fd275a;
}
.rcol {
    background-color: #009999;
}

.footer-contact .footer-contact-item {
    width: 50%;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    color: var(--bs-white);
}

.footer-contact .footer-contact-item.call {
    background-color: #f4382d;
}
.footer-contact .footer-contact-item.whatsapp {
    background-color: #25d366;
}
.footer-contact .footer-contact-item.telegram {
    background-color: #24A1DE;
}

/* =========================================
   LOCATIONS SECTION
========================================= */

.locations-section {
  width: 100%;
  padding: 70px 20px;
  background: #080312;
  box-sizing: border-box;
}

.locations-wrap {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  box-sizing: border-box;
}


/* =========================================
   INTRO - ABOVE GRID
========================================= */

.locations-intro {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 35px;
  text-align: center;
}

.locations-label {
  display: block;
  margin-bottom: 12px;

  color: #e0005c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.locations-intro h2 {
  margin: 0 0 12px;

  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.locations-intro p {
  max-width: 650px;
  margin: 0 auto;

  color: #bcb6c8;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   LOCATION GRID
========================================= */

.locations-grid {
  width: 100%;
  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;

  box-sizing: border-box;
}


/* =========================================
   LOCATION CARD
========================================= */

.location-item {
  width: 100%;
  height: 62px;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;

  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.location-item span {
  min-width: 0;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-item b {
  flex-shrink: 0;

  margin-left: 12px;

  color: #e0005c;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}


/* =========================================
   HOVER
========================================= */

.location-item:hover {
  color: #ffffff;
  text-decoration: none;

  background: rgba(224, 0, 92, 0.07);
  border-color: rgba(224, 0, 92, 0.35);

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.location-item:hover b {
  color: #f5c45b;
  transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .locations-section {
    padding: 60px 20px;
  }

  .locations-intro h2 {
    font-size: 36px;
  }

  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}


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

@media (max-width: 767px) {

  .locations-section {
    padding: 50px 16px;
  }

  .locations-intro {
    margin-bottom: 28px;
  }

  .locations-intro h2 {
    font-size: 30px;
  }

  .locations-intro p {
    font-size: 14px;
    line-height: 1.7;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .location-item {
    height: 54px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 8px;
  }

  .location-item b {
    font-size: 17px;
    margin-left: 8px;
  }

}


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

@media (max-width: 420px) {

  .locations-section {
    padding: 45px 14px;
  }

  .locations-grid {
    gap: 8px;
  }

  .location-item {
    height: 50px;
    padding: 0 11px;
    font-size: 12px;
  }

}
/* =====================================================
   JENIKA MITTAL - PREMIUM FOOTER
   UNIQUE PREFIX: jm-footer
===================================================== */

.jm-footer {
  width: 100%;
  position: relative;

  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(255, 0, 105, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(0, 100, 255, 0.08),
      transparent 30%
    ),
    #08050f;

  color: #eeeaf2;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}


/* =====================================================
   MAIN AREA
===================================================== */

.jm-footer-inner {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  padding: 65px 0 55px;

  display: grid;

  grid-template-columns:
    1.65fr
    0.8fr
    0.95fr
    1.15fr;

  column-gap: 55px;

  align-items: start;
}


/* =====================================================
   BRAND
===================================================== */

.jm-footer-brand h3 {
  margin: 0 0 18px;

  color: #f3c653;

  font-size: 29px;

  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 0.3px;
}

.jm-footer-brand p {
  max-width: 430px;

  margin: 0;

  color: #c8c4ce;

  font-size: 14px;

  line-height: 1.9;
}


/* =====================================================
   SOCIAL
===================================================== */

.jm-footer-social {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-top: 27px;
}

.jm-footer-social a {
  width: 43px;
  height: 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #f0c33f;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(240, 195, 63, 0.28);

  font-size: 17px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.jm-footer-social a:hover {
  transform: translateY(-4px);

  background: #f0c33f;

  border-color: #f0c33f;

  color: #09070c;
}


/* =====================================================
   HEADINGS
===================================================== */

.jm-footer-links h4,
.jm-footer-locations h4,
.jm-footer-contact h4 {
  margin: 0 0 20px;

  color: #ff1768;

  font-size: 17px;

  font-weight: 600;

  line-height: 1.4;
}


/* =====================================================
   LISTS
===================================================== */

.jm-footer-links ul,
.jm-footer-locations ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.jm-footer-links li,
.jm-footer-locations li {
  margin: 0 0 14px;
}

.jm-footer-links a,
.jm-footer-locations a {
  color: #d8d4dc;

  font-size: 14px;

  text-decoration: none;

  transition: color 0.25s ease;
}

.jm-footer-links a:hover,
.jm-footer-locations a:hover {
  color: #f3c653;
}


/* =====================================================
   CONTACT
===================================================== */

.jm-footer-contact a,
.jm-footer-contact p {
  display: flex;

  align-items: center;

  gap: 12px;

  margin: 0 0 15px;

  color: #d8d4dc;

  font-size: 14px;

  line-height: 1.5;

  text-decoration: none;
}

.jm-footer-contact a {
  transition: color 0.25s ease;
}

.jm-footer-contact a:hover {
  color: #f3c653;
}

.jm-footer-contact i {
  width: 18px;

  flex-shrink: 0;

  color: #f0c33f;

  text-align: center;
}

.jm-footer-contact p {
  margin-top: 2px;
}


/* =====================================================
   LEGAL BAR
===================================================== */

.jm-footer-legal {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.07);

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;
}

.jm-footer-legal a {
  color: #a9a4af;

  font-size: 13px;

  text-decoration: none;

  transition: color 0.25s ease;
}

.jm-footer-legal a:hover {
  color: #f3c653;
}

.jm-footer-legal span {
  color: #4d4855;

  font-size: 12px;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.jm-footer-copy {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  padding: 22px 0 25px;

  text-align: center;
}

.jm-footer-copy p {
  margin: 0;

  color: #716c78;

  font-size: 12px;

  line-height: 1.6;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .jm-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;

    row-gap: 45px;

    column-gap: 35px;
  }

  .jm-footer-brand {
    grid-column: 1 / -1;

    text-align: center;
  }

  .jm-footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .jm-footer-social {
    justify-content: center;
  }

}


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

@media (max-width: 767px) {

  .jm-footer-inner {
    width: calc(100% - 30px);

    padding: 48px 0 38px;

    grid-template-columns: 1fr 1fr;

    gap: 38px 25px;
  }

  .jm-footer-brand {
    grid-column: 1 / -1;
  }

  .jm-footer-brand h3 {
    font-size: 26px;
  }

  .jm-footer-brand p {
    font-size: 13px;

    line-height: 1.8;
  }

  .jm-footer-links,
  .jm-footer-locations {
    text-align: left;
  }

  .jm-footer-contact {
    grid-column: 1 / -1;

    text-align: left;
  }

  .jm-footer-legal {
    width: calc(100% - 30px);

    padding: 19px 5px;

    gap: 8px;
  }

  .jm-footer-legal a {
    font-size: 12px;
  }

  .jm-footer-copy {
    width: calc(100% - 30px);

    padding: 18px 0 22px;
  }

}


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

@media (max-width: 480px) {

  .jm-footer-inner {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .jm-footer-brand,
  .jm-footer-contact {
    grid-column: auto;
  }

  .jm-footer-links,
  .jm-footer-locations,
  .jm-footer-contact {
    text-align: center;
  }

  .jm-footer-social {
    justify-content: center;
  }

  .jm-footer-contact a,
  .jm-footer-contact p {
    justify-content: center;
  }

}
