/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff; 
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.section {
  padding: 2rem;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #fff;
}

p, a, span, div {
  font-weight: 300;
  color: #ddd;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffcc70; /* soft highlight */
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 1 !important; /* Force visibility */
  pointer-events: auto !important; /* Ensure clickable */
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 80px;  /* Set a specific height */
  width: auto;   /* Maintain aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

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

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #fff;
  margin: 0 0.75rem;
  font-weight: 400;
}

.nav-links a:hover {
  color: #ffcc70;
}

/* Dropdown Menu */
.nav-item {
  position: relative;
  display: inline-block;
  margin: 0 0.75rem;
}

.nav-item > a {
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.nav-item > a:hover {
  color: #ffcc70;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1001;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background-color: #222;
  color: #ffcc70;
}

.nav-item:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-indicator {
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-indicator {
  transform: rotate(180deg);
}

.menu-icon {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 60px);
    background: #111;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    margin: 1rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .menu-icon {
    display: block;
  }
  
  /* Mobile dropdown styles */
  .nav-item {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }
  
  .nav-item > a {
    justify-content: center;
    padding: 1rem 0;
    width: 100%;
    letter-spacing: 0.5px;
    color: #fff;
    position: relative;
    z-index: 2;
  }
  
  .nav-item.active > a {
    color: #ffcc70;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    background-color: rgba(34, 34, 34, 0.9);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(-10px);
  }
  
  .nav-item.active .dropdown-content {
    display: block;
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    border-left: 2px solid #ffcc70;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .dropdown-content a {
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  
  .dropdown-content a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffcc70;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .dropdown-content a:active::after {
    width: 30%;
  }
  
  .nav-item.active .dropdown-content a {
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: calc(0.1s * var(--index));
  }
  
  .dropdown-indicator {
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    display: inline-block;
    margin-left: 5px;
    font-size: 8px;
  }
  
  .nav-item.active .dropdown-indicator {
    transform: rotate(180deg);
    color: #ffcc70;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes shimmer {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  
  .logo img {
    height: 50px;  /* Slightly smaller on mobile */
  }
}

@media screen and (max-width: 576px) {
  .logo img {
    height: 45px;  /* Even smaller on very small screens */
  }
}

/* Slideshow */
.slideshow .slides {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 7s ease-in-out;
  filter: brightness(1.4) contrast(1.2) saturate(1.15);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  max-width: 800px;
  opacity: 0;
  transition: all 1s ease-in-out;
  z-index: 2;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

/* Responsive styles for slide content */
@media screen and (max-width: 1200px) {
  .slide-content h3 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .slide-content h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .slide-content {
    width: 90%;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 576px) {
  .slide-content h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }
  
  .image-slider {
    height: 250px;
  }
}

/* Grid for Expertise & Projects */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card, .project-card {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
}

/* Testimonials */
.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(255,255,255,0.03);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  margin: 2.5rem auto;
  width: 100%;
  max-width: 900px;
}

.client-photo {
  margin-right: 0;
  margin-bottom: 2rem;
}

.testimonial-content {
  flex: 1;
  text-align: center;
  max-width: 800px;
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #ffcc70;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.5px;
}

.client-review {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ddd;
  margin: 0;
  text-align: center;
}

.client-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffcc70;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation Controls */
.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.testimonial-arrow {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background: rgba(255, 204, 112, 0.2);
  color: #ffcc70;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #ffcc70;
  transform: scale(1.2);
}

/* In the desktop media query, restore horizontal layout if preferred */
@media screen and (min-width: 992px) {
  .testimonial {
    padding: 3rem;
  }
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
}


/* Our Projects Section - Cinematic Cards */
.projects-section {
  padding: 2.5rem 0;
  background: #000;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.projects-section h2 {
  width: 100%;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}

.projects-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ffcc70;
}

.projects-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
  perspective: 1500px;
}

.project-cards-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
  padding: 40px 25px;
  width: max-content;
  margin-left: 25px;
  transform-style: preserve-3d;
}

