/* ================= ROOT VARIABLES (DEFAULT THEME) ================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {


  /* __________________________ */
  /* 🌟 Brand Colors */
  --primary: #C8A96A;
  /* Gold */
  --primary-dark: #A8894F;
  /* Hover gold */
  --primary-light: #E6D3A3;
  /* Soft gold */

  /* 🖤 Neutrals */
  --secondary: #111111;
  /* Dark sections */
  --accent: #C8A96A;
  /* Accent same as gold */

  /* 🎨 Backgrounds */
  --bg-main: #F5F1E8;
  /* Main cream bg */
  --bg-light: #FFFFFF;
  /* Section bg */
  --bg-dark: #111111;
  /* Dark section */
  --bg-card: #1A1A1A;
  /* Dark cards */

  /* ✍️ Text */
  --text-main: #2B2B2B;
  /* Main text */
  --text-dark: #000000;
  --text-light: #FFFFFF;
  --text-muted: #6B6B6B;
  /* Secondary text */
  --text-fade: #A0A0A0;
  /* Light text */


  /* ______________________________ */



  /* GRADIENT */
  --gradient-main: linear-gradient(135deg, #C8A96A, #A8894F);

  /* FONTS */
  /* font-family: "Playfair Display", serif; */
  /* font-family: "Poppins", sans-serif; */

  /* --font-primary: "Lora", serif;
  --font-heading: "Great Vibes", cursive;
  --font-basic: sans-serif; */
  --font-primary: "Poppins", sans-serif;
  --font-heading: "Playfair Display", serif;
  --font-basic: sans-serif;

  /* SPACING */
  --padding: 10px;
  --radius: 20px;

  /* SHADOW */
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

  /* TRANSITION */
  --transition: 0.3s ease;
}

/* ================= THEME 1 (DARK GOLD - DEFAULT) ================= */
/* .theme-dark {
  --primary: #C8A96A; 
  --bg-main: #000;
  --text-main: #fff;
} */

/* ================= THEME 2 (ROYAL BLUE) ================= */
/* .theme-blue {
  --primary: #00c6ff;
  --accent: #0072ff;
  --bg-main: #0a0f1c;
  --text-main: #e6f0ff;
} */

/* ================= THEME 3 (WEDDING PINK) ================= */
/* .theme-pink {
  --primary: #ff4e8a;
  --accent: #ff9eb5;
  --bg-main: #1a0f14;
  --text-main: #ffe6ee;
} */

/* ================= THEME 4 (ELEGANT GREEN) ================= */
/* .theme-green {
  --primary: #00c896;
  --accent: #00a67d;
  --bg-main: #061a14;
  --text-main: #e6fff7;
} */









/* @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');


/* * {
  color: #FA8112;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  list-style: none;
  /* overflow-y: hidden; */

/* } * */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--primary);
  font-family: var(--font-primary);
}

/* html,
body {
  height: 100%;
  width: 100%;
  /* overflow-x: hidden; */
/* -ms-overflow-style: none; */
/* IE and Edge */
/* scrollbar-width: none; */
/* Firefox */

/* background: #000; */
/* } */


body {
  background: var(--bg-main);
  overflow-x: hidden;
  color: var(--text-main);
}




/* a {
  color: rgb(0, 0, 0);
  } */

a {
  color: var(--text-dark);
  text-decoration: none;
}

/* BUTTON */



button {
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;


  background: var(--accent);
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}

button:hover {
  background: var(--primary-light);
  color: var(--bg-light);
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  /* background: linear-gradient(135deg, #25D366, #128C7E); */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: floatPulse 2s infinite;

  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: var(--shadow);
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Icon Styling */
.whatsapp-float i {
  margin: 0;
}


/* Pulse Animation */
@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(1, 1, 1, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}





/* ---------------------------------------------------------- */
.div-nabar {

  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  height: 60px;
  width: 100%;
  top: 0;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* margin-bottom: 60px; */

  position: fixed;
  background-color: var(--bg-main);

}




.navbar {
  /* border: 2px solid blue; */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 5px;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  /* background-color: rgb(168, 161, 161) !important; */
  /* height: 60px; */
  /* width: 100%; */
  /* gap: 20px; */




}

.logo-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar img {
  width: 10%;
  height: 10%;
}

.logo {
  width: 30%;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;

  /* font-family: serif; */
  display: flex;
  flex-direction: row;
  justify-content: flex-start;

  /* font-weight: 300; */
  /* font-family: "Great Vibes", cursive; */

  font-family: var(--font-heading);

}

.navbar ul li {
  list-style: none;
  display: flex;


}

.nav-links {
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
  padding-right: 40px;
}

.nav-lo {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  /* align-items: center; */
}

.logo span {
  /* color: rgb(255, 255, 255); */
  padding-left: 5px;
  color: var(--text-main);


}

.logo-sub {
  font-size: 12px;
  color: var(--bg-dark);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  /* color: white; */
  color: var(--text-main);


}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {

  /* border: 1px solid rgb(40, 40, 40);
  background-color: #333;
  color: #FA8112; */

  background-color: #333;
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 4px;
  transition: 0.3s;

}

/* ____________________________________ */


.hero-video {
  position: relative;
  height: 100vh;
  left: 0;
  right: 0;
  overflow: hidden;
  /* opacity: 0.1; */
  top: 60px;
  border: 8px solid rgb(249, 64, 255);

}

.imag-hero-main {
  width: 100%;
  /* border: 2px solid green; */
}



.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 40%;
}

