:root {
    --color-background: #000000;
    --color-text: #ffffff;
    --color-primary: #2dd4bf;
    --color-secondary: #121826;
    --color-accent: #1E2633;
    --bg-dark: linear-gradient(to bottom right, #181E2C, #181E2C, #000000);
    --bg-light: linear-gradient(to bottom right, #f7fafc, #edf2f7, #ffffff);
    --text-dark: #ffffff;
    --text-light: #1a202c;
    --primary: #4fd1c5;
    --primary-hover: #38b2ac;
    --secondary-dark: #4B5360;
    --secondary-light: #e2e8f0;
}

.iti__country-list{
    background-color: var(--color-secondary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}



.container {
    /* width: 100%; */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    /* border: solid; */
    overflow: hidden;
}

#services .container{
    /* width: 100%; */
     height: 35rem;
     /*border: solid 1px ;*/
     padding-bottom:0;
}



/* Header and Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#MC_LOGO{
    color: white;
}



.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/MC_VIKMA_1.JPG');
    background-size: cover;
    background-position: center 44%;
    background-attachment: fixed; /* Enables background parallax effect */
    background-repeat: no-repeat;
    opacity: 0; /* Start with the background hidden */
    animation: fadeInBackground 2s ease-out forwards; /* Apply the fadeInBackground animation */
}

@keyframes fadeInBackground {
    0% {
        opacity: 0; /* Start with hidden background */
    }
    100% {
        opacity: 1; /* Fade in to full opacity */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards; /* Apply the fadeIn effect */
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* audio {
    display: none;
  } */
  

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0rem;
    opacity: 0;
    animation: fadeInText 2s ease-out 0.5s forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInText 2s ease-out 1s forwards;
}

.hero h1 span, .highlight {
    opacity: 0;
    animation: fadeInText 2s ease-out forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: var(--color-primary);
}

#MC, #VIKMA {
    font-size: 2.8em;
}

#Phase {
    font-size: 1.9em;
    font-weight: normal;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-background);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #26c0ae;
    transform: translateY(-2px);
}


/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--color-background);
    /* border: solid; */
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    /* border: solid; */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* border: solid; */
    width: 100%;
}

.service-card {
    background-color: var(--color-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: solid 1px #212936;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.1);
    border-color: #68D1BF;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 1rem;
    color: var(--color-primary);

}

.service-detail svg{
    margin-right: 1.9%;
}

.service-card h3 {
    font-size: 1.5rem;
    
}

.service-card p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.service-detail{
    margin-bottom: 0.7%;
}

/* About Section */
/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--color-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 212, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay p {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: bold;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  margin-bottom: 2rem;
}

.about-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-list li::before {
  content: '★';
  color: var(--color-primary);
  margin-right: 0.5rem;
}
  
  .team-section {
    margin-top: 4rem;
  }
  
  .team-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
  }
  
  .team-card {
    background-color: var(--color-secondary);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .team-card:hover {
    transform: scale(1.05);
  }
  
  .team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 10%;
  }

  #Tom{
    object-position: center 60%;
  }

  #Bazz{
    object-position: center 50%;
  }

 

  .team-info {
    padding: 1.5rem;
  }
  
  .team-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .team-role {
    color: var(--color-primary);
    margin-bottom: 1rem;
  }
  
  .team-bio {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .read-more {
    background-color: var(--color-primary);
    color: var(--color-text);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .read-more:hover {
    background-color: #20b2aa;
  }
  
  .modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    background-color: var(--color-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 600px;
    width: 90%;
    position: relative;
  }
  
  .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .modal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 2%;
    margin-bottom: 1rem;
  }
  
  #TomModal{
    object-position: center 100%;
  }


  
  .modal-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .modal-role {
    color: var(--color-primary);
    margin-bottom: 1rem;
  }
  
  .modal-bio {
    text-align: center;
  }
  
  .hidden {
    display: none;
  }

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-button {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
    background-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}




.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-item video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}



/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--color-secondary);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-accent);
    border-radius: 10px;
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-primary);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-controls button {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.testimonial-controls button:hover {
    background-color: #26c0ae;
}

#Testimonial_Img img {
    width: 7%; /* Or any desired width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: for rounded corners */
    object-fit: cover; /* Optional: to fill the container */
}


/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-accent);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--color-secondary);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--color-accent);
}

