globals.css 5.14 KB
/* =====Navigation Button=== */
.swiperbtn1 {
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: auto;
}

.hm-swpr-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===== Banner ===== */
.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 5%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.5) 20%,
      rgba(0, 0, 0, 0) 80%);
}

.slide-content {
  width: 100%;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* Animate content when slide is active */
.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Heading animation */
.slide-content h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
  /* delay for stagger */
}

.swiper-slide-active .slide-content h2 {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraph animation */
.slide-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.4s;
}

.swiper-slide-active .slide-content p {
  opacity: 1;
  transform: translateY(0);
}



.text-btn-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  /* push p left, button right */
  gap: 20px;
}

.text-btn-row p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  max-width: 600px;
}

.btn1 {
  background: #fff;
  color: #000;
  border:none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;   
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
}

.btn1:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);  /* slight lift effect */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
}


.btn2 {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn2:hover {
  background: #fff;
  color: #000;
}

.btn3 {
  border: 1px solid #000;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #fff;
}

.btn3:hover {
  background: #000;
  color: #fff;
}

.homeBannerSwiper .swiper-pagination-bullet-active {
  background-color: #fff;
}

.homeBannerSwiper .swiper-pagination-bullet {
  border: 1px solid #fff;
}

/* ===Collection Slider=== */
.collection-section {
  background-color: var(--background-gray);
}

.collectionSwiper .swiper-pagination-bullet-active {
  background-color: #000 !important;
  width: 12px;
  height: 12px;
}

.collectionSwiper .swiper-pagination-bullet {
  border: 1px solid #000 !important;
  background-color: #fff;
  width: 12px;
  height: 12px;

}

.collection-section button.cust-swiper-button-prev {
  background-color: transparent;
  border: none;
}

.collection-section button.cust-swiper-button-next {
  background-color: transparent;
  border: none;
}

.collection-section .custom_container {
  margin-right: 0 !important;
}

.collectionSwiper .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}


/* ======video section===== */
.video-animate {
  width: 100%;
  height: 600px; /* Desktop height */
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: all 1s ease-out;
  transform: scale(0.6);
}

/* Make video fully visible when in viewport */
.video-visible {
  transform: scale(1);
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .video-animate {
    height: 100%; /* Full viewport height */
    border-radius: 0; /* optional: remove rounded corners on mobile */
    transform: scale(1);
  }
}


/* ===about us ==== */
.overview_sec {
  background-color: var(--background-gray);
}

/* ====Contact===== */
.contact_sec {
  background: #141414;
  color: #fff;
}

.contact_sec h2 {
  color: #fff;
}

/* ====Categlog ====== */
.catalogues-sec {
  background-color: var(--background-gray);
}

/* ===Project=== */

.projectSwiper .swiper-pagination-bullet {
  border: 1px solid #000 !important;
  background-color: #fff;
  width: 12px;
  height: 12px;

}
.project-card img {
  overflow: hidden;
  border-radius: 15px;
}

.hover-zoom {
  transition: transform 0.6s ease;
}

.hover-zoom:hover {
  transform: scale(1.03);
}


/* ====Blog=== */
.blog-date {
  color: #333;
  background-color: #F5F5F5;
  font-size: 14px;
  width: fit-content;
  padding: 4px 15px;
}
.blog_desc{
  color: #666666;
  font-size: 15px;
}




/* ===Media query==== */
@media (max-width: 768px) {
  .text-btn-row {
    flex-direction: column;
    gap: 10px;
  }

  .collection-section .custom_container {
    margin-right: auto !important;
  }

  .heading {
    font-size: 30px!important;
    text-transform: uppercase;
    font-family: Roboto-Regular;
  }
   .blog-img {
    width: 100% !important; 
    height: auto !important; 
  }
}