body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #050505;
  overflow-x: hidden;
}
/* FULL WEBSITE LINK STYLE RESET */
a{
  color: inherit;          /* text ka same color lega */
  text-decoration: none;   /* underline remove */
}

a:hover,
a:focus,
a:active,
a:visited{
  color: inherit;
  text-decoration: none;
}
/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(10,10,10,0.6);
  transition: 0.4s;
}

/* SCROLL EFFECT */
.header.scrolled {
  
  box-shadow: 0 5px 25px rgba(255,215,0,0.08);
   background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
}

.logo span {
  color: gold;
}

/* MENU */
.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.menu li {
  position: relative;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding: 5px 0;
}
.menu a.active {
  color: gold;
}

.menu a.active::after {
  width: 100%;
}
/* GOLD UNDERLINE ANIMATION */
.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, gold, #ffcc00);
  transition: 0.4s;
}

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

/* SHINE EFFECT */
.menu a:hover {
  color: gold;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: 50px;
  left: 0;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.4s;
}

.submenu li {
  padding: 10px 18px;
}

.submenu a:hover {
  color: gold;
}

/* SHOW SUBMENU */
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CTA ICONS */
.cta-icons a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  margin-left: 12px;

  font-size: 18px;
  text-decoration: none;

  transition: 0.4s;
}

/* CALL BUTTON (RED) */
.call {
  background: linear-gradient(145deg, #b3001b, #ff0033);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255,0,50,0.4);
}

/* WHATSAPP BUTTON (GOLD/YELLOW STYLE) */
.whatsapp {
  background: linear-gradient(145deg, #f5c518, #ffd700);
  color: #000;
  box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

/* HOVER EFFECT */
.cta-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
}
/* HAMBURGER */
.menu-toggle {
  display: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: gold;
  margin: 5px 0;
  transition: 0.4s;
}

/* ACTIVE HAMBURGER */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

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

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

  .menu.active {
    display: flex;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .cta-icons {
    display: none;
  }
}

/* header banner start */

/* PREMIUM BANNER */
.premium-banner {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* IMAGE BASE */
.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* DESKTOP IMAGE */
.desktop-banner {
  background-image: url('../images/banner-desktop.webp');
}

/* MOBILE IMAGE */
.mobile-banner {
  display: none;
  background-image: url('../images/banner-mobile.webp');
}

/* OVERLAY */
.premium-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4)
  );
  z-index: 1;
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 20px;
  color: #fff;
}
.shine-text {
  font-size: 36px;
  font-weight: 600;

  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffd700 25%,
    #ffffff 50%,
    #ffd700 75%,
    #ffffff 100%
  );

  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shineMove 4s linear infinite;
}

/* ANIMATION */
@keyframes shineMove {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* TEXT */


/* BUTTONS */
.banner-buttons {
  display: flex;
  gap: 15px;
}

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

.btn.gold {
  background: linear-gradient(145deg, gold, #ffcc00);
  color: #000;
}

.btn.outline {
  border: 1px solid gold;
  color: gold;
}

.btn:hover {
  transform: translateY(-2px);
}

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

  .premium-banner {
    height: 70vh;
  }

  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .banner-content h1 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/* marquee*/
/* SECTION */
.stats-marquee {
  background: linear-gradient(90deg, #0a0a0a, #14070d, #0a0a0a);
  border-top: 1px solid rgba(255,215,0,0.2);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  overflow: hidden;
}
/* DESKTOP */
.marquee-track {
  animation: scrollLeft 18s linear infinite;
}

/* MOBILE FAST */
@media(max-width:768px){
  .marquee-track {
    animation: scrollLeft 10s linear infinite;
  }
}
/* INNER CONTAINER */
.marquee-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 50px;
  padding: 12px 0;

  animation: scrollLeft 18s linear infinite;
}

/* ITEM */
.marquee-item {
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;

  position: relative;
}

/* GOLD SEPARATOR */
.marquee-item::after {
  content: "•";
  margin-left: 50px;
  color: gold;
}

/* ANIMATION */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
</* content section 1*/

/* SECTION */

.premium-content {
  padding: 120px 20px;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(120, 0, 30, 0.55),   /* 🔥 strong */
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(80, 0, 20, 0.55),    /* 🔥 strong */
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #1a070d 50%,   /* 🔥 maroon tone */
      #070707 100%
    );
}
.premium-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: radial-gradient(
    circle at 50% 0%,
    rgba(255,0,80,0.12),
    transparent 60%
  );

  pointer-events: none;
}