.faq-answer {
    padding: 1rem;
    background-color: var(--color-background);
    display: none;
}

/* Booking Section */

.booking-section {
    height: 80vh;
    width: 100%;
    align-items: center;
    padding: 2rem 0;
    /* border: solid red; */
    background: linear-gradient(to bottom right, #181E2C, #181E2C, #000000);
}

.container {
    width: 95%;
    margin: 0 auto;
    /* border: solid red; */
}

.title {
    width: 55%;
    font-size: 4rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2rem;
    /* border: solid red; */
}

.highlight {
    color: var(--primary);
}

.booking-container {
    background-color: #212836;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    width: 90%;
    height: 30rem;
    padding-left: 5%;
    margin: 0 auto;
    /* border: solid red; */
}

.wheel-container {
    display: inline-block;
    width: 40%;
    height: 80%;
    margin-left: 3%;
    /* border: solid red; */
    vertical-align: top;
}

.wheel {
    position: relative;
    top: 10%;
    width: 22rem;
    height: 22rem;
    border: 4px solid var(--secondary-dark);
    border-radius: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    /* border: solid red; */
    margin: 0 auto;
}

.wheel-icon {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
    /* border: solid red; */
}

svg{
    position: relative;
    top: 20%;
}

.wheel-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.wheel-icon.active {
    box-shadow: 0 0 0 4px var(--primary);
}

.wheel-center {
    position: relative;
    left: 50%;
    bottom: 35%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: solid red; */
}

.step-counter {
    font-size: 2rem;
    font-weight: bold;
    /* border: solid red; */
}

.progress-bar {
    width: 47%;
    height: 0.7rem;
    background-color: var(--secondary-dark);
    border-radius: 5px;
    margin-top: 2.5rem;
    overflow: hidden;
     /* border: solid red; */
}

.progress {
    height: 100%;
    background-color: var(--primary);
    transition: width 0.5s;
}

.form-container {
    position: relative;
    top: 9em;
    left: 4em;
    display: inline-block;
    width: 56%;
    /* border: solid red; */
    vertical-align: top;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

label {
    position: relative;
    /* left: 56%;
    bottom: 9rem; */
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

input, select, textarea {
    /* position: relative; */
    /* left: 55%;
    bottom: 9rem; */
    width: 78%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #394150;
    color: inherit;
    /* margin: 0 auto; */
    margin-bottom: 1rem;
    /* border: solid red; */
}


#whatsapp{
    width: 35vw;
}



.form-navigation {
    width: 82%;
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    /* border: solid red; */
}

#nextBtn{
    background-color: var(--primary-hover);
}

.nav-btn {
    padding: 1rem 1.9rem;
    font-size: 1.2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: white;
    background-color: #4D5562;
    transition: background-color 0.3s;
}

.wed_Ops{
    font-size: 1.2vw;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    color: white;
    background-color: #4D5562;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: var(--primary-hover);
}

.chevron {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    /* border: solid red; */
}

.chevron.left {
    transform: rotate(-135deg);
    margin-right: 0.5rem;
}

.chevron.right {
    transform: rotate(45deg);
    margin-left: 0.5rem;
}

#Date{
    left: 49%;
}
#Name{
    top: 10%;
    left: 65%;
}
#Email{
    top: 40%;
    left: 66%;
}
#WhatsApp{
    top: 74%;
    left: 43%;
}
#duration{
    top: 95%;
    right: 0%;
}
#Location{
    top: 78%;
    left: 31%;
}
#Guests{
    top: 56%;
    right: 11%;
}
#Event_Type{
    top: 24%;
    right: 33%;
}
#Additional_Info{
    bottom: 5%;
    right: 35%;
}
#other{
    right: 20%;
}




.tooltip {
    position: relative;
    display: inline-block;
      
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1025px) {
    .container {
        width: 100%;
        padding: 0 0;
    }

    .title {
        width: 100%;
        font-size: 3rem;
        /* border: solid red; */
    }

    .booking-container {
        height: 46rem;
        width: 95%;
        padding-left: 1.5%;
        padding-right: 1.5%;
        border-radius: 2rem;
         /* border: solid red; */
    }

 

 


.wheel-container {
    display: block;
    height: 60%;
    width: 100%;
    margin: 0 auto;
    /* border: solid red; */
}

.wheel-center {
    bottom: 32%;
}

.progress-bar {
    width: 94%;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: -10rem;
    overflow: hidden;
     /* border: solid red; */
}

.progress-bar_add_class{
/* border: solid red; */
}

.form-container {
    top: 12%;
    left: 0%;
    display: block;
    width: 98%;
    text-align: center;
    margin: 0 auto;
    /* border: solid red; */
}

input, select, textarea {
    width: 95%;
    margin: 0 auto;
}

.form-navigation {
    width: 100%;
    margin-top: 1rem;
    /* border: solid red; */
}

}


