* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.page1 {
  background-color:black;
  height:100vh;
  max-width:100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}
.page2 {
  background: url('background.jpg') no-repeat center center/cover;
  height:100vh;
  max-width:100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

header {
  max-width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.logo {
max-width:200%;
}


header a.logo img {
  font-family: 'Playfair Display', serif;
  display: block;
  max-width:20%;
  position: relative;
  top:15px;
  height: auto;
  font-size: 32px;
  color: white;
  text-decoration: none;
}

.copyright {
position:relative;
top:800px;
left:230px;
color:white;
}

nav ul {
  position: relative;
  top: 20px;
  right: 150px;
  list-style: none;
  display: flex;
  gap: 100px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f5c518;
}

.nav-links a.active {
  color: #f5c518;
}

nav img {
  width: 20px;
  height: 20px;
}

.hero-text {
  max-width:100%;
  position: relative;
  top: 250px;
  left: 250px;
  color: white;
  z-index: 2;
  height: auto;
  max-height: 300px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight:300;
  font-family:'Helvetica Neue', Arial, sans-serif;
  animation: fadeIn 2s ease-in-out forwards;
}

.hero-text p {
  font-family:'Helvetica Neue', Arial, sans-serif;
  font-size: 19.2px;
  margin-top: 10px;
  margin-right:20px;
  color: #f6df31;
  letter-spacing: 3.008px;
}

.mobile-social-icons img {
  width:30px;
  height:30px;
}


.mobile-social-icons {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  position: relative;
  width:20%;
  left:875px;
  top:17px;
  padding: 0;
  margin: 0;
  gap:20px;

}


.mobile-social-icons a {
width:40px;
height:15px;
display: inline-block;
justify-content: flex-end;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio {
  background-color: black;
  height:auto;
  width:auto;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: visible;
}

.portfolio h1 {
  display: flex;
  position: relative;
  top:50px;
  width:100%;
  color: white;
  font-size:2.5em;
  font-weight:300;
  text-align: center;
  justify-content: center;
  padding:1vh 1vw;
}

.image-card {
  position: relative;
  display: inline-block;
  max-width:1600px;
  overflow: hidden;
  text-align: center;
}

.card-label {
 position: absolute;
  bottom: 50%;
  left: 50%;
 transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  background-color:transparent;
  padding: 5px 10px;
  border-radius: 5px;
  max-width: 90%; 
  text-align: center;
  white-space: normal;
    }

.card {
  display:flex;
  position:relative;
  gap:25px;
  padding: 60px 5px 30px 5px;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.card:hover .middle {
  opacity:0.7;
}


.card img {
  width:90%;
  height:90%;
  transition: transform 0.5s ease;
}

.card img:hover,
.card a img:hover {
  transform:scale(1.05);
  opacity:0.4;
}

.text {
  color: white;
  font-size: 1em;
  padding: 1vh 1vw;
}



.gallery-section {
  background-color: black;
  color: white;
  max-width: 100%;
  animation: fadeIn 2s ease-in-out forwards;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

.portrait h1 {
  font-size: 48px;
  font-weight:300;
  position: relative;
  top:100px;
  left: 100px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  animation: fadeIn 2s ease-in-out forwards;
}


.portfolio-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 200px 100px 100px 100px;
  gap: 4em;
}

.left {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap:4em;
}

.left img {
  width: 100%;
  object-fit: cover;
  display: block;

}


.prevnex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em 4em;
  /* Top, sides, bottom */
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  cursor: pointer;
  box-sizing: border-box;
}

.prevnex a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.prevnex a:hover {
  opacity: 0.6;
}


.footer-text {
  color: white;
  text-align: center;
  padding: 15px 0;
}


.about {
  animation: fadeIn 2s ease-in-out forwards;
  background-color: black;
  color: white;
  max-width: 100%;
  min-height: 100%;
  /* overflow:hidden; */
  padding: 8vh 5vw;
}


.about-container {
  display: flex;
  position: relative;
  bottom: 50px;
  right:60px;
  max-width: 100%;
  min-height: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}

.bio p {
  max-width:80%;
  font-size: 1.4em;
  font-weight: 100;
  padding-top:2vh;
  padding-left:4vh;
  line-height: 1.9;

 
}

.client p {
  font-size: 1.2em;
  font-weight: 100;
  line-height: 1.6;
  padding: 1vh 4vh;
}


.bio h1,
.client h1 {
  font-size:50px;
  font-weight:300;
  padding: 2vh 2vw;
}

.left-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-top:50px;
  flex: 2;
  text-align: justify;
  align-content: center;

}

.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
 
  align-content: center;
  gap:50px;
  align-items: flex-end;
}

.right-column img {
  width:100%;
  height:100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* .client-logos img {
  position: relative;
  top: 100px;
  width:1300px;
} */


/*.contact {
  animation: fadeIn 2s ease-in-out forwards;
  background-color: black;
  background-size: cover;
  color: white;
  min-height: auto;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
  flex-wrap: wrap;
  gap:800px;
}

.contact-info {
  position: relative;
  top:100px;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.contact-info h1 {
  font-size:50px;
  font-weight:300;
  position: relative;
  top:170px;
  left: 200px;
  margin-bottom: 20px;
}

.contact-info p {
  position: relative;
  top: 200px;
  left: 200px;

}

.mail {
display:flex;
flex-direction:column;
}

.mail a{
  width:100%;
  font-size:30px;
  position: relative;
  top: 180px;
  text-decoration:none;
  color:white;
  list-style:none;
  left: 200px;

}
.email {
position:relative;
top:20px;
}

.contact-form {
  display:flex;
  flex: 1;
  min-width:320px;
  max-width:1200px;
  margin-top: 150px;
  margin-right:50px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  margin-bottom: 20px;
}

input,
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 0.1px solid white;
  padding: 10px;
  color: white;
  width: 100%;
  font-size: 16px;
}

input:invalid,
textarea:invalid {
  border-bottom: 0.992px solid white;
}

textarea {
  height: 100px;
  resize: none;
  margin-bottom: 20px;
}*/

.submitbtn {
  align-self: flex-start;
  padding: 10px 20px;
  border: 0.992px solid white;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.submitbtn:hover {
  background-color: white;
  color: black;
}


/* Hide hamburger on desktop */
#navMenu {
  display: visible;
}

.prevnex {
display: visible;
}

.prevnex-mob {
 display:none;
}

.hamburger {z
  display: none;
}

/* Container Setup */
display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    margin-top: 2rem;
    /* min-height: 85vh; */
    align-content: center;
    align-items: center;
}

header h1 {
font-size: 2.5rem;
letter-spacing: 1px;
color:white;
text-align:center;
margin-bottom: 0.5rem;
}

/* Pricing Layout */
.pricing-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap:5rem;
margin:3rem 0;
}

