
*{
     margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Segoe UI", sans-serif; */
  

}


/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  z-index: 999;
}

/* ===== WRAPPER ===== */
.header-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ===== LOGO ===== */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.logo-box img {
  height: 55px;
  width: auto;
  
    
}

.logo-box {
  padding: 8px 14px;
  border-radius: 12px;

  background: radial-gradient(
    circle,
    rgba(212, 167, 71, 0.728),
    transparent 100%
  );
}

.logo-box img {
  height: 42px;
 
  filter: drop-shadow(0 0 15px rgb(239, 168, 13));
}

.brand-text {
  line-height: 1.1;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.brand-text small {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ===== NAV DESKTOP ===== */
.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* ===== BUTTON ===== */
.header-cta,
.mobile-btn {
  background: linear-gradient(135deg, #e6c36a, #c99a3c);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.mobile-btn {
  display: none;
  margin: 20px;
  text-align: center;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.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) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 998;
  }
  .main-nav{
    gap: 15px;
  }

  .main-nav.open {
    max-height: 500px;
  }

  .main-nav a {
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .mobile-btn {
    display: block;
  }
}



/* ===================herosection========================== */

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Overlay */
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  max-width: 600px;
  color: #fff;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: textFade 1.2s ease;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Button */
.btn {
  background: linear-gradient(135deg,#e6c36a,#c99a3c);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
}

/* Text animation */
@keyframes textFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ======================galler================== */
/* ===== TILE SECTION ===== */
.tile-section {
  padding: 90px 40px;
   background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== GRID ===== */
.tile-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ===== CARD ===== */
.tile-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Scroll animation */
.tile-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== IMAGE ===== */
.tile-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ===== OVERLAY TITLE ===== */
.tile-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  letter-spacing: 0.5px;
}

/* ===== HOVER EFFECT ===== */
.tile-card:hover img {
  transform: scale(1.08);
}

.tile-card:hover {
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-card img {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .tile-section {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .tile-grid {
    grid-template-columns: 1fr;
  }

  .tile-card img {
    height: 220px;
  }
}



  /* ================= ACCESSORIES SECTION ============================== */

/* ================= ACCESSORIES SECTION ================= */
.accessories-section {
  background: #000;
  color: #fff;
  padding: 100px 6%;
}
.accessories-section h2{
  color: #d4af37;
}

/* ================= HEADER ================= */
.accessories-header {
  max-width: 800px;
  margin-bottom: 70px;
}

.accessories-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
}

.accessories-header p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* ================= GRID ================= */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* ================= CARD ================= */
.accessory-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  cursor: pointer;

  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.4s ease;
}

.accessory-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE */
.accessory-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.accessory-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* CONTENT */
.accessory-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.1)
  );
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.accessory-card:hover .accessory-content {
  transform: translateY(0);
}

.accessory-content h3 {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 6px;
}

.accessory-content span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* GOLD LINE */
.accessory-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f3d98b);
  transition: width 0.5s ease;
}

.accessory-card:hover::after {
  width: 100%;
}

/* SHADOW */
.accessory-card:hover {
  box-shadow: 0 22px 60px rgba(0,0,0,0.85);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .accessories-section {
    padding: 70px 20px;
  }

  .accessory-card img {
    height: 230px;
  }
}

/* ==============================counters section============================ */

/* ================= SUCCESS STORY ================= */
.success-section {
  padding: 100px 6%;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b 70%, #000);
 
}

.success-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.success-subtitle {
  color: #c99a3c;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.success-title {
  color: #e6c36a;
  font-size: 40px;
  margin-bottom: 70px;
  letter-spacing: 1px;
}

/* GRID */
.success-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* ITEM */
.success-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.success-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ICON */
.success-icon {
  width: 60px;
  height: 60px;
  fill: #bfbfbf;
  margin-bottom: 22px;
}

/* NUMBER */
.success-item h3 {
  font-size: 42px;
  color: #e6c36a;
  margin-bottom: 10px;
}

/* TEXT */
.success-item p {
  color: #ddd;
  font-size: 15px;
  letter-spacing: 1px;
}


