/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

/* Header Font Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* General Body Styles */
body {
  /* A subtle dark gradient from a very dark gray to black */
  background: linear-gradient(to bottom, #1c1c1c, #000);
  background-attachment: fixed; /* Ensures the gradient doesn't scroll with content */
}

/* Add padding to the top of the main content to avoid overlap with the fixed navbar */
main {
  padding-top: 8rem; /* Adjust this value as needed */
}

/* Glassmorphism Navbar */
.navbar-glass {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1140px; /* Bootstrap .container-xl width */
  z-index: 1030;
  background-color: rgba(28, 28, 28, 0.5); /* Semi-transparent background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Custom styles for the mobile navigation toggle button */
.navbar-glass .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1); /* Lighter border for the button */
}
.navbar-glass .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-glass .nav-link {
  color: #ffffff;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.btn-nav-cta {
  background: linear-gradient(45deg, #FFD700, #DAA520, #FFD700);
  background-size: 200% 100%;
  color: #000;
  font-weight: 700;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  transition: background-position 0.5s ease;
  font-family: 'Outfit', sans-serif;
}

.navbar-glass .nav-link.active {
  /* A nice gold color for the gradient start */
  background: linear-gradient(45deg, #FFD700, #4d3800);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-nav-cta:hover {
  background-position: 100% 0;
  color: #000;
}

/* About Hero Section */
.about-hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(to bottom, #1c1c1c, #000);
}

.about-hero-section .container {
  position: relative;
  z-index: 2;
}

.floating-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.1), rgba(200, 200, 200, 0));
  z-index: 1;
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.shape-1 {
  width: 15rem;
  height: 15rem;
  top: 10%;
  left: 5%;
  border-radius: 50%; /* Circle */
  animation-duration: 7s;
}

.shape-2 {
  width: 20rem;
  height: 20rem;
  bottom: 5%;
  right: 10%;
  border-radius: 0.5rem; /* Rectangle */
  animation-duration: 9s;
  animation-delay: 1s;
}

.shape-3 {
  width: 8rem;
  height: 8rem;
  top: 20%;
  right: 20%;
  border-radius: 50%; /* Circle */
  animation-duration: 5s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0; /* Places video at the very back */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 50% black overlay */
  z-index: 1; /* Sits on top of the video */
}

.hero .container {
  position: relative; /* Needed for z-index to work */
  z-index: 2; /* Sits on top of the overlay */
}

/* Gradient Text Style */
.gradient-text {
  /* A nice gold color for the gradient start */
  background: linear-gradient(45deg, #FFD700, #4d3800);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}


/* Sub Hero Section */
.sub-hero {
  position: relative;
  background-color: #fff;
  color: #000;
  padding: 12rem 0; /* Increased padding to make the section taller */
  overflow: hidden; /* Keep floating rects contained */
}

.sub-hero .container {
  position: relative;
  z-index: 2;
}

.floating-rect {
  position: absolute;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0));
  border-radius: 1rem;
  z-index: 1;
  /* Apply the animation */
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.rect-1 {
  width: 20rem;
  height: 20rem;
  top: -5rem;
  left: -5rem;
  animation-duration: 6s; /* Slower float */
}

.rect-2 {
  width: 15rem;
  height: 15rem;
  bottom: 10rem;
  right: 10rem;
  animation-duration: 8s; /* Even slower float */
  animation-delay: 1s; /* Start animation after 1 second */
}

.rect-3 {
  width: 25rem;
  height: 25rem;
  bottom: -10rem;
  right: -8rem;
  animation-duration: 5s; /* Faster float */
  animation-delay: 0.5s; /* Start animation after 0.5 seconds */
}

/* Highlighted Text in Sub-Hero */
.highlight-text {
  background: linear-gradient(45deg, #FFD700, #DAA520); /* Gold gradient background */
  border-radius: 0.25rem;
  padding: 0.1em 0.3em;
  color: #000; /* Black text for high contrast on gold */
}

/* General Section Padding */
.section-padding {
  padding: 6rem 0;
}

/* Work Section */
.work-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 450px;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.work-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-item:hover .work-item-bg {
  transform: scale(1.05);
}

.work-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}

.work-item-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

/* Footer Section */
.footer-section {
  background-color: #111;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.5);
}

.footer-address p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.5);
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social-links a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-meta .text-lg-start,
  .footer-meta .text-lg-end {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .footer-bottom { text-align: center; }
  .footer-social-links a { margin: 0 0.75rem; }
}

@media (max-width: 1200px) {
  .navbar-glass {
    max-width: 960px; /* Bootstrap .container-lg width */
  }
}
@media (max-width: 992px) {
  .navbar-glass {
    max-width: 720px; /* Bootstrap .container-md width */
  }
}
@media (max-width: 768px) {
  .navbar-glass {
    max-width: 540px; /* Bootstrap .container-sm width */
  }
}

/* Testimonial Section */
.testimonial-section {
  background-color: #fff;
  color: #000;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  border-left: none;
  padding-left: 0;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
}

/*# sourceMappingURL=style.css.map */