/* WRAPPER */
.content-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT TEXT (60%) */
.text-content {
  flex: 60%;
  
}

.text-content h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255,215,0,0.1);
}

.text-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
 
}

/* BUTTON */
.btn.gold {
  background: linear-gradient(145deg, gold, #ffcc00);
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

/* RIGHT IMAGE (40%) */
.image-content {
  flex: 40%;
  position: relative;
  overflow: hidden;
}

.image-content img {
  width: 100%;
  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
}

/* OVERLAP BADGE */
.image-badge {
  position: absolute;
  bottom: 20px;   /* 🔥 inside */
  left: 20px;

  background: linear-gradient(145deg, #ffd700, #ffb700);
  color: #000;

  padding: 10px 22px;
  border-radius: 30px;

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

  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

@media(max-width:768px){

  /* SECTION */
  .premium-content {
    padding: 70px 15px;
    margin-top: 50px;
  }

  /* STACK LAYOUT */
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  /* TEXT FULL WIDTH */
  .text-content {
    flex: 100%;
    max-width: 100%;
    text-align: left;
  }

  .text-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .text-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  /* BUTTON */
  .text-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 13px;
  }

  /* IMAGE FULL WIDTH */
  .image-content {
    flex: 100%;
    width: 100%;
  }

  .image-content img {
    width: 100%;
    border-radius: 18px;
  }

  /* BADGE FIX MOBILE */
  .image-badge {
    bottom: 15px;   /* inside safe */
    left: 15px;
    padding: 8px 16px;
    font-size: 12px;
  }

}

/*card section*/
/* SECTION */
.premium-cards {
  padding: 100px 20px;
  background: linear-gradient(180deg, #070707, #12060a);
}

/* TITLE */
.section-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 50px;
}

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

/* CARD */
.card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s;
}

/* IMAGE */
.card img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

/* HOVER ZOOM */
.card:hover img {
  transform: scale(1.1);
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}

.badge.vip {
  background: linear-gradient(145deg, gold, #ffcc00);
  color: #000;
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

.badge.verified {
  background: #1db954;
  color: #fff;
}

.badge.new {
  background: #ff0033;
  color: #fff;
}

/* INFO */
.card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  color: #fff;

  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* ACTION BUTTONS */
.card-actions {
  position: absolute;
  top: 12px;
  right: 12px;

  display: flex;
  gap: 8px;
}

.card-actions a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;

  transition: 0.3s;
}

.wa-btn {
  background: #25D366;
}

.call-btn {
  background: #ff0033;
  color: #fff;
}

.card-actions a:hover {
  transform: scale(1.1);
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);

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

  opacity: 0;
  transition: 0.4s;
}

.card:hover .card-overlay {
  opacity: 1;
}

/* PREMIUM SHINE */
.card::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );

  transition: 0.5s;
}

.card:hover::after {
  left: 100%;
}
.card:hover .card-overlay {
  opacity: 1;
}
@media(max-width:768px){
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 24px;
  }
}
/*about section*/
.about-section {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,0,80,0.10), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,215,0,0.08), transparent 40%),
    linear-gradient(180deg, #050505, #0a0507);
}

/* GRID */
.about-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 60% 40%; /* 🔥 exact ratio */
  gap: 60px;
  align-items: center;
}
.about-content {
  padding-right: 10px;
}
/* TEXT */
.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffd700,#ffffff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   background-size: 200% auto;
  animation: goldShine 5s linear infinite;
}
@keyframes goldShine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.about-content p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;

  border-radius: 25px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(255,0,80,0.08);

  transition: 0.4s;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: linear-gradient(145deg, gold, #ffcc00);
  color: #000;

  padding: 6px 14px;
  border-radius: 20px;

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

  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.about-image img:hover {
  transform: scale(1.03);
  
}
@media(max-width:768px){

  /* CONTAINER STACK */
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* TEXT CONTENT */
  .about-content {
    order: 1; /* content first */
    text-align: left;
  }

  .about-content h2 {
    
	animation: none;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  /* IMAGE */
  .about-image {
    order: 2;
  }

  .about-image img {
    height: 540px;
  }

}
/* how booking*/
/* SECTION */
.process-section {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,0,80,0.08), transparent 40%),
    linear-gradient(180deg, #050505, #0a0507);
}

/* GRID */
.process-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.process-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 30px 20px;

  text-align: center;

  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

/* NUMBER */
.step-number {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: gold;
  margin-bottom: 10px;
}

/* TITLE */
.process-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

/* TEXT */
.process-card p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.5;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,215,0,0.15);
}
@media(max-width:768px){

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}
/*why section*/
.why-section {
  padding: 100px 20px;

  background:
    radial-gradient(circle at 20% 10%, rgba(255,0,80,0.08), transparent 40%),
    linear-gradient(180deg, #050505, #0a0507);
}

.why-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LEFT */
.why-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
}