/* .counter::after {
  content: "";
} */
.counter span {
  color: #c99a3c;
  font-weight: 700;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .success-title {
    font-size: 30px;
  }

  .success-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* ===============================team management============================== */

/* ===============================
   TEAM SECTION
================================ */
.team-section {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 100px 20px;
  color: #fff;
}

/* ===============================
   CONTAINER
================================ */
.team-container {
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   HEADER
================================ */
.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.team-header h2 {
  font-size: 38px;
  margin-bottom: 14px;
  color: #c89a3b;
}

.team-header p {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* ===============================
   CARD
================================ */
.team-card {
  background: #111;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(212,168,71,0.25);
}

/* ===============================
   IMAGE
================================ */
.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.4s;
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ===============================
   CONTENT
================================ */
.team-content {
  padding: 26px;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.team-content span {
  font-size: 14px;
  color: #d4a847;
  letter-spacing: 0.5px;
}

/* ===============================
   REVEAL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .team-header h2 {
    font-size: 32px;
  }

  .team-image {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 70px 16px;
  }

  .team-header h2 {
    font-size: 26px;
  }

  .team-image {
    height: 220px;
  }
}


/* =====================review section====================== */

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 90px 40px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

/* ===== HEADER ===== */
.reviews-header {
  max-width: 1300px;
  margin: 0 auto 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #fff;
  position: relative;
}

.reviews-header h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

/* ===== ARROW BUTTON ===== */
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: transparent;
  color: #d4af37;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateX(3px);
}

/* ===== WRAPPER ===== */
.reviews-wrapper {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

/* ===== TRACK ===== */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* ===== REVIEW CARD ===== */
.review-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  color: #e5e5e5;
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== USER INFO ===== */
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.review-user h4 {
  font-size: 15px;
  color:#c89a3b;
}

.review-user span {
  font-size: 12px;
  opacity: 0.75;
}

/* ===== STARS ===== */
.stars {
  color: #d4af37;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* ===== TEXT ===== */
.review-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .reviews-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .reviews-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .reviews-section {
    padding: 70px 20px;
  }

  .reviews-header {
    flex-direction: row;
  }

  .reviews-header h2 {
    font-size: 24px;
  }

  .reviews-track {
    grid-template-columns: 1fr;
  }
}



 /* ======================================== PREMIUM SLIDER =================================== */
.premium-slider-section {
  padding: 80px 5%;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b 70%, #000);
  overflow: hidden;
}

.slider-header h2 {
  color: #e6c36a;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}

/* Wrapper */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Buttons */
.slider-btn {
  background: linear-gradient(135deg, #ebc460, #c99a3c);
  border: none;
  color: #000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(201,154,60,0.45);
  transition: all 0.3s ease;
  z-index: 5;
}

.slider-btn:hover {
  transform: scale(1.1);
}

.prev { margin-right: 12px; }
.next { margin-left: 12px; }

/* Slider Container */
.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* Card */
.slide-card {
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform 0.4s ease;
}

.slide-card:hover {
  transform: translateY(-8px);
}

.slide-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #fff;
}

/* Info */
.slide-info {
  padding: 14px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 15px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .slider-btn {
    display: none;
  }

  .slide-card {
    min-width: 220px;
  }

  .slider-header h2 {
    font-size: 26px;
  }
}


/* ==============================footer============================ */

/* ===== FOOTER BASE ===== */
.premium-footer {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.88),
    rgba(0, 0, 0, 0.8)
  );
  color: #dcdcdc;
  padding-top: 70px;
  font-family: "Inter", sans-serif;
}

/* ===== FOOTER CONTAINER ===== */
.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
}

/* ===== BRAND COLUMN ===== */
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-top: 18px;
}

.footer-logo img {
  width: 150px;
  height: auto;
   filter: drop-shadow(0 20px 20px rgb(249, 172, 3));
   
}

/* ===== NAVIGATION ===== */
.footer-nav h4,
.footer-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.footer-nav h4::after,
.footer-info h4::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #d4af37;
  display: block;
  margin-top: 6px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #d4af37;
  padding-left: 6px;
}