.project-card {
  flex: 0 0 320px;
  width: 320px;
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transform: perspective(1500px) rotateY(0deg);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  text-align: left;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5), transparent);
  backface-visibility: hidden;
}

.project-card:hover .project-content {
  opacity: 1;
  transform: translateY(0);
}

/* Position cards with subtle curve */
.project-card:nth-child(1) {
  transform: rotateY(-15deg) translateZ(20px);
}

.project-card:nth-child(2) {
  transform: rotateY(-8deg) translateZ(10px);
}

.project-card:nth-child(3) {
  transform: rotateY(0deg) translateZ(0);
}

.project-card:nth-child(4) {
  transform: rotateY(8deg) translateZ(10px);
}

.project-card:nth-child(5) {
  transform: rotateY(15deg) translateZ(20px);
}

.project-card:hover {
  transform: rotateY(0deg) translateZ(50px) scale(1.05);
  z-index: 10;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 4;
}

.project-card:hover::before {
  opacity: 1;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  transform: translateZ(80px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.project-content .btn-view-project {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 12px;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(60px);
  position: relative;
  z-index: 6;
}

.project-content .btn-view-project:hover,
.project-content .btn-view-project:active,
.project-content .btn-view-project:focus {
  background: white;
  color: black;
}

.project-navigation {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 20px;
}

.nav-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.nav-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.view-all-projects {
  margin-top: 3rem;
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: white;
  border: 2px solid #ffcc70;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.view-all-projects:hover {
  background: #ffcc70;
  color: #000;
}

/* Cinema effect - light beams */
.cinema-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.03) 50%,
    rgba(255,255,255,0) 100%);
  animation: lightBeam 8s ease-in-out infinite alternate;
}

