
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #191A1B;
  overflow-x: hidden;
  
}

/* Navbar */
#navbar iframe {
  background: transparent;
  z-index: 100;
  width: 100%;
  height: auto;
  border: none;
}

/* Hero Section */
.hero {
  top: 0;
  margin-top: 0;
  height: 100vh;
  width: 100%;
  background-image: url('/hader-pic.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 10px;
  /* background: linear-gradient(90deg, #F48FB1, #9575CD); */
  background: #FFF9FB;
  stroke: #D1A7FF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* From Uiverse.io by mrtqzbek11 */ 
.hero-button {
  width: 165px;
  height: 62px;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  border-radius: 1rem;
  border: none;
  position: relative;
  background: #100720;
  transition: 0.1s;
}

.hero-button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-button:hover {
  transform: scale(0.9) rotate(3deg);
  background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  transition: 0.5s;
}

/* Gallery */
.gallery-section {
  display: flex;
  flex-direction: column; /* Stack the title and background vertically */
  align-items: center;    /* Center align items horizontally */
  justify-content: center; /* Center align items vertically */
  height: auto;
  width: 100%;
  background: #191A1B;
}

.gallery-title {
  margin: 20px;
  color: #FFF9FB;
  font-weight: 100;
  font-size: 40px;
  letter-spacing: 10px;
  text-align: center; /* Center-align the text */
}

.gallery-bg {
  background-color: #0E0E11;
  column-width: 250px; /* Minimum width of each column */
  column-gap: 15px; /* Spacing between columns */
  padding: 15px;
  margin: 0 auto; /* Center the gallery */
  box-sizing: border-box;
  width: 90%;
  margin-bottom: 7%;
}
.gallery-item {
  position: relative; /* Ensures .description is positioned relative to the item */
  overflow: hidden; /* Prevents .description from overflowing */
  break-inside: avoid; /* Prevent items from breaking across columns */
  margin: 10px; /* Adds consistent spacing between items vertically */
  padding: 10px;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
}
.gallery-item img {
  width: 100%;
  display: block;
}

/* Description styling */
 .gallery-item p {
  font-size: 1rem;
  font-weight: bold;
  color: #fff9fbb9;
  margin-top: 10px;
  text-align: center;
}

/* Hover effect */
.gallery-item:hover {
  transform: scale(1.05) ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.description{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 5px;

  
}






.services-section {
  display: flex;
  flex-direction: column; /* Stack the title and background vertically */
  align-items: center;    /* Center align items horizontally */
  justify-content: center; /* Center align items vertically */
  height: auto;
  width: 100%;
  background: #191A1B;
}

.services-title {
  margin: 20px;
  color: #FFF9FB;
  font-weight: 100;
  font-size: 40px;
  letter-spacing: 10px;
  text-align: center; /* Center-align the text */
}

.services-bg {
  display: flex;
  flex-wrap: wrap; /* Allow cards to wrap to the next line */
  justify-content: center; /* Center the cards */
  background-color: #0E0E11;
  padding: 15px;
  margin: 0 auto; /* Center the gallery */
  box-sizing: border-box;
  width: 90%;
  margin-bottom: 7%;
}

.services-card {
  background: #D1A7FF;
  border-radius: 30px;
  height: auto;
  width: 300px; /* Fixed width */
  min-width: 250px; /* Minimum width to prevent shrinking */
  margin: 10px; /* Add some margin between cards */
}

.best-seller {
  padding: 10px;
  background-color: #6A00FF;
  color: #FFF;
  height: 30px;
  width: 80px;
  font-size: 12px;
  margin-left: -5px;
  border-radius: 20px 0 0 0;
}

.main-title {
  justify-self: center;
  font-size: 30px;
  padding: 10px;
  font-weight: 200;
  letter-spacing: 5px;
}

.description-title {
  justify-self: center;
  text-wrap: wrap;
  font-size: 13px;
  padding: 10px;
}

.detailed-description h4 {
  font-size: 12px;
  padding: 10px;
  font-weight: 200;
  letter-spacing: 1px;
}

.btn-div {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  justify-items: center;
  margin-top: 10px;
}

.book-btn {
  background: #191A1B;
  color: #FFF9FB;
  height: 40px;
  width: 130px;
  border-radius: 15px 0 15px 0;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
  .services-card {
    width: 100%; /* Make cards full width on small screens */
    min-width: auto; /* Remove minimum width restriction */
  }
}


.about-section{
  display: flex;
  flex-wrap: wrap; /* Allow cards to wrap to the next line */
  column-count: 2;
  align-items: center;
  justify-content: center; /* Center the cards */
  padding: 15px;
  width: 80%;
  margin-left: 10%;
}

.about-title{
  justify-self: center;
  align-items: center;
  margin: 20px;
  color: #FFF9FB;
  font-weight: 100;
  font-size: 40px;
  letter-spacing: 10px;
  text-align: center; /* Center-align the text */
}

.about-image-class img{
  width: 100%;
  height: auto;
}
.about-para-class h1{
  margin-top: 20px;
  color: #EDFF24;
  letter-spacing: 5px;

}

.about-para-class h3{
  color: #F2A7A1;
  margin-top: 5px;
  letter-spacing: 3px;
  
}

.about-para-class h6 {
  color: #D1A7FF;
  margin-top: 30px;
  letter-spacing: 1px;
}