/* ===== COMPANY INFO ===== */
.footer-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-info svg {
  width: 18px;
  height: 18px;
  fill: #d4af37;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #d4af37;
}

.footer-social a:hover {
  background: #d4af37;
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  fill: #000;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
   
  }
}

@media (max-width: 768px) {


    .footer-nav ul{
      text-align: center;
    }
 

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    text-align: left;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
/* ======================================Aboutpage======================================== */

/* ======herosection======================= */
/* Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  height: 85vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

/* Overlay */
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  z-index: 1;
}

/* Hero Content */
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

/* Breadcrumb */
.about-breadcrumb {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #c89a3b;
  letter-spacing: 1px;
}

/* Heading */
.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Paragraph */
.about-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsive Styles */

/* Large tablets */
@media (max-width: 1024px) {
  .about-hero-content h1 {
    font-size: 40px;
  }
  .about-hero-content p {
    font-size: 16px;
  }
}

/* Tablets / small laptops */
@media (max-width: 768px) {
  .about-hero {
    height: 80vh;
  }
  .about-hero-content h1 {
    font-size: 32px;
  }
  .about-hero-content p {
    font-size: 15px;
  }
  .about-breadcrumb {
    font-size: 13px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .about-hero {
    height: 70vh;
  }
  .about-hero-content h1 {
    font-size: 26px;
  }
  .about-hero-content p {
    font-size: 14px;
  }
  .about-breadcrumb {
    font-size: 12px;
  }
}


/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 40px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.9)
  );
}

/* ===== GRID ===== */
.about-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== IMAGE ===== */
.about-image {
  overflow: hidden;
  border-radius: 18px;
  transform: translateX(-40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-image.show {
  transform: translateX(0);
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.06);
}

/* ===== CONTENT ===== */
.about-content {
  color: #e6e6e6;
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-content.show {
  transform: translateX(0);
  opacity: 1;
}

.about-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 12px;
}

/* ===== TITLE ===== */
.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
}

/* ===== DESCRIPTION ===== */
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* ===== STATS ===== */
.about-stats {
  display: flex;
  gap: 36px;
}

.stat {
  border-left: 3px solid #d4af37;
  padding-left: 18px;
}

.stat h3 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-image,
  .about-content {
    transform: translateY(40px);
  }

  .about-image.show,
  .about-content.show {
    transform: translateY(0);
  }

  .about-image img {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 70px 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-stats {
    flex-direction: column;
    gap: 18px;
  }

  .about-image img {
    height: 300px;
  }
}
/* ============================vission and mission ========================== */

/* ===== VISION & MISSION SECTION ===== */
.vm-pro {
  padding: 100px 40px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.88)
  );
}

/* ===== CONTAINER ===== */
.vm-pro-container {
  max-width: 1300px;
  margin: auto;
}

/* ===== HEADER ===== */
.vm-pro-header {
  text-align: center;
  margin-bottom: 60px;
}

.vm-pro-header span {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 12px;
}

.vm-pro-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #fff;
  position: relative;
}

.vm-pro-header h2::after {
  content: "";
  width: 90px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== GRID ===== */
.vm-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* ===== CARD ===== */
.vm-pro-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 36px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.vm-pro-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LABEL ===== */
.vm-pro-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 14px;
}

/* ===== TITLE ===== */
.vm-pro-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ===== DESCRIPTION ===== */
.vm-pro-card p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  color: #e0e0e0;
}

/* ===== HOVER EFFECT ===== */
.vm-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vm-pro-header h2 {
    font-size: 32px;
  }

  .vm-pro-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .vm-pro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vm-pro {
    padding: 70px 20px;
  }

  .vm-pro-header h2 {
    font-size: 26px;
  }

  .vm-pro-card {
    padding: 28px 24px;
  }
}
/* ==========================milestone ================================ */
  /* ===== MILESTONE PRO SECTION ===== */
.milestone-pro {
  padding: 100px 40px;
  background: radial-gradient(
    circle at top,
    #1b1b1b,
    #0b0b0b 60%,
    #000
  );
}

.milestone-pro-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.milestone-pro-header {
  text-align: center;
  margin-bottom: 80px;
}