.video-container {
  /* border: 2px solid red; */
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.video-container iframe {
  /* border: 5px solid rgb(0, 251, 255); */

  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  /* 16:9 ratio */
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* disables click */

  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ________________________________________ */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: url('https://i.ibb.co/7QpKsCX/'); */
  animation: float 20s linear infinite;
  /* opacity: 0.8; */
}

/* @keyframes float {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1000px);
  }
} */





/* _______________________________ */


.hero {
  /*
 
  padding: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1; */

  /* position: relative;
  width: 300px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 125vh;
  /* border: 2px solid red; */
  margin-top: 60px;


}


.hero::before {
  /* content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  height: 100%;

    background: url("./IMAGE\ \ \(77\).jpg") center/cover no-repeat;

  
  opacity:  1;

  z-index: -1; */


  /* content: "";
  position: absolute;
  inset: 0;

  background: url("./IMAGE\ \ \(45\).jpg") center/cover no-repeat; */
}




.hero-div {
  width: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px;
  /* border: 6px solid rgb(1, 73, 255); */
  padding: 10px;
  margin: 40px;
  z-index: 10;
}


/* Title */
.text-5xl {
  /*
  font-weight: 600;
  font-family: sans-serif;
  display: flex;
  gap: 0px;
 
  font-style: normal;

  font-family: var(--font-heading);
  font-family: "Great Vibes", cursive !important;
  font-weight: 800;
  color: var(--primary); */
  color: black;
  font-size: 40px;
}

.hero-div-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  /* border: 2px solid green; */
  padding: 20px;
  margin: 10px;

}

.image-box-hero1 {
  width: 250px;
  height: 330px;


  background: url("./JW_IMG_12.jpg") center/cover no-repeat;
  border-radius: 20px;
  /* rounded corners */
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.image-box-hero2 {

  width: 250px;
  height: 330px;

  background: url("./JW_IMG_13.png") center/cover no-repeat;

  border-radius: 20px;
  /* rounded corners */
  overflow: hidden;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.image-box-hero3 {
  width: 250px;
  height: 330px;

  background: url("./JW_IMG_7.jpg") center/cover no-repeat;

  border-radius: 20px;
  /* rounded corners */
  overflow: hidden;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;


}

/* Subtitle */
.mt-4-text-lg {
  font-size: 15px;
  font-weight: 600;
  font-family: sans-serif;
  /* border: 2px solid green; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}


.hero-sec-btn {
  display: flex;
  justify-content: center;
  z-index: 9;
  width: 100%;
  margin: 20px;

}


.hero-sec-btn button {
  width: 35%;
}


/* LEFT TEXT */
.left-text {
  /* width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end; */
  /* display: inline-block; */
  /* opacity: 0;
  padding-right: 10px; */
  /* transform: translateX(-200px); */
  /* animation: slideLeft 1.5s ease-out forwards; */
  /* border: 2px solid rgb(208, 171, 171); */
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bg-dark);

}

.hero-text-s {
  font-size: 16px;
  font-weight: 200;
  line-height: 1;


}

/* RIGHT TEXT */
.right-text {
  width: 50%;
  /* border: 2px solid black; */
  display: inline-block;
  opacity: 0;
  color: white;
  transform: translateX(200px);
  animation: slideRight 1.5s ease-out forwards;
}

/* BOTTOM TEXT */
.bottom-text {
  margin-top: -25px;

  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 1.5s;
  /* appears after 3 seconds */
}

/* KEYFRAMES */
@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ______________________________________ */
.about-section {
  /* margin-top: 17px; */
  padding: 80px 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border: 4px solid rgba(3, 97, 249, 0.555); */
  background-color: #ccc;
  background-color: var(--bg-light);

}

/* CONTAINER */
.about-container {
  /* border: 2px solid blue; */
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  /* flex-wrap: wrap; */
}

/* IMAGE */

.about-image {
  /* border: 5px solid red; */
  width: 30%;
}

.about-image img {
  /* width: 00px; */
  width: 100%;
  border-radius: 20px;
  transition: 0.5s;
  transform: scale(0.9);
  /* border: 2px solid rgb(7, 173, 120); */
  opacity: 0;
}

/* CONTENT */
.about-content {
  max-width: 600px;
  /* border: 2px solid burlywood; */
  width: 90%;
}

.about-sec-h2 {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
  z-index: 9;

}

.about-content p {
  margin-bottom: 10px;
  color: #ccc;
  color: black;
  line-height: 1.6;
  color: var(--text-dark);

}

/* HIGHLIGHT */
.highlight {
  margin-top: 20px;
  font-style: italic;
  color: gold;
  color: var(--accent);

}

/* BUTTON */
.about-btn {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  background: var(--primary-light);
  color: var(--bg-light);
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;

  transition: 0.3s;
}

.about-btn:hover {
  background: var(--accent);
  color: var(--bg-light);
}

/* ANIMATION ACTIVE */
.show .about-image img {
  transform: scale(1);
  opacity: 1;
}

.show .about-content {
  transform: translateX(0);
  opacity: 1;
}

.about-content {
  transform: translateX(50px);
  opacity: 0;
  transition: 0.8s ease;
}



/* ___________________________________________ */

.services {
  padding: 80px 20px;
  background: var(--bg-light);
  color: var(--text);
  text-align: center;

  /* border: 5px solid red; */
}


.jw-section-bg-servc {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* backop */
  /* opacity: .8; */

}

.jw-section-bg-servc::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.7); */
}

