* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #dadada;
}

html {
  scroll-behavior: smooth;
  color: #000000;
}

/* this is the animation css*/
.scroll-animate {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1s ease, opacity 1s ease;
}

.scroll-animate-right {
  transform: translateX(100%);
}

.scroll-animate.active {
  opacity: 1;
  transform: translateX(0);
}




/* Scroll-in animation (handled by IntersectionObserver) */
.title-animate {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 1.8s ease, opacity 1.8s ease;
}

.title-animate.title-active {
  opacity: 1;
  transform: translateY(0);
}





/* Hero Section */
.hero-wrapper {
  position: relative;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  /* optional dark tint over video */
  z-index: -1;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #0e1014, #3a3a3a);
  padding: 10rem 5rem;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* White glow at bottom right */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(254, 254, 254, 0.19) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


.spline-background {
  position: absolute;
  top: 0;
  left: 20%;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* behind text, in front of video */
  overflow: hidden;
}

.spline-background spline-viewer {
  width: 100%;
  height: 100%;
}



.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h2 {
  font-size: 2rem;
  font-weight: lighter;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}

.home-container {
  display: inline-block;
}

.home-text {
  font-size: 3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-family: 300;
  letter-spacing: 2px;
  border-right: 2px solid rgb(255, 255, 255);
  color: #aeaa27;
  white-space: nowrap;
  overflow: hidden;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: #ffffff;
  width: 80%;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  width: 80%;
}



@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding-top: 10px;
    min-height: 100vh;
  }

  .hero-text {
    position: absolute;
      top: 15%;
      left: 0%;
      max-width: 100%;
      height: 100%;
      margin: 0 auto;
  }

  .hero-images {
    margin: 0 auto;
    justify-content: center;
    min-height: 270px !important;
  }

  .image2 {
    max-width: 280px;
    margin: 0 auto;
  }

  .image1 {
    top: -10px;
    left: -10px;
    max-width: 160px;
  }

  .box-below,
  .box-left {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin: 0 auto;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }
    .hero-text p {
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto;
  }
  .why-choose {
    margin-top: 15vh;
  }
  .spline-background {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0.6;
}
}

@media (max-width: 768px) {
  .hero-section {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0rem;
    padding-bottom: 5rem;
    text-align: center;
  }

  .cta {
    margin-bottom: 15vh;
  }

  .image2 {
    max-width: 170px;
    left: 60px;
    margin-bottom: 2rem;
  }

  .hero-text{
    padding-top: 5rem;
  }


  .hero-text h1 {
    font-size: 1.3rem;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto;
  }
}









/* Scroll Arrow - always centered */
.section-border {
  height: 0.1px;
}

.scroll-arrow {
  font-size: 1.3rem;
  color: white;
  cursor: pointer;
  position: absolute;
  bottom: 1vh;
  left: 49.5%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: #636363;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1.5s infinite;
  z-index: 900;
  transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-arrow:hover {
  background: #aeaa27;
  transform: translateX(-50%) scale(1.2);

}

/* Bounce Animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
}















/* Why Choose */
.why-choose {
  background-position: right;
  background-size: 120px auto;
  background-repeat: no-repeat;
  padding: 10rem 2rem;
  display: flex;
  justify-content: center;
}

.why-choose-content {
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  gap: 4rem;
  align-items: center;
}

.why-text h3 {
  font-size: 2.8rem;
  color: #aeaa27;
  line-height: 1.3;
  text-align: left;
}

.why-text h3 span {
  font-weight: 400;
  color: #000000;
}

.why-line {
  width: 80px;
  height: 3px;
  background-color: #000000;
  border: none;
  border-radius: 10px;
  margin: 2rem 0;
}

.why-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-text ul li {
  font-size: 1.1rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #000000;
  color: #000000;
  transition: transform 0.7s ease
}

.why-text ul li:hover {
  transform: scale(1.02);
}

.why-text ul li .icon {
  font-size: 1.4rem;
  color: #000000;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-text ul li:hover .icon {
  transform: scale(1.5);
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .why-text h3 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .why-text ul li {
    justify-content: center;
    text-align: left;
    font-size: 1rem;
    padding: 0.8rem 0;
    line-height: 1.4;
  }

  .why-line {
    margin: 1.5rem auto;
  }
}

@media (max-width: 768px) {
  .why-choose {
    background-image: none;
    padding: 6rem 1.5rem;
  }

  .why-text h3 {
    font-size: 2rem;
  }

  .why-text ul li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }

  .icon {
    font-size: 1.2rem;
  }
}
















/* testimonials */
.testimonial-carousel {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-bottom: 5rem;
}

.testimonials h3 {
  font-size: 3rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 5rem;
  color: #000;
}