/* Animation */
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

/* Price Cards */
.price-card {
background:black;
/*background: linear-gradient(321deg,rgba(2, 0, 36, 1) 90%, rgba(246, 223, 49, 1) 100%);*/
color:#fff;
backdrop-filter: blur(8px);
border:1px solid #fff;
padding: 2rem;
border-radius: 16px;

flex: 1 1 300px;
max-width: 350px;
position: relative;
transition: transform 0.4s ease, box-shadow 0.4s ease; 
animation:fadeInUp 0.6s ease forwards;
opacity: 0;
overflow: hidden;
}

/* Animation Delay */
.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.3s; }
.price-card:nth-child(3) { animation-delay: 0.5s; }

/* Hover Effects 
.price-card:hover {
transform: translateY(-12px) scale(1.03);
border:1px solid #f6df31;
box-shadow: 0 0 18px 0 #f6df31;
}*/


/* Glow on hover 
.price-card:hover::before {
content: "";
position: absolute;
top: -20%;
left: -20%;
width: 140%;
height: 140%;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
z-index: 0;
animation: pulseGlow 2s ease-out infinite;
}*/

/* Animated glow effect 
@keyframes pulseGlow {
0% { transform: scale(1); opacity: 0.3; }
50% { transform: scale(1.1); opacity: 0.5; }
100% { transform: scale(1); opacity: 0.3; }
}*/

.price-card > * {
position: relative;
z-index: 1;
}


.price-card h3 {
font-size: 1.5rem;
font-weight:300;
position:relative;
top:25px;
text-align:center;
text-transform: uppercase;
}

.price-card ul {
text-align: left;
margin-bottom: 1.5rem;
font-size: 0.95rem;
line-height: 1.9;
}

.price-card .price {
color: #fff;
max-width:50%;
text-align:center;
font-size: 1.2rem;
padding: 0.6rem 1.2rem;
border-radius:10px;
border: 1px solid #fff;
display:flex;
position:relative;
left:70px;
margin-top:20px;
flex-direction: column;
cursor:pointer;
transition: background 0.3s ease, transform 0.3s ease;
}