.container-why-us {
  /* opacity: 1; */
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--card-bg);
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #bbb;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  /* color: var(--bg-light);
  color: #fff; */
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* Animation Active */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}


/* ____________________________________________________________------- */

.gallerysec {
  padding: 80px 20px;
  background: var(--bg-main);
  color: var(--text-main);
  text-align: center;
  overflow: hidden;
}

.gallery-slidersec {
  overflow: hidden;
  position: relative;
}

.gallery-tracksec {
  display: flex;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

/* Image Style */
.gallery-tracksec img {
  width: 400px;
  /* height: 300px; */
  object-fit: cover;
  margin: 10px;
  border-radius: var(--radius);
  transition: var(--transition);
  /* box-shadow: var(--shadow); */
}

/* Hover Effect */
.gallery-tracksec img:hover {
  transform: scale(1.1);
}

/* Pause on Hover */
.gallery-slidersec:hover .gallery-tracksec {
  animation-play-state: paused;
}

/* Animation */
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-tracksec img {
    width: 220px;
    height: 150px;
  }
}



/* _______________________________ */

/* viddeo show case  */

.video-showcase {
  padding: 80px 20px;
  background: var(--bg-light);
  color: var(--text-main);
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 50px;
}

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.video-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transform: translateY(40px);

  /* opacity: 0; */
  transition: var(--transition);
}

/* Thumbnail */
.video-thumb {
  position: relative;
}

.video-thumb img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-main);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 20px;

}

/* Hover Preview */
.video-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

/* Animation */
.video-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.video-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  /* border: 5px solid red; */
  background: url("./IMAGE\ \ \(30\).jpg") center/cover no-repeat;

  opacity: 1;

}

.video-modal.active {
  display: flex;
}

/* Video Container */
.video-container {
  height: 100%;
  width: 100%;
  max-width: 900px;
  /* border: 5px solid rgb(67, 255, 4); */

}

.video-container iframe {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
}

/* Close */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: var(--text-main);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .video-container iframe {
    height: 250px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* _____________________________________________ */
/* why us  */




.why-us {
  padding: 80px 20px;
  /* background: var(--bg-main); */
  color: var(--text-main);
  text-align: center;
  /* border: 3px solid green; */

}

.section-title-choose {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--primary);
  color: #fff;
  z-index: 100;
}

.section-subtitle-why {
  font-family: var(--font-primary);
  color: var(--text-muted);
  margin-bottom: 50px;
  color: #fff;

}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  background: var(--secondary);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Icon */
.why-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary);
  transition: var(--transition);
}

.why-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hover Effect */
.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  top: 100%;
  left: 0;
  z-index: 0;
  transition: var(--transition);
}

.why-card:hover::before {
  top: 0;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.why-card:hover i,
.why-card:hover h3,
.why-card:hover p {
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

/* Scroll Animation */
.why-card.show {
  opacity: 1;
  transform: translateY(0);
}



/*  ________________________ proces s  */

.process {
  padding: 100px 20px;
  background: var(--bg-light);
  color: var(--text-main);
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 60px;
}

/* Timeline Layout */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
}

/* Connecting Line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background: #333;
  transform: translateY(-50%);
  z-index: 0;
}

/* Glow Animation Line */
.process-timeline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 0%;
  height: 4px;
  background: var(--gradient-main);
  transform: translateY(-50%);
  animation: glowLine 4s infinite linear;
  z-index: 1;
}