.milestone-pro-header span {
  font-size: 13px;
  letter-spacing: 3px;
  color: #d4af37;
  display: block;
  margin-bottom: 10px;
}

.milestone-pro-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: #fff;
}

.milestone-pro-header h2::after {
  content: "";
  width: 90px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 16px auto 0;
}

/* ===== TIMELINE ===== */
.milestone-pro-timeline {
  position: relative;
  padding-left: 60px;
}

/* Center Line */
.milestone-pro-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    #d4af37,
    transparent
  );
}

/* ===== ITEM ===== */
.milestone-pro-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.milestone-pro-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== DOT ===== */
.milestone-pro-dot {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 20px;
  height: 20px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.25);
}

/* ===== CARD ===== */
.milestone-pro-card {
  background: linear-gradient(145deg, #1f1f1f, #121212);
  padding: 30px 34px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.milestone-pro-card h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.milestone-pro-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #d6d6d6;
}

/* Hover */
.milestone-pro-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 40px 80px rgba(212, 175, 55, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .milestone-pro-timeline {
    padding-left: 45px;
  }
}

@media (max-width: 600px) {
  .milestone-pro {
    padding: 70px 20px;
  }

  .milestone-pro-header h2 {
    font-size: 26px;
  }

  .milestone-pro-timeline {
    padding-left: 34px;
  }

  .milestone-pro-dot {
    width: 16px;
    height: 16px;
    left: 10px;
  }

  .milestone-pro-card {
    padding: 22px 24px;
  }

  .milestone-pro-card h4 {
    font-size: 18px;
  }
}




 /* ================= STORE GALLERY ================= */
.store-gallery {
  padding: 80px 6%;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  overflow: hidden;
}

/* Header */
.gallery-header h2 {
  display: inline-block;
   background: linear-gradient(135deg, #e6c36a, #c99a3c);
  color: #000;
  padding: 18px 40px;
  border-radius: 0 0 60px 0;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Wrapper */
.gallery-wrapper {
  position: relative;

 
  overflow: hidden;

}

/* Track */
.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* Card */
.gallery-card {
  min-width: 320px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e6c36a;
  background: rgba(0,0,0,0.55);
  color: #e6c36a;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #e6c36a;
  color: #000;
}

.nav-btn.left {
  left: 5px;
}

.nav-btn.right {
  right: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .gallery-card {
    min-width: 280px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 26px;
    padding: 14px 26px;
  }

  .gallery-card {
    min-width: 260px;
    height: 180px;
  }

  .nav-btn {
    display: none; /* swipe only on mobile */
  }
}

/* MOBILE MANUAL SCROLL */
@media (max-width: 768px) {
  .gallery-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-track::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .store-gallery {
    padding: 60px 20px;
  }

  .gallery-card {
    min-width: 240px;
    height: 170px;
  }
}


/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for cards */
.gallery-card {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.8s ease;
}

.gallery-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===============================product page================================================== */


/*==================== hero section ======================= */

/* Product Hero Section */
.product-hero {
  position: relative;
  width: 100%;
  height: 85vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  transition: background-image 1s ease-in-out; /* Smooth transition for background change */
}

/* Overlay */
.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  z-index: 1;
}

/* Hero Content */
.product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeIn 1s ease-in-out; /* Optional fade-in animation for content */
}

/* Heading */
.product-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Paragraph */
.product-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}




/* Responsive Styles */

/* Large tablets */
@media (max-width: 1024px) {
  .product-hero-content h1 {
    font-size: 40px;
  }
  .product-hero-content p {
    font-size: 16px;
  }
}

/* Tablets / small laptops */
@media (max-width: 768px) {
  .product-hero {
    height: 80vh;
  }
  .product-hero-content h1 {
    font-size: 32px;
  }
  .product-hero-content p {
    font-size: 15px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .product-hero {
    height: 70vh;
  }
  .product-hero-content h1 {
    font-size: 26px;
  }
  .product-hero-content p {
    font-size: 14px;
  }
}

/* Optional fade-in keyframes for content */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================filter section============================= */

/* ================= PRODUCT SECTION ================= */
.premium-products {
  padding: 100px 6%;
  background: radial-gradient(circle at top, #161616, #0b0b0b 70%, #000);
}

/* ================= FILTER WRAPPER ================= */
.filter-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 55px;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.filter-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= FILTER BAR ================= */
.filter-bar {
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;

  padding: 14px 0 18px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.05),
    rgba(22, 22, 22, 0.171)
  );

  border-radius: 20px;

  scroll-behavior: smooth;
}

