@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #FEFCF3;
    color: #2A2927;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.83);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 50px; /* Updated height */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensure navbar content aligns vertically */
}

.logo img {
    height: 60px; /* Adjust logo size for proportionality */
    padding-bottom: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center; /* Center the nav links vertically */
    margin: 0;
    margin-bottom: 4.5rem;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    text-decoration: none;
    color: #FEFCF3;
    transition: 0.5s;
}

.nav-links a:hover {
    color: #AF0077;
    transition: 0.5s;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: transparent;
    border: none;
}

.hamburger .bar {
    height: 2px;
    width: 20px; /* Adjust width for better balance with the navbar */
    background-color: whitesmoke;
    margin: 2px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .bar {
        width: 100%;
        height: 4px;
        background-color: black;
        transition: all 0.3s ease-in-out;
    }
    
    .hamburger.cross .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.cross .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.cross .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 50px; /* Align with navbar height */
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        display: none;
    }

    .nav-links.active {
        display: flex;
        
    }

    .nav-links li {
        margin: 1rem 0;
    }
}

.hero {
    text-align: center;
    height: 120vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.725),rgba(255, 255, 255, 0), #fefcf3), 
                url('./images/homesection.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .tagline h2 {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    color: white;
    font-size: 4.5rem;
    font-weight: bold;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
    margin: 0;
}
.features {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEFCF3;
}

.features-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

/* Left Column: Question and Paragraph */
.features-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.features-text h1 {
    font-size: 2.5rem;
    color: #AF0077;
    margin-bottom: 20px;
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
}

.features-text p {
    font-size: 1rem;
    color: #2A2927;
    line-height: 1.6;
    max-width: 400px;
    font-family: "Inter", serif;
  font-optical-sizing: auto;
}

/* Right Column: Feature Cards */
.features-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    height: 200px;
    width: 190px;
    position: relative;
}
/* Adjust bottom row cards */
.features-cards .feature-card:nth-child(2), 
.features-cards .feature-card:nth-child(4) {
    margin-top: -90px; /* Move the second row upwards */
}

/* Card Content */
.feature-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1rem;
    margin: 0;
}

/* Card Colors */
.pink-card {
    
    background-color: #9E016C;
}

.green-card {
    background-color: #2A2927;
}

.blue-card {
    background-color: #2A2927;
}

.purple-card {
    background-color: #9E016C;
}

        
.footer{
  margin-top: 20px;
  background: #0d1117;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px ;
  padding: 55px 50px;
  color:#fff!important;
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer .footer-left{
  width: 40%;
}

.footer h3{
  color:  #ffffff;
  font: normal 36px ;
  
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  margin: 0;
  margin-left: 2rem;
}

.footer h3 span{
  color:  teal;
}

/* Footer links */

.footer .footer-links{
  color:  #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}

.footer .footer-name{
  color: teal;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer .footer-center{
  width: 35%;
}
.footer-center .phone .phoned{
  margin-top: .7rem;
}
.footer .footer-center i{
  color: #AF0077;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  vertical-align: middle;
  margin:0;
}

.footer .footer-center p span{
  
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer .footer-center p a{
    
  color:  #AF0077;
  text-decoration: none;;
}
.footer .footer-center p a:hover{
    
  text-decoration: underline;;
}

.call-button img {
  width: 62px;
  height: 62px;
  bottom: 80px;
  position: fixed;
  z-index: 999999;
  right: 15px;
  visibility: hidden;
}


.footer .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer .footer-right{
  width: 20%;
}

.footer .footer-about{
  line-height: 20px;
  color:  #92999f;
  font-size: 13px;
  font-weight: normal;
  
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  margin: 0;
}

.footer .footer-about span{
    
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .footer-socials{
  margin-top: 25px;
}

.footer .footer-socials a{
  display: inline-block;
  font-size: 35px;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.footer .logo {
    margin-left: 5rem ;
    height: 200px;
    width: 200px;
}


@media (max-width: 800px) {

  .footer{
    font: bold 14px sans-serif;
  }

  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer .footer-center i{
    margin-left: 0;
  }

}
    




@media (max-width: 768px) {
  .footer .logo {
    margin-left: 0rem ;
    height: 200px;
    width: 200px;
}

    .hamburger {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .products .product {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .products .product {
        width:100%;
    }
}

/* Animation Styles */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.scroller {
  max-width: 600px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

.wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 250px;
  margin-top: 5rem;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgb(0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgb(0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item {
  width: 200px;
  height: 200px;
  border-radius: 6px;
  position: absolute;
  left: max(calc(250px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.item img{
  height: 120px;
  width: 125px;
}
.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}
.item9 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}
.item10 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

@media (max-width: 768px) {

  .call-button img {
    width: 62px;
    height: 62px;
    bottom: 80px;
    position: fixed;
    z-index: 999999;
    right: 15px;
    visibility: visible;
  }
}
@media (max-width: 390px) {
  .phone{
    text-align: start;
  }
  .mail{
    text-align: start;
  }
  .mail p{
    font-size: 13px;
    margin-top: 20px;
  }
  .footer .footer-center p span {
    font-size: 9px;
  }
}