.why-content p {
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* FEATURES */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px;
  border-radius: 10px;

  background: rgba(255,255,255,0.03);
}

.feature span {
  color: gold;
}

.feature p {
  color: #ddd;
}
@media(max-width:768px){

  /* SECTION SPACING */
  .why-section {
    padding: 70px 15px;
  }

  /* STACK LAYOUT */
  .why-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* CONTENT */
  .why-content {
    text-align: left;
  }

  .why-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .why-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  /* FEATURES GRID */
  .why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* FEATURE BOX */
  .feature {
    padding: 12px 14px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* ICON */
  .feature span {
    font-size: 14px;
  }

  .feature p {
    font-size: 13px;
    line-height: 1.5;
  }

}
/*category*/
/* SECTION */
.category-section {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 15% 20%, rgba(255,0,80,0.10), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,215,0,0.08), transparent 40%),
    linear-gradient(180deg, #040404, #0a0507);
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;

  background: linear-gradient(90deg, #ffd700, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* CARD */
.category-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.4s;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;

  
}

.category-card:hover::after {
  opacity: 1;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );

  transition: 0.6s;
}

.category-card:hover::before {
  left: 100%;
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s;
}

.category-card:hover img {
  transform: scale(1.12);
}

/* OVERLAY */
.category-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2)
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.category-overlay h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.category-card:hover h3 {
  color: gold;
  transform: scale(1.05);
}

/* HOVER EFFECT */
.category-card:hover img {
  transform: scale(1.1);
}
@media(max-width:768px){

  .category-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
  }

  .category-card img {
    height: 180px;
  }

  .section-title {
    font-size: 24px;
  }

}

/* txt location*/
/* GRID */
.location-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.location-card {
  padding: 30px 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);

  text-align: center;
  text-decoration: none;

  transition: 0.3s;
}

/* TITLE */
.location-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
  transition: 0.3s;
}
.location-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.location-card i {
  color: gold;
  font-size: 14px;
}
/* TEXT */
.location-card p {
  color: #bbb;
  font-size: 13px;
}

/* HOVER */
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}

.location-card:hover h3 {
  color: gold;
}
@media(max-width:768px){

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .location-card {
    padding: 20px 15px;
  }

  .location-card h3 {
    font-size: 15px;
  }

}
/*what we offer*/
/* SECTION */
.offer-section {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,0,80,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,215,0,0.06), transparent 40%),
    linear-gradient(180deg, #050505, #0a0507);
}

/* GRID */
.offer-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.offer-card {
  padding: 30px 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);

  text-align: center;

  transition: 0.4s;
  position: relative;
}

/* ICON */
.offer-card i {
  font-size: 22px;
  color: gold;
  margin-bottom: 12px;

  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* TITLE */
.offer-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */
.offer-card p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.5;
}

/* HOVER */
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}

/* GOLD BORDER EFFECT */
.offer-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(255,215,0,0.15),
    rgba(255,215,0,0.05)
  );
}

.offer-card:hover::after {
  opacity: 1;
}
@media(max-width:768px){

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .offer-card {
    padding: 20px 15px;
  }

  .offer-card h3 {
    font-size: 15px;
  }

}
/*mid about*/
/* SECTION BG */
.mid-about-section {
   padding: 120px 20px;

  background:
    radial-gradient(circle at 15% 20%, rgba(255,0,80,0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,215,0,0.08), transparent 40%),
    linear-gradient(180deg, #040404, #0a0507);
}

/* GRID */
.mid-about-container {
 max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: 40% 60%;
  gap: 70px;
  align-items: center;
}

/* IMAGE SIDE */
.mid-about-image {
  position: relative;
  z-index: 2;
}

/* IMAGE */
.mid-about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;

  border-radius: 25px;

  transform: translateY(40px); /* 🔥 overlap effect */
  z-index: 2;

   box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    0 0 40px rgba(255,215,0,0.08);
	transition: 0.5s;
}