@keyframes glowLine {
  0% {
    width: 0%;
  }

  100% {
    width: 90%;
  }
}

/* Step */
.process-step {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 200px;
  padding: 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  /* opacity: 0; */
  transform: translateY(40px);
}

/* Icon Circle */
.process-step .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 20px;
}

.process-step .icon i {
  color: #Fff;
}

/* Text */
.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hover */
.process-step:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Animation */
.process-step.show {
  opacity: 1;
  transform: translateY(0);
}


/* ---------------------------- */
.testimonials {
  padding: 80px 20px;
  background: var(--bg-main);
  color: var(--text-main);
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 50px;
  font-family: var(--font-primary);
}

/* Slider Wrapper */
.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

/* Track */
.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.stars {
  margin: 10px 0;
}

.stars i {
  color: var(--accent);
  /* gold color */
  font-size: 16px;
  margin: 0 2px;
  transition: var(--transition);
}


/* Optional Hover Effect */
.testimonial-card:hover .stars i {
  color: var(--text-dark);
}

/* Card */
.testimonial-card {
  min-width: 300px;
  max-width: 350px;
  background: var(--secondary);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  /* opacity: 0; */
  transform: translateY(40px);
}

/* Image */
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--primary);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-family: var(--font-primary);
  color: var(--primary);
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: var(--gradient-main);
  color: var(--text-dark);
}

.testimonial-card:hover p,
.testimonial-card:hover h3 {
  color: var(--text-dark);
}

/* Scroll Animation */
.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 250px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* ______________________________________________ */

/* SECTION */
.package-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ccc;
}

.package-title {
  font-size: 40px;
  margin-bottom: 40px;
}

/* FLEXBOX */
.package-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BOX */
.package-box {
  /* background: #111; */
  padding: 25px;
  width: 330px;
  border-radius: 15px;
  transition: 0.4s ease;
  cursor: pointer;
  /* border: 1px solid #222; */
  padding-top: 40px;
  padding-bottom: 40px;
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
  background: var(--secondary);
  box-shadow: var(--shadow);
}

/* TITLE */
.package-box h3 {
  font-size: 22px;
}

.package-box h1 {
  font-size: 32px;
  margin: 10px 0;
  /* color: gold; */
  color: var(--accent);

}

.sub {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

/* LIST */
.package-box ul {
  text-align: left;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.package-box ul li {
  margin: 8px 0;
  font-size: 14px;
  color: #ccc;
}



.package-box button {
  background: gold;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.package-box button:hover {
  background: #fff;
}

/* HOVER EFFECT */
.package-box:hover {
  transform: translateY(-10px);
}

/* ACTIVE CLICK EFFECT */
.package-box.active {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  transform: scale(1.05);
  /* border: 1px solid gold; */
}

/* ----------------------------------------------- */
/* call to aciton  */
.cta {
  padding: 100px 20px;
  background: url('./IMAGE\ \ \(26\).jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
}

/* Overlay */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);


}


/* Glass Container */
.cta-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--text-main);
  animation: fadeUp 1s ease forwards;
}

/* Heading */
.cta h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
}

.cta p {
  margin: 15px 0 30px;
  color: var(--text-muted);
}

/* Countdown */
.countdowncta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdowncta div {
  background: var(--secondary);
  padding: 15px;
  border-radius: var(--radius);
  min-width: 70px;
}

.countdowncta span {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary);
}

.countdowncta p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--text-dark);
  padding: 12px 25px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text-dark);
  padding: 12px 25px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text-dark);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .countdown {
    flex-wrap: wrap;
  }

  .cta h2 {
    font-size: 2rem;
  }
}





/* __________________________________________________________________ */
.footer {
  /* background: #111; */
  /* color: #fff; */
  padding: 40px 20px 20px;
  font-family: sans-serif;
  color: var(--text-main);
  margin-top: 12px;

}

.footer-container {
  display: flex;
  /* border: 2px solid green; */
  justify-content: space-between;
  flex-direction: row;
  /* padding: 20px; */
  /* flex-wrap: wrap; */
  gap: 30px;
}

/* Brand */
.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--bg-dark);
}

/* Links */
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  /* color: #ccc; */
  text-decoration: none;
  transition: 0.3s;
  color: var(--bg-dark);

}

.footer-links a:hover {
  /* color: #fff; */
  padding-left: 5px;
  color: var(--text-main);

}

/* Contact */
.footer-contact p {
  margin: 5px 0;
  color: var(--bg-dark);


}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;

}

/* Social Icons */
.social-icons {
  margin-bottom: 10px;
}


.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
  color: var(--bg-dark);



  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}