@media (max-width: 630px) {
    .title {
        font-size: 2.5rem;
        /* border: solid red; */
    }


    .booking-container {
        height: 46rem;
        width: 96%;
    }


.wheel-container {
    display: block;
    height: 60%;
    width: 100%;
    margin: 0 auto;
    /* border: solid red; */
}

.wheel {
    width: 20rem;
    height: 20rem;
}

.wheel-icon {
    width: 50px;
    height: 50px;
}

#Date{
    left: 53%;
}
#Name{
    top: 13%;
    left: 69%;
}
#Email{
    top: 40%;
    left: 68%;
}
#WhatsApp{
    top: 71%;
    left: 49%;
}
#Time{
    top: 95%;
    right: -10%;
}
#Location{
    top: 98%;
    left: -42%;
}
#Guests{
    top: 58%;
    right: -6%;
}
#Event_Type{
    top: 24%;
    right: 16%;
}
#Additional_Info{
    bottom: 5%;
    right: 14%;
}
#other{
    right: 20%;
}

.wheel-center {
    bottom: 28%;
}

}

/* Footer */
footer {
    background-color: var(--color-background);
    padding: 2rem 0;
    text-align: center;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-primary);
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    padding: 1rem;
}

#mobile-menu a {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.5rem 0;
}

#more-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#more-info.show {
    max-height: 500px;
}

@media (max-width: 1025px) {
    /*.booking-section {*/
    /*    height: 80vh;*/
    /*} */

    .wed_Ops {
        font-size: 3vw;
        padding: 2vw 2vw;
    }

    .container {
        width: 96%;
    }

    .title {
        width: 100%;
        font-size: 3rem;
        /* border: solid red; */
    }

    .booking-container {
        height: 46rem;
        width: 95%;
        padding-left: 1.5%;
        padding-right: 1.5%;
        border-radius: 2rem;
         /* border: solid red; */
    }

    .Booksss{
        height: 60rem;
        /* border: solid red; */
    }


.wheel-container {
    display: block;
    height: 60%;
    width: 100%;
    margin: 0 auto;
    /* border: solid red; */
}

.wheel-center {
    bottom: 32%;
}

.wheel-center-id-add{
    bottom: 20%;
}

.progress-bar {
    width: 94%;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: -10rem;
    overflow: hidden;
     /* border: solid red; */
}

.progress-bar_add_class{
    margin-top: -21rem;
    /* border: solid red; */
    }

.form-container {
    top: 12%;
    left: 0%;
    display: block;
    width: 98%;
    text-align: center;
    margin: 0 auto;
    /* border: solid red; */
}

.form-container-add{
      /* border: solid red; */
      top: 5%;
}

input, select, textarea {
    width: 95%;
    margin: 0 auto;
}

.form-navigation {
    width: 100%;
    margin-top: 1rem;
    /* border: solid red; */
}

}


@media (max-width: 630px) {
    .title {
        font-size: 2.5rem;
        /* border: solid red; */
    }


    .booking-container {
        height: 46rem;
        width: 96%;
    }

    .Booksss{
        height: 60rem;
        /* border: solid red; */
    }


.wheel-container {
    display: block;
    height: 60%;
    width: 100%;
    margin: 0 auto;
    /* border: solid red; */
}

.wheel {
    width: 20rem;
    height: 20rem;
}

.wheel-icon {
    width: 50px;
    height: 50px;
}

#Date{
    left: 53%;
}
#Name{
    top: 13%;
    left: 69%;
}
#Email{
    top: 40%;
    left: 68%;
}
#WhatsApp{
    top: 71%;
    left: 49%;
}
#Time{
    top: 95%;
    right: -10%;
}
#Location{
    top: 98%;
    left: -42%;
}
#Guests{
    top: 58%;
    right: -6%;
}
#Event_Type{
    top: 24%;
    right: 16%;
}
#Additional_Info{
    bottom: 5%;
    right: 14%;
}
#other{
    right: 20%;
}