/* ================= FILTER LIST ================= */
.filter-bar ul {
  display: flex;
  align-items: center;
  gap: 16px;

  list-style: none;
  padding: 0 80px 14px;
  margin: 0;

  min-width: max-content;

  border-bottom: 1px solid rgba(212,175,55,0.35);

 
}

/* ================= FILTER ITEM ================= */
.filter-bar li {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;

  white-space: nowrap;
  cursor: pointer;

  color: #e6c36a;
  border-radius: 30px;

  transition: all 0.35s ease;
}

.filter-bar li:hover {
  background: rgba(212,175,55,0.18);
}

.filter-bar li.active {
  background: linear-gradient(135deg, #ebc460, #c99a3c);
  color: #000;
  box-shadow: 0 12px 28px rgba(201,154,60,0.55);
}

/* ================= ARROWS ================= */
.filter-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #ebc460, #c99a3c);
  color: #000;

  font-size: 26px;
  font-weight: 600;

  cursor: pointer;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(201,154,60,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filter-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(201,154,60,0.7);
}

/* .filter-arrow.left {
  margin-right: -5px;
}

.filter-arrow.right {
  margin-left: -5px;
} */

/* ================= SCROLL FADE ================= */
.filter-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;

  width: 90px;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.612),
    rgba(0, 0, 0, 0.123)
  );

   border-radius: 0px 20px 20px 0px;
 
}

/* ================= HIDE SCROLLBAR ================= */
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter-bar {
  scrollbar-width: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .filter-arrow {
    display: none;
  }

  .filter-bar ul {
    padding: 0 20px 12px;
  }

  .premium-products {
    padding: 80px 20px;
  }


  .filter-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;

  width: 50px;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.776),
    rgba(0, 0, 0, 0.123)
  );
  
  border-radius: 0px 10px 10px 0px;
}

}

@media (max-width: 480px) {
  .filter-bar li {
    font-size: 12.5px;
    padding: 7px 14px;
  }
}




/* ================= PRODUCTS GRID ================= */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 36px;
  justify-items: center;
}

/* ================= CARD ================= */
.card {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card.hide {
  opacity: 0;
  transform: scale(0.95);
}

/* ================= IMAGE ================= */
.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* NEW BADGE */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ================= CONTENT ================= */
.card-info {
  padding: 18px 18px 22px;
}

.card-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 6px;
  line-height: 1.4;
}

.price {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

/* ================= BUTTON ================= */
.btns {
  display: flex;
}

.btns button {
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #e6c36a, #c99a3c);
  color: #000;
  transition: all 0.3s ease;
}

.btns button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201,154,60,0.5);
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .products {
    gap: 30px;
  }

  .card-img img {
    height: 210px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .product-section {
    padding: 70px 20px;
  }

  .products {
    gap: 28px;
  }

  .card {
    max-width: 100%;
  }

  .card-img img {
    height: 200px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .filter-bar li {
    font-size: 13px;
    padding: 8px 16px;
  }

  .card-img img {
    height: 190px;
  }

  .card-info h4 {
    font-size: 15px;
  }

  .price {
    font-size: 16px;
  }
}


/* =============================================contact page=================================== */


/* ================================herosection================================= */

 .contact-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background-size: cover;
  background-position: center;
  transition: background-image 1.2s ease-in-out;
}

/* Overlay */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(27, 27, 28, 0.88),
    rgba(28, 29, 30, 0.55)
  );
  
}

/* Content */
.contact-hero-content {
  position: relative;
  max-width: 700px;
  color: #ffffff;

  animation: contactFadeUp 1.2s ease forwards;
}

