*{
    margin: 0;
    padding: 0;
    user-select: none;
}
/* navbar section */
.navbar {
  width: auto;
  height: 70px;
  background-color:orange;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
}
.logo img{
    background-size: cover;
}
.contact-btn {
  padding: 10px 20px;
  background-color:#6D8196;
  border: none;
  margin-right: 100px;
  width: 150px;
  height: 40px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}
.contact-btn a{
    text-decoration: none;
    color: white;
}
.contact-btn:hover {
   background: #e05700;
}
.contact-btn:focus {
  outline: none;
}
/* slider section */
.slider {
  width: 98%;
  height:450px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  width: 100%;
  height: 100%;
  object-fit:cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}

.slide.active {
  opacity: 1;
}
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  font-size: 18px;
  background: #ffffffaa;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.prev {
    background: transparent;
  left: 10px;
}
.next {
    background: transparent;
  right: 10px;
}
/* about section */
  .about-us {
    padding: 10px 20px;
    background-color:orange;
}
.about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}
.about-image,
.about-content {
    width: 50%;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.about-content {
    padding: 10px 20px;
}
.about-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
}
.about-content h3{
    font-size: 20px;
    padding: 5px 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height:1.4;
}
.callbtn a{
    text-decoration: none;
    color: white;
}
.callbtn{
     background-color:black;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block;
}
.callbtn:hover{
    background-color:#3b5b8a;
    transition: 0.3s;
}
.about-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 5px ;
}
/* service section */
.productsection{
    margin: auto;
    max-width: 1280px;
    padding: 30px 0px 0px 0px;
}
.headingrow{
    width: 100%;
    margin-top: 5px;
    justify-content: space-between;
}
.headingrow img{
    margin-left: 38%;
}
.headingrow h2{
    margin-left: 40%;
    margin-top: 0;
    margin-bottom: 0;
    color: orange;
}
.headingrow a{
    margin-left: 43%;
    color: grey;
}
.productrow{
    width: 100%;
    margin: 20px 5px;
    flex-wrap: wrap;
    gap: 2%;
    display: flex;
}   
.productitems{
    flex-basis: 23% ;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #ccc;
    border: 1px solid #ccc;
}
.productimage{
    text-align: center;
     padding: 10px 0px;
     border-radius: 60%;
}
.productitems:hover{
    transform: scale(1.05);
}
.productcontent{
    padding: 15px;
    padding-top: 0px;
}
.productcontent h3{
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}
.productcontent p{
   font-size: 14px;
   text-align: center;
   color:black;
   font-weight: 400;
} 
/* why chose us section*/
   .why-choose-us {
    padding: 10px 20px;
    background: linear-gradient(135deg, #eef2ff, #fdfbfb);
}
.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}
.why-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.why-content h2 {
    font-size: 38px;
    color: #222;
    margin-bottom:45px;
    color: orange;
}
.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}
.points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}
.point-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.point-box p {
    font-size: 16px;
    color: #333;
}
.point-box:hover {
    transform: translateY(-5px);
   background:orange;
}
.point-box:hover p {
    color:black;
}
.why-btn {
    padding: 14px 32px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.why-btn:hover {
    background: #3730a3;
}
/*  event facility*/
 .facilities {
    padding: 10px 50px;
    background: #f9f9f9;
    text-align: center;
    font-family: Arial, sans-serif;
} 
.facilities h2 {
    font-size: 2.2rem;
    margin-top: 0px;
    color: orange;
    margin-bottom: 20px;
}
.facility-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.facility-card {
    position: relative;
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}
.overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    color: #fff;
    padding: 20px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .4s ease;
    text-align: center;
}
.overlay h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.overlay p{
    font-weight: bolder;
}

.facility-card:hover img {
    transform: scale(1.1);
    filter: blur(2px);
}
.facility-card:hover .overlay {
    opacity: 1;
}
/* hall section */
 .shopsection{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
}
.hallheadingrow{
    width: 100%;
    margin-top: 5px;
    justify-content: space-between;
}
.hallheadingrow img{
    margin-left: 38%;
}
.hallheadingrow h2{
    margin-left: 43%;
    color: orange;
}
.box{
  height:auto;
  width: 23%;
  display: flex;
  flex-wrap: wrap;
  background-color:orange;
  padding: 10px 0px 15px;
  margin-top: 10px;
}
.boximage{
  height: 200px;
  background-size: cover;
  margin-top: 5px;
  margin-bottom: 1rem;
}
.boximage:hover{
    transform: scale(1.05);
}
.boxcontent{
    margin-left:2rem;
    margin-right: 2rem;
}
.boxcontent h2{
    text-align: center;
    font-size: 20px;
}
.boxcontent p{
  text-align: center;
  margin-top: 1px;
  font-size: 15px;
}
.boxcontent button{
    display: block;
    margin: 5px auto;
    padding: 8px 16px;
    background-color: orange;
    color: white;
    border-color:black;
    border-radius: 25px;
    cursor: pointer;
}
/* quality section */
.quality{
    width:auto;
    height:auto;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-evenly;
    background-color: black;
    color: white;
 }
 .quality-box{
    flex-basis: 22%;
    margin-top: 10px;
    text-align: center;
    gap:50px;
 }
 .quality-box h3{
    margin: 15px 0px;
 }
 .quality-box-content h3{
    font-size: 20px;
    margin: 10px 5px;
 }
.quality-box-content p{
  margin: 0;
}
/* marquee section */
.marquee-section{
    margin-left: 15%;
    margin-right: 15%;
}
/* footer section */
    .footermid{
    max-width: 100%;
}
.footermidrow2{
     color: rgb(102,102,102);
     width: 100%;
     height: auto;
    font-size: 14px;
     display: flex;
     background-color: black;
    align-items: center;
    padding: 20px 0px;  
}
.contact-section{
    flex-basis: 45%;
    padding-left:4%;
}
.contact-section h3{
     font-weight: bolder;
    margin-bottom: 10px;
}
.map{
    flex-basis: 55%;
    margin-right: 15%;
    background-color: white;
    border: 2px solid orange;
}
.map iframe{
    height: auto;
    width: 100%;
}
.footermidrow3{
    width: 100%;
    height: auto;
    background-color: black;
    color: grey;
    text-align: center;
    padding: 10px 0px;
    font-size: 14px;
}


