/*reset & base */
*{margin:0; padding:0; box-sizing:border-box;}*
body {font-family: Arial, sans-serif; line-height:1.6; color:#000000; background:#fffdfd;}
a {color:inherit; text-decoration:none;}
img {max-width:100%; display:block;}
h1,h2,h3 {font-weight:700;}



/* Navbar Floating Card */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(238, 230, 230, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 10px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  width: auto;
  font-family: 'Poppins', sans-serif;
  
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Logo */
.logo {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}  
.logo img {
  height: 55px; /* adjust size */
  width: auto;
  cursor: pointer;
}

/* Links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;   /* small like HFX */
  font-weight: 500;
  padding: 5px;
  position: relative;
}

/* Decorative dots */
.nav-links .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #7bee5e;
  border-radius: 50%;
  margin-left: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-links a:hover .dot {
  opacity: 1;
}

/* Hire button */
.btn-hire {
  background: rgba(214,255,0,0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Hamburger (for mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
  .nav-icon {
  width: 40px; /* Adjust size as needed */
  height: auto;
  transition: transform 0.3s ease;
}

/* Hover effect */
.navbar a:hover .nav-icon {
  transform: scale(1.1);
}
}



/*hero*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #000; /* fallback */
}

/* CONTENT */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: textFadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: textFadeIn 1s ease forwards;
  animation-delay: 1s;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: textFadeIn 1s ease forwards;
  animation-delay: 1.5s;
}
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff; /* text color */
  
  /* Glass effect */
  background: rgba(255, 255, 255, 0.15); /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */

  transition: all 0.3s ease;
}

/* Hover effect */
.hero-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}


/* BACKGROUND WRAPPER */
.hero-bg-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Each slide */
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1); /* start zoomed */
  transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}

/* Visible slide */
.hero-slide.active {
  opacity: 1;
  transform: scale(1); /* slowly zooms in */
}

/* GRADIENT OVERLAY for readability */
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

/* Floating shapes example */
.shape {
  position: absolute;
  width: 60px; height: 60px;
  background: rgba(214,255,0,0.3);
  border-radius: 50%;
  z-index: 3;
  animation: float 10s infinite alternate ease-in-out;
}
.shape.one { top: 20%; left: 10%; animation-delay:0s;}
.shape.two { top: 70%; left: 80%; animation-delay:2s;}
.shape.three { top: 50%; left: 50%; animation-delay:4s;}

@keyframes float {
  0% { transform: translateY(0) translateX(0);}
  100% { transform: translateY(-50px) translateX(20px);}
}

/* Text fade/slide animation */
@keyframes textFadeIn {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/*services*/
 .services-section {
   padding: 60px 20px; 
  background: #fff;
  text-align: center;
    margin-bottom: 80px;
    margin-top:70px ;
  } 
  .section-title {
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 5px;
 color: #000;
 text-align: center;
 }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

 /* Base card */ 
.service-card {
  position: relative;
  display: flex;
  flex-direction: column; /* stack items vertically */
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 15px;
  padding: 60px 20px 20px; /* extra top padding so text doesn't overlap tag */
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  height: 400px; /* fixed card height so button stays aligned */
}
 /* Gradient overlay */ 
.service-card::before {
content: "";
 position: absolute;
top: 0;
left: 0;
 width: 100%;
 height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(17, 16, 16, 0.2));
   transition: background 0.4s ease;
    z-index: 0; 
  }
 /* Change overlay color on hover */
.service-card:hover::before {
 background: linear-gradient(135deg, rgba(115, 223, 124, 0.945), rgba(74,0,224,0.5));
 }
 /* Keep content above overlay */
.service-card * { 
position: relative;
 z-index: 1;
 } 
/* Optional zoom on hover */ 
.service-card:hover { 
transform: scale(1.03);
}
 /* Button styling */ 
 .card-content { 
 flex-grow: 1; /* fills remaining space */
 }


 .btn-view {  
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #0e0d0d;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
   margin-top: auto; /* This sticks it to the bottom */

 }

.btn-view:hover {
   background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
 } 
  

.service-tag {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: #f3f3f3;
  color: #000;
  padding: 4px 10px;
  border-radius: 8px;
}


.service-card p {
 font-size: 1.4rem;
 color: #ffffff;
 line-height: 1.4;
 margin-bottom: 15px;
 } 
 .service-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .service-card p {
    font-size: 1rem;
  }

  .btn-view {
    padding: 8px 20px;
    font-size: 14px;
  }
}




/* About Section */
.about-section {
  padding: 80px 40px;
  background: #f9f9f9;
    margin-bottom: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* mobile friendly */
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1 1 400px;
}

.about-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
  text-align: left;
}

.about-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: left;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #555;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-title,
  .about-text {
    text-align: center;
  }
}


/* Portfolio Grid */

#portfolio {
  padding: 50px 60px;
  text-align: center;
    margin-bottom: 80px;
}

#portfolio h2 {
  margin-bottom: 40px;
  font-size: 36px;
  color: #333;
}

/* Slider */
.portfolio-slider {
  overflow: hidden;
  width: 100%;
}

.portfolio-track {
  display: flex;
  gap: 20px;
}

.portfolio-item {
  flex: 0 0 450px; /* uniform card size */
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-item video {
  width: 100%;
  height: 250px; /* uniform height */
  object-fit: cover; /* fill card without distortion */
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.portfolio-item video:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-item {
    flex: 0 0 240px;
  }
  .portfolio-item video {
    height: 140px;
  }
}

/* Testimonials */

#testimonials {
  background: #ffffff;
  color: rgb(0, 0, 0);
  text-align: center;
 padding: 50px 60px;
  overflow: hidden;
    margin-bottom: 80px;
}

#testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.slide-track {
  display: flex;
  width: calc(250px * 12); /* adjust based on slide count */
  animation: scroll 20s linear infinite;
}

.slide {
  width: 500px;
  margin: 0 15px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Animations */
@keyframes scroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scroll-reverse {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact-section {
  background: #fff;  /* white background */
  color: #000;       /* black text */
  text-align: center;
  padding: 80px 20px;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.collab-btn {
  background: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.collab-btn:hover {
  background: #333;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
  color:rgb(198, 238, 53); 
}

.arrow {
  font-size: 2rem;
  margin: 10px 0 25px;
  animation: bounce 1.5s infinite;
  color: #000;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-btn {
  border: 2px solid #000;
  padding: 10px 20px;
  border-radius: 25px;
  color: #000;
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.contact-btn i {
  margin-right: 8px;
  font-size: 1rem;
}

/* Glow hover effect */
.contact-btn:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.trust-text {
  font-size: 0.9rem;
  color: #555;
  margin-top: 15px;
}




/* Footer */
footer {text-align:center; padding:1.5rem; background:#fff; border-top:1px solid #ddd; font-size:0.85rem; margin-top:40px;}

/* Responsive */
@media (max-width:768px){
  .about-grid, .contact-grid {grid-template-columns:1fr;}
}
/*calender*/
.booking-calendar input[type="date"],
.booking-calendar input[type="time"],
.booking-calendar select {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