.contact-breadcrumb {
  font-size: 14px;
  color: #f6b400;
  letter-spacing: 0.5px;
}

.contact-hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 14px 0;
  font-weight: 700;
}

.contact-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 520px;
}

/* Animation */
@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 55vh;
    padding: 0 6%;
  }

  .contact-hero-content p {
    font-size: 15px;
  }
}

/* ==================map section============================ */

/* ===============================
   MAP SECTION
================================ */
.map-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  padding: 80px 20px;
  color: #fff;
}

/* ===============================
   WRAPPER
================================ */
.map-wrapper {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* ===============================
   INFO SIDE
================================ */
.map-info h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #c89a3b;
}

.map-info p {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ===============================
   DETAILS
================================ */
.map-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-item svg {
  width: 26px;
  height: 26px;
  fill: #d4a847;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item span {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* ===============================
   MAP BOX
================================ */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  height: 420px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
}

/* ===============================
   REVEAL ANIMATION
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .map-wrapper {
    gap: 40px;
  }

  .map-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 60px 16px;
  }

  .map-info h2 {
    font-size: 26px;
  }

  .map-box {
    height: 300px;
  }
}

/* ==============================form section ======================== */

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 80px 20px;
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===============================
   LEFT INFO
================================ */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #c89a3b;
}

.contact-info p {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 40px;
}

.info-box {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-item svg {
  width: 28px;
  height: 28px;
  fill: #d4a847;
  flex-shrink: 0;
}

.info-item span {
  font-size: 13px;
  color: #aaa;
  display: block;
}

.info-item strong {
  font-size: 15px;
  color: #fff;
}

/* ===============================
   FORM
================================ */
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  color: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #000;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4a847;
  box-shadow: 0 0 0 2px rgba(212,168,71,0.2);
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #e6c066, #c89a3b);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,168,71,0.4);
}

/* ===============================
   SCROLL REVEAL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .contact-container {
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-form h3 {
    font-size: 20px;
  }
}
/* ==============================service page================================================ */
/* ===============================
   HERO SLIDER
================================ */
.service-hero-slider {
  position: relative;
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-image 1.2s ease-in-out;
}

/* ===============================
   OVERLAY
================================ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

/* ===============================
   CONTENT
================================ */
.hero-content {
  position: relative;
  z-index: 2;
  /* text-align: center; */
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

/* Breadcrumb */
.hero-breadcrumb {
  font-size: 13px;
  color: #d4a847;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

/* Heading */
.hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Text */
.hero-content p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 44px;
  }
  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .service-hero-slider {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .service-hero-slider {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }
}


/* SECTION */
.service-cards-section {
  padding: 100px 20px;
  background: #0b0b0b;
}

.service-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.service-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.service-header h2 {
  font-size: 40px;
  color:#c89a3b;
}

.service-header p {
  color: #cfcfcf;
  font-size: 16px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  background: linear-gradient(180deg, #111, #0c0c0c);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212,168,71,0.2);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(212,168,71,0.25);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card h3 {
  font-size: 22px;
  color: #d4a847;
  margin-bottom: 12px;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

/* BUTTON */
.service-card a {
  margin-top: 22px;
  align-self: flex-start;
  text-decoration: none;
  font-weight: 600;
  color: #d4a847;
  font-size: 14px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-header h2 {
    font-size: 32px;
  }

  .service-card img {
    height: 160px;
  }
}

/* ======================whychoose us=========================== */

.service-highlight-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b0b0b, #111);
}

.highlight-container {
  max-width: 1200px;
  margin: auto;
}

.highlight-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.highlight-header h2 {
  font-size: 38px;
  color: #c89a3b;
  margin-bottom: 15px;
}

.highlight-header p {
  color: #cfcfcf;
  font-size: 16px;
}

/* GRID */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD */
.highlight-card {
  background: #0f0f0f;
  border-radius: 20px;
  padding: 35px 30px;
  border: 1px solid rgba(212,168,71,0.18);
  text-align: center;
  min-height: 260px;
  transition: 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212,168,71,0.25);
}

/* ICON */
.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,#e6c066,#c89a3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 26px;
  fill: #000;
}

