* {
  box-sizing: border-box;
  margin: 0;
}
body{
    background: linear-gradient(to left,rgb(15, 19, 61),rgb(6, 6, 8));

}
.navbar {
  background-color: rgba(0, 0, 0, 0.3);
}

#Home{
    background: linear-gradient(to left,rgb(15, 19, 61),rgb(6, 6, 8));
    color: aliceblue;
    height: 100%;
    width: 100%;
    padding: 50px;
}

@keyframes animate {
  0% {
    transform: scale(0, 0.005);
  }
  50% {
    transform: scaleY(0.005);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(-100%);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* Fade-slide for brand name */
.animated-brand {
  animation: fadeSlideIn 1.2s ease-out;
}

/* Main headline animation */
.Brand p{  
  animation: fadeInUp 1.4s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}
.main-heading {
  font-family: "Georgia", serif;
  font-weight: bold;
  font-size: 140px;
  text-align: center;
  color: #ffffff;
  animation: scaleIn 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

/* Subtext animation */
.subtext {
  font-size: 1.2rem;
  color: rgb(180, 180, 180);
  animation: fadeInUp 1.4s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
  font-family: "Lucida Console", "Courier New", monospace;
}

/* Animations */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width:628px){
  .main-heading {
    font-size:50px;
  }
  .subtext{
    font-size: 12px;
  }
  p{
    font-size: 12px;
  }
}  
@media screen and (min-width:628px) and (max-width:728px){
  .main-heading {
    font-size:60px;
  }
  .subtext{
    font-size: 12px;
  }
  p{
    font-size: 12px;
  }
}
@media screen and (min-width: 728px) and (max-width: 1045px) {
  .main-heading {
    font-size: 75px;
  }
}

/**/



.slider{
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}
.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}

/* Product Section */
#sectionProduct h1 {
  color: #fff;
  font-weight: bold;
}

/* Product Cards */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

/* Zoom on hover */
.product-card:hover img {
  transform: scale(1.1);
}

.product-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* Overlay with button */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.product-card:hover .overlay {
  opacity: 1;
}

/* Responsive Fixes */
.img-h {
  aspect-ratio: 4/5;
}

.img-v {
  aspect-ratio: 4/5;
}

@media (max-width: 768px) {
  .img-h,
  .img-v {
    aspect-ratio: auto;
    height: auto;
  }
}

/******* Our Team ******/
#our-team {
    background-color: transparent;  /* Darker background */
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.team-member {
    text-align: center;
    background-color: #333;  /* Dark background for team cards */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-member:hover .team-img {
    transform: scale(1.1);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

p.bio {
    font-style: italic;
    color: #ccc;  /* Lighter grey for bio text */
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon:hover {
    color: #ff6347;  /* Red color for hover effect */
}

.social-icon.linkedin:hover {
    color: #0A66C2;
}

.social-icon.github:hover {
    color: #6e5494;
}



/******* Footer *******/
.footer {
    background-color: #111;  /* Dark background for footer */
    color: #ddd;
}

.footer a {
    text-decoration: none;
    color: #ddd;
}

.footer a:hover {
    color: #ff6347;  /* Red hover effect */
}

.footer-contact p {
    margin: 5px 0;
}

.footer-social {
    margin-top: 20px;
}

.footer-icon {
    font-size: 2rem;
    margin: 0 15px;
}

.footer-icon:hover {
    color: #ff6347;  /* Red color for hover */
}

.footer-icon.linkedin:hover {
    color: #0A66C2;
}

.footer-icon.github:hover {
    color: #6e5494;
}

.footer-icon.instagram:hover {
    color: #E1306C;
}

.footer-icon.twitter:hover {
    color: #1DA1F2;
}

.footer-copyright {
    margin-top: 15px;
    font-size: 0.9rem;
}

