.testimonial-line {
  width: 10rem;
  height: 2px;
  margin: 0 auto 5vh auto;
  border: none;
  border-radius: 5rem;
  background-color: #aeaa27;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1rem;
  padding: 2vh 0.5rem;
}

.testimonial {
  flex: 0 0 calc((100% - 2rem) / 3);
  box-sizing: border-box;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #252525;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.testimonial h4 {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  color: #475569;
  font-size: 0.95rem;
}


/* ================== Media Query for 900px ================== */
@media (max-width: 900px) {
  .testimonial {
    flex: 0 0 calc((100% - 1rem) / 2);
    /* Show 2 cards */
  }

  .testimonials h3 {
    font-size: 2.25rem;
  }
}

/* ================== Media Query for 768px ================== */
@media (max-width: 768px) {
  .carousel-track {
    gap: 1rem;
    padding: 0;
  }

  .testimonial {
    flex: 0 0 100%;
    /* Full width for mobile */
  }

  .testimonials h3 {
    font-size: 1.75rem;
    padding-top: 3rem;
  }

  .testimonial p {
    font-size: 0.9rem;
  }
}















.film-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10rem 6rem 7rem 6rem;
}

.film-left {
  max-width: 45%;
}

.film-left h2 {
  font-size: 3rem;
  color: #aeaa27;
  min-height: 3rem;
  /* adjust as needed */
}
.film-section-line{
  width: 80px;
  height: 3px;
  background-color: #000000;
  border: none;
  border-radius: 10px;
  margin-bottom: 8rem;
}
.film-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 5rem;
  color: #000;
  min-height: 5rem;
  /* adjust as needed */
}

.film-tab {
  background-color: #000000;
  color: rgb(255, 255, 255);
  border: 1px solid transparent;
  /* Reserve space for border so hover doesn't shift layout */
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
  margin: 2px;
}

.film-tab:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  border-color: white;
  /* This works without layout shift because the space was reserved */
}

.film-tab.active {
  background-color: #c1c1c1;
  border-color: rgb(0, 0, 0);
  color: #0d1018;
}

.film-right {
  width: 55%;
}

.film-image {
  width: 100%;
  max-width: 50rem;
  height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.7s ease
}
.film-image:hover{
  transform: scale(1.04);
}
.film-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 100%, 90px 0, 100% 0, 100% 100%);
}


@media (max-width: 900px) {
  .film-section {
    flex-direction: column;
    text-align: center;
    padding: 5rem 2rem 4rem;
  }

  .film-left {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .film-left h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .film-left p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }

  .film-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .film-tab {
    padding: 0.5rem 1.1rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .film-right {
    width: 100%;
  }

  .film-image {
    max-width: 100%;
    height: 18rem;
  }

  .film-image img {
    clip-path: polygon(0 100%, 50px 0, 100% 0, 100% 100%);
  }
}

@media (max-width: 768px) {
  .film-section {
    padding: 4rem 1.5rem 3rem;
  }

  .film-left h2 {
    font-size: 1.6rem;
  }

  .film-section-line {
    margin-bottom: 1rem;
    margin-left: 3rem;
  }

  .film-left p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .film-tabs {
    gap: 0.5rem;
  }

  .film-tab {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
  }

  .film-image {
    height: 15rem;
  }

  .film-image img {
    clip-path: polygon(0 100%, 0px 0, 100% 0, 100% 100%);
  }
}













.video-section {
  position: relative;
  text-align: center;
  padding: 10rem 2rem;
  background: url(photo/Untitled\ design\ \(4\).png) top/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  overflow: hidden;
  z-index: 0;
  margin-top: 2rem;
}

/* Add the dark overlay */
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.372);
  /* Adjust opacity here */
  z-index: 1;
}

/* Push your section content above the overlay */
.video-section>* {
  position: relative;
  z-index: 2;
}