@keyframes lightBeam {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    transform: translateX(100%) skewX(-20deg);
  }
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .project-card {
    flex: 0 0 300px;
    width: 300px;
    height: 460px;
  }
  
  .project-content {
    padding: 35px;
  }
  
  .project-content h3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 992px) {
  .project-card {
    flex: 0 0 280px;
    width: 280px;
    height: 440px;
  }
  
  .project-content {
    padding: 30px;
  }
  
  .project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .btn-view-project {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .projects-section,
  .testimonials-section,
  .ethos-section,
  .expertise-section,
  .section {
    padding: 1rem 0;
  }
  
  .section-content {
    padding: 0 1rem;
  }
  
  .testimonial {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
    width: 90%;
  }
  
  .testimonial-content {
    width: 100%;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .client-name {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .client-review {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .client-photo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  /* Reduce spacing between sections */
  .section + .section,
  .projects-section + .section,
  .expertise-section + .section,
  .testimonials-section + .section {
    margin-top: 0.5rem;
  }
  
  .awards-container,
  .expertise-container,
  .projects-container {
    padding: 0.8rem;
  }

  .project-card {
    flex: 0 0 260px;
    width: 260px;
    height: 420px;
  }
  
  .project-content {
    padding: 20px;
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
  }
  
  .project-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transform: none;
  }
  
  .project-card:nth-child(n) {
    transform: none;
  }
  
  .project-card:hover {
    transform: scale(1.05);
  }
  
  .project-content .btn-view-project {
    padding: 7px 16px;
    font-size: 0.75rem;
    transform: none;
    margin-top: 10px;
    width: auto;
    display: inline-block;
  }
  
  .project-cards-wrapper {
    gap: 20px;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 576px) {
  .projects-section,
  .testimonials-section,
  .ethos-section,
  .expertise-section,
  .section {
    padding: 0.8rem 0;
  }
  
  .section-content {
    padding: 0 0.6rem;
  }
  
  .testimonial {
    padding: 1.2rem 0.8rem;
    margin: 0.8rem auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-content {
    padding: 0 0.3rem;
  }
  
  .client-name {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .client-review {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .client-photo img {
    width: 70px;
    height: 70px;
    margin-bottom: 0.8rem;
  }
  
  /* Further reduce spacing between sections */
  .section + .section,
  .projects-section + .section,
  .expertise-section + .section,
  .testimonials-section + .section {
    margin-top: 0.3rem;
  }
  
  .testimonial-navigation {
    margin-top: 0.5rem;
  }
  
  .testimonial-arrow {
    width: 30px;
    height: 30px;
  }
  
  .testimonial-dot {
    width: 8px;
    height: 8px;
  }

  .project-card {
    flex: 0 0 240px;
    width: 240px;
    height: 400px;
  }

  .project-content {
    padding: 15px;
  }

  .project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .project-content .btn-view-project {
    padding: 7px 16px;
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .project-cards-wrapper {
    gap: 15px;
    padding: 15px 10px;
  }
}

/* Update testimonial container max-width for better text containment */
.testimonial {
  max-width: 800px;
  width: 90%;
  margin: 2rem auto;
  box-sizing: border-box;
}

.testimonial-content {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure text stays within bounds */
.client-review {
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* Awards Section */
.awards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.awards-container h2 {
  width: 100%;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.awards-list {
  flex: 1;
  padding-right: 2rem;
}

.awards-list h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.awards-list p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 2rem;
}

.award-showcase {
  flex: 1;
  min-width: 300px;
}

.award-card {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #111;
}

.award-card:hover {
  transform: rotateY(5deg) translateZ(10px);
  box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.5);
}

.award-image-container {
  position: relative;
  width: 100%;
  height: 92%;
  overflow: hidden;
}

.award-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.award-card:hover .award-image {
  transform: scale(1.05);
}

.award-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.award-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: #111;
  color: white;
  z-index: 2;
}

.award-content h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.view-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ffcc70;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  padding: 5px 10px;
  border: 1px solid #ffcc70;
  border-radius: 4px;
}

.view-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffcc70;
  transition: all 0.4s ease;
  z-index: -1;
}

.view-more:hover {
  color: #000;
}

.view-more:hover::before {
  left: 0;
}

/* Cinematic light effect */
.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 3;
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    left: -150%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Responsive styling */
@media screen and (max-width: 992px) {
  .award-card {
    height: 550px;
  }
}

@media screen and (max-width: 768px) {
  .awards-container {
    flex-direction: column;
  }
  
  .awards-list {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .awards-list h3 {
    font-size: 1.8rem !important;  /* Override inline style for mobile */
    margin-bottom: 1rem;
  }
  
  .awards-list p {
    font-size: 1.1rem !important;  /* Override inline style for mobile */
  }
  
  .award-showcase {
    width: 100%;
  }

  .award-card {
    height: 500px;
  }
  
  .award-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .awards-list h3 {
    font-size: 1.5rem !important;  /* Even smaller for very small screens */
  }
  
  .awards-list p {
    font-size: 1rem !important;
  }

  .award-card {
    height: 450px;
  }
}

/* Welcome Section */
.welcome-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.welcome-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Desktop Video */
#desktop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Video - Hidden by default for desktop */
#mobile-video {
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
  overflow: hidden !important;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .welcome-section {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }

  #desktop-video {
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
    overflow: hidden !important;
  }

  #mobile-video {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
    overflow: visible !important;
    object-fit: cover;
  }
}

/* Image Slider */
.image-slider {
  position: relative;
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 7s ease-in-out;
  filter: brightness(1.4) contrast(1.2) saturate(1.15);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  max-width: 800px;
  opacity: 0;
  transition: all 1s ease-in-out;
  z-index: 2;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

/* Responsive styles for slide content */
@media screen and (max-width: 1200px) {
  .slide-content h3 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .slide-content h3 {
    font-size: 2rem;
  }

}

@media screen and (max-width: 768px) {
  .slide-content {
    width: 90%;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 576px) {
  .slide-content h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }
  
  .image-slider {
    height: 250px;
  }
}

/* Contact Button */
.contact-btn-container {
  margin-top: 2rem;
  padding: 1rem 0;
}

.contact-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid #ffcc70;
  border-radius: 2px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffcc70;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-btn:hover {
  color: #000;
}

.contact-btn:hover::before {
  left: 0;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .image-slider {
    height: 500px;
  }
  
  .welcome-content h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 992px) {
  .image-slider {
    height: 450px;
  }
  
  .welcome-content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .welcome-section {
    padding: 0 0 1.5rem;
  }
  
  .image-slider {
    height: 350px;
  }
  
  .welcome-content h1 {
    font-size: 2rem;
  }
  
  .contact-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .image-slider {
    height: 250px;
  }
  
  .welcome-section {
    padding: 0 0 1rem;
  }
  
  .welcome-content h1 {
    font-size: 1.8rem;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
  }
}

/* Common Button Styles */
.contact-btn, 
.btn-view-project, 
.view-all-projects, 
.nav-arrow, 
.view-more {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.contact-btn::before, 
.btn-view-project::before, 
.view-all-projects::before, 
.nav-arrow::before,
.btn-view-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffcc70;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-btn:hover::before, 
.btn-view-project:hover::before, 
.view-all-projects:hover::before, 
.nav-arrow:hover::before,
.btn-view-more:hover::before {
  left: 0;
}

.contact-btn:hover, 
.btn-view-project:hover, 
.view-all-projects:hover, 
.nav-arrow:hover,
.btn-view-more:hover {
  color: #000;
}

/* Expertise Section */
.expertise-section {
  padding: 4rem 2rem;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.expertise-section .cinema-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.03) 50%,
    rgba(255,255,255,0) 100%);
  animation: lightBeam 8s ease-in-out infinite alternate;
}

.expertise-section .section-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.expertise-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 4rem;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.expertise-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ffcc70;
}

.expertise-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.expertise-box {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: #111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: perspective(1000px) rotateY(0deg);
  transform-style: preserve-3d;
  z-index: 2;
  border-radius: 4%;
}

/* Architecture card */
.expertise-box:first-child {
  background: linear-gradient(
    rgba(17, 17, 17, 0.80), 
    rgba(17, 17, 17, 0.92)
  ), url('../Assets/Homepage/oe1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Interior card */
.expertise-box:nth-child(2) {
  background: linear-gradient(
    rgba(17, 17, 17, 0.80), 
    rgba(17, 17, 17, 0.92)
  ), url('../Assets/Homepage/oe2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Vastu card */
.expertise-box:nth-child(3) {
  background: linear-gradient(
    rgba(17, 17, 17, 0.85), 
    rgba(17, 17, 17, 0.95)
  ), url('../Assets/Homepage/oe3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.expertise-box:hover {
  transform: perspective(1000px) rotateY(10deg) translateZ(20px);
  box-shadow: -15px 15px 35px rgba(0, 0, 0, 0.5);
}

.expertise-icon {
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
}

.expertise-icon svg {
  width: 45px;
  height: 45px;
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.expertise-box:hover .expertise-icon svg {
  transform: scale(1.05);
}

.expertise-box h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #fff;
  z-index: 2;
  transition: transform 0.4s ease;
}

.expertise-box p {
  font-size: 0.85rem;
  color: #f9f9f9;
  text-align: center;
  line-height: 1.5;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.4s ease;
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
}

.expertise-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.01) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.expertise-box:hover::before {
  opacity: 1;
}

.expertise-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 204, 112, 0.1) 0%,
    rgba(255, 204, 112, 0) 100%
  );
  z-index: 1;
  transition: all 0.5s ease;
}

.expertise-box:hover .expertise-overlay {
  left: 0;
}

.expertise-box:hover h3 {
  transform: translateY(-5px);
}

.expertise-box:hover p {
  opacity: 1;
}

/* Responsive styles for expertise section */
@media screen and (max-width: 1200px) {
  .expertise-box {
    width: 280px;
    height: 280px;
  }
}

@media screen and (max-width: 992px) {
  .expertise-section {
    padding: 3rem 0;
  }
  
  .expertise-container {
    gap: 2rem;
  }
  
  .expertise-box {
    width: 250px;
    height: 250px;
    padding: 1.5rem;
  }
  
  .expertise-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .expertise-box h3 {
    font-size: 1.2rem;
  }
  
  .expertise-box p {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 768px) {
  .expertise-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  .expertise-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  
  .expertise-box {
    width: 100%;
    max-width: 320px;
    height: 320px;
    padding: 1.5rem;
  }
  
  .expertise-icon svg {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 576px) {
  .expertise-section {
    padding: 3rem 0;
  }
  
  .expertise-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  
  .expertise-box {
    max-width: 280px;
    height: 280px;
    padding: 1.2rem;
  }
  
  .expertise-icon svg {
    width: 40px;
    height: 40px;
  }
}

/* Common Section Heading Style - Ensuring consistent sizes */
.section h2,
.projects-section h2,
.expertise-section h2,
.awards-list h2,
.testimonials-section h2,
.ethos-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-align: center;
}

.section h2::after,
.projects-section h2::after,
.awards-list h2::after,
.testimonials-section h2::after,
.ethos-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ffcc70;
}

/* Update Projects Section heading alignment */
.projects-section h2 {
  width: 100%;
  margin-bottom: 3rem;
}

/* Update Awards List heading alignment */
.awards-list h2 {
  text-align: left;
}

.awards-list h2::after {
  left: 0;
  transform: none;
}

/* Text Alignment for Sections */
.section,
.projects-section,
.expertise-section {
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  padding: 2.5rem 0;
  background-color: #080808;
  text-align: center;
}

.testimonials-section .section-content {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  width: 100%;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(255,255,255,0.03);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  margin: 2.5rem auto;
  width: 100%;
  max-width: 900px;
}

.client-photo {
  margin-right: 0;
  margin-bottom: 2rem;
}

.testimonial-content {
  flex: 1;
  text-align: center;
  max-width: 800px;
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #ffcc70;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.5px;
}

.client-review {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ddd;
  margin: 0;
  text-align: center;
}

.client-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffcc70;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* In the desktop media query, restore horizontal layout if preferred */
@media screen and (min-width: 992px) {
  .testimonial {
    padding: 3rem;
  }
}

/* Navigation Controls */
.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.testimonial-arrow {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background: rgba(255, 204, 112, 0.2);
  color: #ffcc70;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #ffcc70;
  transform: scale(1.2);
}

/* Tablet View */
@media screen and (max-width: 992px) {
  .client-name {
    font-size: 1.6rem;
  }
  
  .client-review {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .client-photo img {
    width: 100px;
    height: 100px;
  }
}

/* Mobile View - Keep these unchanged */
@media screen and (max-width: 768px) {
  .testimonial {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
    width: 90%;
  }
  
  .testimonial-content {
    width: 100%;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .client-name {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .client-review {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .client-photo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .testimonial {
    padding: 1.2rem 0.8rem;
    margin: 0.8rem auto;
  }
  
  .testimonial-content {
    padding: 0 0.3rem;
  }
  
  .client-name {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .client-review {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .client-photo img {
    width: 70px;
    height: 70px;
    margin-bottom: 0.8rem;
  }
}

/* Ethos Section */
.ethos-section {
  padding: 4rem 2rem;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.ethos-section .section-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-us-container {
  margin: 2rem auto;
  text-align: center;
  max-width: 650px;
}

.why-us-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
}

.why-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(27, 27, 27, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(27, 27, 27, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 204, 112, 0.1);
}

.why-us-item .number {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffcc70;
  font-family: 'Playfair Display', serif;
}

.why-us-item .content {
  flex: 1;
  text-align: center;
}

.why-us-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #ffcc70;
  font-family: 'Playfair Display', serif;
}

.why-us-item p {
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
}

/* Flow arrows */
.flow-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.flow-arrow::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, #ffcc70, rgba(255, 204, 112, 0.3));
  left: 50%;
  transform: translateX(-50%);
}

.flow-arrow::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffcc70;
  border-bottom: 2px solid #ffcc70;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
  .why-us-container {
    width: 90%;
  }
  
  .why-us-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  
  .why-us-item .number {
    font-size: 1.1rem;
  }
  
  .why-us-item h3 {
    font-size: 1.2rem;
  }
  
  .why-us-item p {
    font-size: 0.95rem;
  }
  
  .flow-arrow {
    bottom: -1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .why-us-item {
    padding: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .why-us-item .number {
    font-size: 1rem;
  }
  
  .why-us-item h3 {
    font-size: 1.1rem;
  }
  
  .why-us-item p {
    font-size: 0.9rem;
  }
}

/* Logo Transition */
.logo-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.logo-transition.visible {
  opacity: 1;
  visibility: visible;
}

.logo-transition.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-container {
  text-align: center;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  margin: 0;
  letter-spacing: 0.2em;
}

.tagline {
  font-size: 1.2rem;
  color: #ffcc70;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

/* Main Content */
.main-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

.main-content.visible {
  opacity: 1;
  visibility: visible;
}

/* Section Reveal Animations */
.welcome-section,
.expertise-section,
.projects-section,
.testimonials-section,
.awards-container,
.ethos-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.welcome-section.reveal,
.expertise-section.reveal,
.projects-section.reveal,
.testimonials-section.reveal,
.awards-container.reveal,
.ethos-section.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Child Element Reveal Animations */
.expertise-box,
.project-card,
.testimonial,
.award-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.expertise-box.reveal,
.project-card.reveal,
.testimonial.reveal,
.award-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.expertise-box:nth-child(1) { transition-delay: 0.1s; }
.expertise-box:nth-child(2) { transition-delay: 0.2s; }
.expertise-box:nth-child(3) { transition-delay: 0.3s; }

.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }
.project-card:nth-child(4) { transition-delay: 0.4s; }
.project-card:nth-child(5) { transition-delay: 0.5s; }

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

.btn-view-more {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid #ffcc70;
  border-radius: 2px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 2rem;
}

.btn-view-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffcc70;
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-view-more:hover {
  color: #000;
}

.btn-view-more:hover::before {
  left: 0;
}

/* Update common button styles to include the new button */
.contact-btn, 
.btn-view-project, 
.view-all-projects, 
.nav-arrow, 
.view-more,
.btn-view-more {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.contact-btn::before, 
.btn-view-project::before, 
.view-all-projects::before, 
.nav-arrow::before,
.btn-view-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffcc70;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-btn:hover::before, 
.btn-view-project:hover::before, 
.view-all-projects:hover::before, 
.nav-arrow:hover::before,
.btn-view-more:hover::before {
  left: 0;
}

.contact-btn:hover, 
.btn-view-project:hover, 
.view-all-projects:hover, 
.nav-arrow:hover,
.btn-view-more:hover {
  color: #000;
}

/* Responsive styles for the new button */
@media screen and (max-width: 768px) {
  .btn-view-more {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .btn-view-more {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Responsive styles for image slider */
@media screen and (max-width: 1200px) {
  .image-slider {
    height: 500px;
  }
}

@media screen and (max-width: 992px) {
  .image-slider {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .image-slider {
    height: 350px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 576px) {
  .image-slider {
    height: 250px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
  }
}

h3 {
  font-size: inherit;
}

@media screen and (max-width: 768px) {
  .award-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .award-content h3,
  .award-content .view-more {
    margin-left: auto;
    margin-right: auto;
  }
}