/* BADGE */
.image-badge {
  position: absolute;
  bottom: 0;
  left: 20px;

  background: linear-gradient(145deg, gold, #ffcc00);
  color: #000;

  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;

  z-index: 3;
}

/* CONTENT */
.mid-about-content h2 {
  font-size: 30px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffd700, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mid-about-content p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

/* BUTTON */
.btn.gold {
  display: inline-block;
  margin-top: 10px;

  padding: 10px 25px;
  border-radius: 25px;

  background: gold;
  color: #000;
  text-decoration: none;
}
@media(max-width:768px){

  .mid-about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mid-about-image img {
    height: 280px;
    transform: none; /* overlap remove mobile */
  }

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

}
/*testomonial*/
/* SECTION */
.testimonial-section {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 20% 10%, rgba(255,0,80,0.08), transparent 40%),
    linear-gradient(180deg, #050505, #0a0507);
}

/* GRID */
.testimonial-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  padding: 30px 25px;
  border-radius: 20px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);

  text-align: center;

  transition: 0.4s;
  position: relative;
}

/* QUOTE */
.testimonial-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* NAME */
.testimonial-card h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}

/* ROLE */
.testimonial-card span {
  color: gold;
  font-size: 12px;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
}
.stars {
  color: gold;
  margin-bottom: 10px;
}
@media(max-width:768px){

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

}
/*faq*/
/* SECTION */
.faq-section {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 20% 10%, rgba(255,0,80,0.08), transparent 40%),
    linear-gradient(180deg, #050505, #0a0507);
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);

  overflow: hidden;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 20px;
  cursor: pointer;
}

.faq-question h3 {
  color: #fff;
  font-size: 16px;
}

.faq-question span {
  color: gold;
  font-size: 18px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;

  padding: 0 20px;
}

.faq-answer p {
  color: #bbb;
  padding: 10px 0 15px;
  font-size: 14px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}
@media(max-width:768px){
  .faq-section {
    padding: 70px 15px;
  }
}
/* floating button*/
.float-btn i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*footer*/

.premium-footer {
  position: relative;
  padding: 100px 20px 50px;

  background:
    radial-gradient(circle at 10% 20%, rgba(255,0,80,0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,215,0,0.08), transparent 40%),
    linear-gradient(180deg, #040404 0%, #0a0507 50%, #050505 100%);

  border-top: 1px solid rgba(255,215,0,0.2);
  overflow: hidden;
}
.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;

  background: linear-gradient(to right, transparent, gold, transparent);
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.premium-footer,
.premium-footer p,
.premium-footer li,
.premium-footer a {
  color: #ccc !important;
}



.footer-col h3,
.footer-col h4 {
 background: linear-gradient(90deg, #ffd700, #ffcc00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;

  text-shadow: 0 0 15px rgba(255,215,0,0.2);
}
/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

.footer-col ul li a:hover {
  color: gold;
}

/* ICON SPACING */
.footer-col i {
  margin-right: 8px;
  color: gold;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
  font-size: 13px;
}
@media(max-width:768px){

  .footer-container {
    grid-template-columns: 1fr;
    
  }

  .footer-col {
    text-align: center;
  }

}

.float-btn {
  flex: 1;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* CALL */
.call-btn {
  background: linear-gradient(145deg, #ff0033, #99001f);
}

/* WHATSAPP */
.wa-btn {
  background: linear-gradient(145deg, #25D366, #1aa94c);
}

/* HOVER */
.float-btn:hover {
  filter: brightness(1.1);
  
  
  
}

.floating-bar {
  position: fixed !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  width: 92%;
  max-width: 420px;

  display: flex;
  border-radius: 50px;
  overflow: hidden;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(14px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.7),
    0 0 20px rgba(255,215,0,0.08);

  z-index: 9999;
}

/* buttons */
.float-btn {
  flex: 1;
  padding: 14px;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
}

/* call */
.call-btn {
  background: linear-gradient(145deg, #ff0033, #99001f);
}

/* whatsapp */
.wa-btn {
  background: linear-gradient(145deg, #25D366, #1aa94c);
}