.video-section h2 {
  font-size: 3.5rem;
  color: #ffffff;
  text-align: left;
  margin-left: 3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.video {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video:hover {
  transform: scale(1.04);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-line {
  width: 10rem;
  height: 2px;
  border: none;
  background-color: #ffffff;
  margin-top: 1.5rem;
  /* spacing between video and line */
  margin-bottom: 0;
}

.youtube-line-h2 {
  width: 15rem;
  height: 2px;
  border: none;
  background-color: #ffffff;
  /* spacing between video and line */
  margin-bottom: 10rem;
  margin-left: 4rem;
}

/* Media Queries */
@media (max-width: 900px) {
  .video-section {
    padding: 6rem 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
  }

  .video-section h2 {
    font-size: 2.2rem;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .youtube-line-h2 {
    width: 10rem;
    margin: 1rem auto 5rem auto;
  }

  .video-wrapper {
    gap: 2rem;
    justify-content: center;
  }

  .video {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .youtube-line {
    width: 6rem;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 5rem 1rem 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
  }

  .video-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .youtube-line-h2 {
    width: 8rem;
    margin: 1rem auto 4rem;
  }

  .video-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .video {
    max-width: 95%;
    margin: 0 auto;
  }

  .youtube-line {
    width: 5rem;
    margin-top: 1rem;
  }
}













.highlight-services {
  padding: 10rem 2rem;
  text-align: center;
  color: #000000;
  background-color: white;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% auto;
}


.highlight-services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #aeaa27;
}
.highlight-line{
  width: 80px;
  height: 3px;
  background-color: #000000;
  border: none;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 0.75rem;
}
.highlight-sub {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 3rem;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.171);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  position: relative;
  color: #000;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: #1e293b;
  color: rgb(0, 0, 0);
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .highlight-services {
    padding-top: 8vh;
    padding-bottom: 20vh;
  }

  .highlight-services h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .metric h3::after {
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 0 2rem;
  }

  .service-box h4 {
    font-size: 1.2rem;
  }

  .service-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .highlight-services {
    padding-top: 6vh;
    padding-bottom: 12vh;
  }

  .highlight-services h3 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .metric h3::after {
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .service-box {
    padding: 1.5rem;
  }

  .service-box h4 {
    font-size: 1.15rem;
  }

  .service-box p {
    font-size: 0.9rem;
  }
}















.custom-tint-section {
  padding: 10rem 2rem;
  color: #aeaa27;
  text-align: center;
}
.install-quote-button{
  text-decoration: none;
  color: #000;
  border-bottom: solid 1px black;
  transition: color 0.4s, border 0.4s;
  font-weight: bolder;
}
.install-quote-button:hover{
  color: #aeaa27;
  border-bottom: solid 1px #5f5d16;
}
.tint-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.tint-subheading {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #000000;
}

.tint-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 5rem;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.tint-feature-row.reverse {
  flex-direction: row-reverse;
}

.tint-feature-icon {
  font-size: 3rem;
  background: #1e293b;
  color: rgb(0, 0, 0);
  padding: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
}

.tint-feature-content {
  flex: 1;
  min-width: 280px;
}

.tint-feature-content h3 {
  font-size: 1.6rem;
}

.feature-line {
  width: 10vh;
  border: none;
  background-color: #000;
  height: 3px;
  border-radius: 15px;
  margin-bottom: 0.75rem;
}

.tint-feature-content p {
  margin-bottom: 1rem;
  color: #000000;
  font-size: 1rem;
}

.tint-feature-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.tint-feature-content ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #000000;
}
@media (max-width: 900px) {
  .custom-tint-section {
    padding: 6rem 1.5rem;
    text-align: center;
  }

  .tint-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .tint-subheading {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .tint-feature-row,
  .tint-feature-row.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .tint-feature-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    padding: 1rem;
  }

  .tint-feature-content h3 {
    font-size: 1.4rem;
  }

  .feature-line {
    width: 70px;
    margin: 1rem auto;
  }

  .tint-feature-content p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .tint-feature-content ul {
    padding: 0 1rem;
    text-align: left;
  }

  .tint-feature-content ul li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .animated-button {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .custom-tint-section {
    padding: 5rem 1rem;
  }

  .tint-heading {
    font-size: 1.7rem;
  }

  .tint-subheading {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .tint-feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    padding: 0.8rem;
  }

  .tint-feature-content h3 {
    font-size: 1.25rem;
  }

  .tint-feature-content p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .tint-feature-content ul {
    padding: 0 1rem;
  }

  .tint-feature-content ul li {
    font-size: 0.88rem;
  }

  .feature-line {
    margin: 0.8rem auto 1rem;
  }

  .animated-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
















.animated-button-mission {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: rgb(255, 255, 255);
  overflow: hidden;
  padding-bottom: 5px;
  margin-top: 2vh;
}

.animated-button-mission .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.arrow {
  margin-right: 5vh;
}

/* Underline effect */
.animated-button-mission::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease-in-out;
}

.animated-button-mission:hover::after {
  width: 100%;
}

.animated-button-mission:hover .arrow {
  transform: translateX(5px);
}

/* Reverse effect when un-hovering */
.animated-button-mission::after {
  transition: width 0.3s ease-in-out;
}

.animated-button-mission:hover::after {
  width: 100%;
}

.animated-button-mission:not(:hover)::after {
  width: 0;
  transition: width 0.3s ease-in-out 0.2s;
}




.animated-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: rgb(0, 0, 0);
  overflow: hidden;
  padding-bottom: 5px;
  margin-top: 2vh;
}

.animated-button .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.arrow {
  margin-right: 5vh;
}

/* Underline effect */
.animated-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #aeaa27;
  transition: width 0.3s ease-in-out;
}

.animated-button:hover::after {
  width: 100%;
}

.animated-button:hover .arrow {
  transform: translateX(5px);
}

/* Reverse effect when un-hovering */
.animated-button::after {
  transition: width 0.3s ease-in-out;
}

.animated-button:hover::after {
  width: 100%;
}

.animated-button:not(:hover)::after {
  width: 0;
  transition: width 0.3s ease-in-out 0.2s;
}


@media (max-width: 768px) {
  #section4 {
    clip-path: none;
    padding-top: 8vh;
    padding-bottom: 10vh;
    margin-bottom: 8vh;
    text-align: center;
  }

  .section4::after {
    display: none;
    /* Remove the skewed border on mobile for cleaner layout */
  }

  .section4 h2 {
    text-align: center;
    margin-left: 0;
    font-size: 2.2rem;
  }

  .section4-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }

  .section4-left-div,
  .section4-right-div {
    margin: 0;
    flex: unset;
  }

  .section4-left-div h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .section4-right-div p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .animated-button-mission {
    justify-content: center;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .animated-button {
    justify-content: center;
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .arrow {
    margin-right: 0;
  }
}

















/* About Us*/
.about-section {
  display: flex;
  gap: 5rem;
  padding: 2rem 4rem;
  margin-bottom: 5rem;
  align-items: flex-start;
}

.about-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-top: 3rem;
}

.about-right {
  flex: 1;
  color: #000;
}

.about-subtitle {
  color: #aeaa27;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  margin-top: 5rem;
}

.about-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about-summary {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #000000;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item h3 {
  font-size: 1.2rem;
  font-weight: bold;
}

.stat-item hr {
  width: 50px;
  height: 3px;
  background-color: #aeaa27;
  border: none;
  margin: 0.5rem 0 1rem 0;
}

.stat-item p {
  font-size: 0.95rem;
  color: #000000;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    margin-bottom: 4rem;
    align-items: center;
    text-align: center;
  }

  .about-left {
    flex: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-image {
    width: 45%;
    height: 250px;
    margin-top: 0;
  }

  .about-right {
    width: 100%;
  }

  .about-subtitle {
    margin-top: 2rem;
    font-size: 1.3rem;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-summary {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-item hr {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .stat-item h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-left {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    width: 90%;
    height: 220px;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-summary {
    font-size: 0.95rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .stat-item h3 {
    font-size: 1rem;
  }
}





















.featured-tint-section {
  padding: 10rem 2rem;
  padding-bottom: 10rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color: #000000;
}

.featured-tint-section h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #aeaa27;
}

.section-subtext {
  margin: 0 auto;
  font-size: 1.1rem;
  max-width: 750px;
  color: #000000;
}

.featured-tint-section hr {
  margin: 0 auto;
  margin-bottom: 3rem;
  width: 10rem;
  height: 2px;
  border: none;
  border-radius: 5rem;
  background-color: #aeaa27;
}

.tint-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.tint-feature-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem 2.5rem;
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tint-feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  background: #1e293b;
  color: #fff;
  width: 55px;
  height: 55px;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.tint-feature-block h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000;
}

.feature-intro {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1rem;
}

.feature-details {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #000000;
}

.feature-details li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.feature-details li::before {
  content: '✔';
  color: #aeaa27;
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: bold;
}





.animated-button-process{
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  background-color: rgb(0, 0, 0);
  border-radius: 15px;
  padding: 1rem 4rem;
  color: rgb(255, 255, 255);
  overflow: hidden;
  margin-top: 5vh;
  transition: transform 0.7s ease;
}

/* Underline effect */
.animated-button-process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 70%;
  height: 2px;
  background: linear-gradient(135deg, #5f5d16 0%, #807d1d 100%);
  transition: width 0.7s ease-in-out;
}
.animated-button-process:hover{
  transform: scale(1.05);
}
.animated-button-process:hover::after {
  width: 100%;
}

/* Reverse effect when un-hovering */
.animated-button-process::after {
  transition: width 0.5s ease-in-out;
}

.animated-button-process:not(:hover)::after {
  width: 0;
  transition: width 0.5s ease-in-out 0.2s;
}

/* Responsive */
@media (max-width: 900px) {
  .tint-feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .featured-tint-section h3 {
    font-size: 2rem;
  }
  .feature-details li::before{
    font-size: 0.8rem;
  }
  .tint-feature-block {
    width: 100%;
    max-width: 95%;
  }
}