/* TEXT */
.highlight-card h3 {
  color: #d4a847;
  font-size: 20px;
  margin-bottom: 12px;
}

.highlight-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .highlight-header h2 {
    font-size: 30px;
  }
}

/* ============pdf section========================= */

.catalogue-section {
  padding: 100px 20px;
 
   background: linear-gradient(180deg, #0b0b0b, #111);
}

.catalogue-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.catalogue-header {
  text-align: center;
  margin-bottom: 60px;
}

.catalogue-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #c58a4a;
  display: inline-block;
  margin-bottom: 15px;
}

.catalogue-header h2 {
  font-size: 40px;
  color:#c58a4a;
}

/* SLIDER */
.catalogue-slider-wrapper {
  overflow: hidden;
}

.catalogue-slider {
  display: flex;
  transition: transform 0.6s ease;
}

/* CARD */
.catalogue-card {
  min-width: 33.333%;
  padding: 20px;
  box-sizing: border-box;
}

.catalogue-card-inner {
  background: #edebeb;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  height: 100%;
}

/* PDF ICON */
.pdf-icon {
  width: 100px;
  height: 120px;
  border: 3px solid #ff3b3b;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  color: #333;
}

.pdf-icon span {
  font-size: 34px;
  color: #ff3b3b;
}

/* TEXT */
.catalogue-info h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #2b1d14;
}

/* BUTTON */
.catalogue-info a {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  background: #c58a4a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.catalogue-info a:hover {
  background: #a96e36;
}

/* DOTS */
.catalogue-dots {
  margin-top: 40px;
  text-align: center;
}

.catalogue-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #d3b49a;
  border-radius: 50%;
  cursor: pointer;
}

.catalogue-dots span.active {
  background: #c58a4a;
  width: 26px;
  border-radius: 20px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .catalogue-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {

  .catalogue-slider-wrapper {
    padding: 0 10px;
  }

  .catalogue-card {
    min-width: 100%;
    padding: 10px;
  }

  .catalogue-card-inner {
    padding: 25px 20px;
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
  }

  .pdf-icon {
    width: 80px;
    height: 100px;
  }

  .pdf-icon span {
    font-size: 28px;
  }

  .catalogue-info h3 {
    font-size: 20px;
  }
}




 /* =============================== FLOATING CALL BUTTON================================= */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 50px;

  background: linear-gradient(135deg, #e6c36a, #c99a3c);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(201,154,60,0.55);
  transition: all 0.3s ease;

  animation: callPulse 2.5s infinite;
}

/* SVG Icon */
.call-icon svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

/* Hover */
.floating-call:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(201,154,60,0.7);
}

/* Pulse Animation */
@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201,154,60,0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(201,154,60,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201,154,60,0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .floating-call {
    padding: 14px;
    border-radius: 50%;
  }

  .call-text {
    display: none;
  }

  .call-icon svg {
    width: 20px;
    height: 20px;
  }
}


/* ================================= FLOATING WHATSAPP =================================== */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 90px; /* sits above Call button */
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 50px;

  background: linear-gradient(135deg, #e6c36a, #c99a3c);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;

  animation: waPulse 2.5s infinite;
}

/* SVG Icon */
.wa-icon svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

/* Hover */
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(211, 167, 37, 0.687);
}

/* Pulse Animation */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201,154,60,0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(201,154,60,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201,154,60,0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .floating-whatsapp {
    padding: 14px;
    border-radius: 50%;
  }

  .wa-text {
    display: none;
  }

  .wa-icon svg {
    width: 20px;
    height: 20px;
  }
}
/* ==================================up arrow mark======================================= */

/* ================= BACK TO TOP ================= */
#backToTop {
  position: fixed;
  bottom: 150px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ebc460, #c99a3c);
  color: #000;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(201,154,60,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.4s ease;
  z-index: 9999;
}

/* Show state */
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover effect */
#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201,154,60,0.6);
}

/* Mobile size */
@media (max-width: 768px) {
  #backToTop {
    width: 42px;
    height: 42px;
    font-size: 20px;
    bottom: 150px;
    right: 20px;
  }
}