.price-card:hover .price {
background: #f6df31;
color:#444;
border: 1px solid #444;
transform: scale(1.08);
}

/* Hover Icon */
.price-card .hover-icon {
position: absolute;
top: 10px;
right: 15px;
font-size: 1.2rem;
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.4s ease, transform 0.4s ease;
}

.price-card:hover .hover-icon {
opacity: 1;
transform: translateY(0);
}

.price-container h1{
color:#fff;
text-align:center;
margin-top:30px;
font-size:2.5em;
font-weight:300;
}

.price-container p{
color:#fff;
text-align:center;
font-size:2.5em;
font-weight:300;
margin-top:30px;
}


.list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 150%;
  max-width: 300px;
}

.list-item {
  position: relative;
  width: 100%;
  height:30px;
  background:transparent;
  color:white;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding-left:30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.icon {
  position: absolute;
  left: 0;
  width: 50px;
  height: 30px;
  color:white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: bounce 1.8s infinite;
  clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-left: 20px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeSlideIn 0.8s ease-out forwards;
}

.list-item:nth-child(1) .label { animation-delay: 0.3s; }
.list-item:nth-child(2) .label { animation-delay: 0.5s; }
.list-item:nth-child(3) .label { animation-delay: 0.7s; }
.list-item:nth-child(4) .label { animation-delay: 0.9s; }

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.list-item:hover .label {
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Gradient icon backgrounds 
.gradient-1 .icon {
  background: linear-gradient(135deg, #8e8d87, #f0efeb);
}*/

.wrap {
display:flex;
flex-direction:column;
gap:2rem;
margin-top:70px;
}




.service-container {
display: flex;
flex-direction: column;
max-width:1600px;
margin:0 auto;
padding:40px 20px;
align-items:center;
justify-content:center;
}

.serv-wrap {
display: flex;
 flex-direction: column;
    gap:4rem;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.serv-wrap h3{
position:relative;
top:40px;
}

.flip-box {
background-color: transparent;
width: 400px;
height:600px;
border-radius: 6px;
perspective: 1000px;

box-shadow: 0 0 38px 0 #fff;
}

.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
border-radius: 6px;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
position: absolute;
width: 100%;
height: 100%;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.flip-box-front img {
width: 100%;
height: 100%;
object-fit: cover;
}

.flip-box-front {
background-color:black;
color:white;
}

.flip-box-back {
background-color:black;
color: white;
transform: rotateY(180deg);
}

.service-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding:10px;
margin-top: 40px;

}

.service-grid .serv-wrap {
width: calc(33.33% - 30px);
box-sizing: border-box;
padding:10px;
}

.service-container h1{
color:#fff;
text-align:center;
font-size:2rem;
font-weight:300;
margin-top:30px;
}


.services-section {
/*padding: 50px 20px;*/
text-align: center;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
max-width: 1200px;
margin:120px auto;
}

.service-box {
display:flex;
flex-direction:column;
justify-content:space-between;
border: 1px solid #eee;
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
text-align: center;
}


/*.service-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(246,223,49,1);
}

.service-box:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}*/

.service-box i {
font-size: 30px;
color: #f6df31;
margin-bottom: 15px;
}

.service-box h3 {
font-weight:300;
font-size:1.3em;
margin: 10px 0;
color:#fff;
}

.service-box p {
font-size:1em;
margin-top:25px;
color: #555;
}

.service-box a {
display: inline-block;
margin-top: 10px;
color: #f6df31;
font-weight: bold;
text-decoration: none;
}

/*.service-box a:hover {
color:black;
background-color:#f6df31;
}*/

.service-detail {
max-width: 800px;
margin:250px auto;
padding: 40px 20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
align-content:center;
background-color:black;
color:#fff;
border-radius: 8px;
box-shadow: 0 6px 12px rgba(0,0,0,0.05);
text-align: left;
}

.service-detail h1 {
color: #f6df31;
margin-bottom: 20px;
}

.service-detail p {
color: #fff;
}

.service-detail ul {
margin-top: 20px;
color: #fff;
}

.back-link {
display: inline-block;
margin-top: 30px;
text-decoration: none;
color: #f6df31;
font-weight: bold;
}

/*.back-link:hover {
color:black;
background-color:#f6df31;
}*/

/* Optional: smooth fade-in effect */
.fade-in {
animation: fade 0.5s ease-in-out;
}

@keyframes fade {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}


.service-head h2{
font-size:2.5rem;
font-weight:300;
color:#fff;
}

.service-head p {
position:relative;
top:20px;
color:#fff;
}

.service-box p {
color:#fff;
}
.service-head {
position:relative;
top:60px;
color:white;
}

.logo img {
height: 50px;
}

.page3 {
width: 100%;
min-height: 100vh;
font-family: 'Helvetica Neue', Arial, sans-serif;
background: url('images/95.jpg') no-repeat 75% top /cover;
display: flex;
flex-direction: column;
text-align: center;
background-color: black;
}
.logo img {
height: 50px;
}

.wrapped {
padding: 50px 0;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}

.top-head {
padding: 20px;
text-align: center;
}

.top-head h1 {
font-size:2.5rem;
font-weight:300;
color: white;
margin-bottom: 10px;
}

/*.slider-wrapper {
position: relative;
width: 100%;
max-width: 1000px;
overflow: hidden;
margin: 60px auto;
}

.testimonial-container {
display: flex;
gap: 20px;
transition: transform 0.5s ease;
width: max-content;
padding: 0 40px;
}

.testimonial-card {
background-color: #2e2e2e;
width:95vw;
max-width: 320px;
padding: 20px;
border-radius: 10px;
flex-shrink: 0;
display: flex;
flex-direction: column;

height:550px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
color: white;
}

.quote-bubble {
background-color: white;
color: #333;
border-radius: 10px;
padding:20px;
clip-path: polygon(0 0, 100% 0, 100% 85%, 60% 85%, 50% 100%, 40% 85%, 0 85%);
font-size: 13px;
margin-bottom: 20px;
text-align:center;
}

.profile-info {
text-align: center;
margin-bottom: 15px;
}

.profile-info h3 {
margin: 10px 0 5px;
font-size: 18px;
font-weight: 600;
}

.position {
font-size: 13px;
color: #ccc;
}

.description {
font-size: 13px;
margin:0 auto;
color: #aaa;
text-align:justify;
}

.stars {
color: gold;
text-align: center;
font-size: 18px;
}

.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 2rem;
background-color: rgba(0, 0, 0, 0.6);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
z-index: 10;
width: 40px;
height: 40px;
}

.slider-btn.left {
left: 10px;
}

.slider-btn.right {
right: 10px;
}

.testimonial-container::-webkit-scrollbar {
display: none;
}*/

/*.enq-container {
      max-width: 1600px;
      margin: 50px auto;
      padding: 20px;
      color: #fff;
      animation: fadeIn 1s ease;
    }
    .enq-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      margin-top:30px;
    }
    .enq-left, .enq-right {
      flex: 1;
      min-width:300px;
    }
    .form-group {
      margin-bottom: 20px;
      width: 100%;
    }
    .form-group label {
       display: flex;
      margin-bottom: 5px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 10px;
      border-radius: 5px;
      border: none;
      background-color: #222;
      color: #fff;
    }
    .form-group input::placeholder {
      color: #aaa;
    }
    .enq-right {
      display: flex;
      flex-direction:row;
      gap: 30px;
    }
    .checkbox-section {
      margin-bottom: 30px;
      width:250%;
    }
    .checkbox-section label {
      display: flex;
      align-items: center;
      gap: 10px;
      line-height:2;
      margin-bottom: 8px;
      font-size: 15px;
    }
    .checkbox-section input[type="checkbox"] {
      transform: scale(1.1);
    }
    .checkbox-section input[type="date"],
    .checkbox-section input[type="text"] {
      width: 100%;
      padding: 8px;
      margin-left: 25px;
      border-radius: 5px;
      border: none;
      background-color: #222;
      color: #fff;
      display: none;
    }
button.full-width {
    width:20%;
    padding:10px;
    cursor:pointer;
    margin:2% 40%;
}
.enq-container h1 {
font-weight:300;
}
#lastrow {
padding-top:37px;
}*/


@media screen and (max-width: 768px) {
.testimonial-card {
width: 75vw;
}
#lastrow {
padding-top:0;
position:relative;
bottom:55px;
margin:0;
}
.checkbox-section {
margin:0
}
.price-container h1{
color:#fff;
text-align:center;
margin-top:30px;
font-size:1.5em;
font-weight:300;
}

.price-container p{
color:#fff;
text-align:center;
font-size:1.5em;
font-weight:300;

}

}


}

@media screen and (max-width: 480px) {
.testimonial-card {
width: 90vw;
}