.wheel-center {
    bottom: 28%;
}

.wheel-center-id-add {
    bottom: 18%;
}



@media (max-width: 530px) {
    .booking-section {
        height: 93vh;
        /*margin-bottom: 13rem;*/
    }

    .wed_Ops {
        font-size: 3vw;
        padding: 3vw 3vw;
    }
    
    
    .title {
        font-size: 2rem;
        /* border: solid red; */
    }

    .booking-container {
        height: 40rem;
    }

    .Booksss{
        height: 50rem;
        /* border: solid red; */
    }

.wheel {
    width: 18rem;
    height: 18rem;
}

#Date{
    left: 53%;
}
#Name{
    top: 11%;
    left: 67%;
}
#Email{
    top: 40%;
    left: 64%;
}
#WhatsApp{
    top: 71%;
    left: 44%;
}
#Time{
    top: 92%;
    right: -2%;
}
#Location{
    top: 80%;
    left: 37%;
}
#Guests{
    top: 59%;
    right: 8%;
}
#Event_Type{
    top: 25%;
    right: 35%;
}
#Additional_Info{
    bottom: 5%;
    right: 36%;
}
#other{
    right: 20%;
}

.wheel-center {
    width: 110px;
    height: 110px;
    bottom: 28%;
}

.wheel-center-id-add{
    bottom: 20%;
}

.form-container {
    top: 12%;
    left: 0%;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    /* border: solid red; */
}

.form-container-add{
    /* border: solid red; */
    top: 0%;
}

input, select, textarea {
    width: 90%;
    margin: 0 auto;
}
}

@media(max-width:1390px) {
  /* .team-grid{
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
  }

  #Tom{
      object-position: center 75%;
  } */
  
  .Edit1 {
   object-position: center 10%;
   }
}

@media(max-width:1122px) {
  #Tom{
      object-position: center 50%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    #services .container{
    /* width: 100%; */
     height: 62rem;
    /* border: solid 1px ; */
}

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--color-text);
        font-size: 1.8rem;
        cursor: pointer;
        
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* Hero Section */
.hero {
    background-attachment: scroll;
    background-repeat: repeat;
}

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 0.4rem;
    }

    .gallery-item img{
        max-height: 300px;
        /* border: solid  1px red; */
    }
    .gallery-item video{
        max-height: 300px;
        /* border: solid  1px red; */
    }

    #Tom{
      object-position: center 80%;
  }
}
@media (max-width: 744px) {
    .nav-links {
        display: none;
    }
    
    #services .container{
    /* width: 100%; */
     height: 62rem;
    /* border: solid 1px ; */
}

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--color-text);
        font-size: 1.8rem;
        cursor: pointer;
        
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* Hero Section */
.hero {
    background-attachment: scroll;
    background-repeat: repeat;
}

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 0.4rem;
    }

    .gallery-item img{
        max-height: 300px;
        /* border: solid  1px red; */
    }
    .gallery-item video{
        max-height: 300px;
        /* border: solid  1px red; */
    }

    #Tom{
      object-position: center 40%;
  }
}


@media (max-width: 502px) {
    #MC{
        font-size: 1.8em;
        /* border: solid; */
    }
    #VIKMA{
        font-size: 1.8em;
    }
    #Phase{
        font-size: 1em;
    }
}

@media (max-width: 450px) {
    .about-content h2 {
        font-size: 1.5rem;
    }
    
     .testimonials h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    
    .faq h2 {
    font-size: 1.5rem;
}

#Tom{
  object-position: center 60%;
}
    
}


@media (max-height: 1095px){
    .booking-section {
        height: 90vh;
    }
}

@media (max-height: 1102px){
    .booking-section {
        height: 92vh;
    }
}

@media (max-height: 960px){
    .booking-section {
        height: 105vh;
    }
}

@media (max-height: 840px){
    .booking-section {
        height: 120vh;
    }
}

@media (max-height: 735px){
    .booking-section {
        height: 135vh;
    }
}


@media (max-height: 652px){
    .booking-section {
        height: 150vh;
    }
}

@media (max-height: 586px){
    .booking-section {
        height: 170vh;
    }
}

@media (max-height: 513px){
    .booking-section {
        height: 200vh;
    }
}

@media (max-height: 445px){
    .booking-section {
        height: 230vh;
    }
}



