
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary-color: #0c0d0e;
  --secondary-color: #ffffff;
  --black: #000000f3;
  --red: #D72638;
  --background-color: #fdfefe;
  --box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.519);
  --border-radius: 0.4rem;
  --font-lg: 2.6rem;
  --font-md: 1.3rem;
  --font-sm: 0.8rem;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-size:100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: var(--background-color);
  color: var(--black);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

section {
  scroll-margin-top: 80px; /* adjust to your nav height */
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}


header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  
}

.logo img {
  width: 5rem;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: var(--font-sm);
  border-radius: var(--border-radius);
  padding: .5rem 1rem;
}

.nav-links a:hover{
  background:var(--red);
  color:var(--background-color);
}


.nav-links  .dropdown-content{
  position:absolute;
  list-style-type: none;
  padding:0.5rem 1rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  top:2.4rem;
  background:var(--background-color);
  box-shadow:var(--box-shadow);
  animation:dropdown 0.3s ease-in-out;
  display:none;
  z-index:1;
}

.product .dropdown-content{
  left:-3rem;

}

@keyframes dropdown {
  0%{
    transform:translateY(-20px);
    opacity:0;
  }
   100%{
    transform:translateY(0);
    opacity:1;
  }
  
}

.nav-links  .dropdown-content li{
  color: var(--black);
  padding:.3rem 1.5rem;
  text-wrap:nowrap;
 
  border-bottom:1px solid #05050573;
}

.nav-links  .dropdown-content li:hover{
  color:var(--primary-color);
  background:var(--red);
   border-radius:0.4rem;
  
}
 .product:hover .dropdown-content, .about:hover .dropdown-content{
  display:flex;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
}

section{
  padding: 2rem 1.2rem;
  margin-top:3rem;
}

.address a{
 padding:2rem 0;
}

.info{
  display:flex;
  flex-direction:row;
  gap:2rem;
  padding:3rem 1.3rem;
  margin-bottom:5rem;
}

.info img{
  width:50%;
  height:auto;
  border-radius:var(--border-radius);
}
.info p{
   font-size:1.2rem;
}

.info button{
  color:var(--primary-color);
  border:2px solid var(--primary-color);
  background:var(--background-color);
  padding:.5rem 1.5rem;
  font-size:1rem;
  margin-top:1.4rem ;
  border-radius:var(--border-radius);
  cursor:pointer;
  font-weight:600;
}

.info button:hover{
 color:var(--background-color);
  background:var(--red);
  border:.1px solid var(--background-color);
}


.f1{
  text-align:center;
  margin:3rem 0;
}
.features{
  margin: 0;
  display:flex;
  flex-direction:column;
  justify-content: space-evenly;
  align-items:center;
  gap: 0rem;
  height: 100vh;
  padding:4rem 1.4rem;
}

.features .img{
  display:flex;
   gap: 15rem;
   margin-top:-7rem;
  
 
}

.features img{
  width:24rem;
  height:auto;
  border-radius:0.2rem;
  border-radius: var(--border-radius);
}

.features .f-text{
  display:flex;
  gap:4rem;
  justify-content: center;
  align-items:center;
  margin-top:-6rem;
  color:var(--primary-color);
}

.features .f-text .fas{
 -webkit-text-stroke: 1px var(--primary-color);
  -webkit-text-fill-color:  transparent;
}



.key-feature{
  margin-top:-5rem;
  text-align:center;
}

.key-feature h1, .f1 h1{
  font-size:var(--font-lg);
  color:var(--primary-color);
  margin-bottom:1rem;
}

.key-feature .key{
   padding: 4rem 0;
}

.key-feature  .key-text{
   display:flex;
   flex-direction:column;
   text-align:left;
   padding:.5rem 1rem;
}

.key-feature  .key-text span{
   padding:.5rem 1rem;
  font-size:1.2rem;
  color:var(--primary-color);
}

.key-feature  .key-text span i{
  -webkit-text-stroke: 1.5px var(--red);
  -webkit-text-fill-color:  transparent;
}



.contact {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: var(--font-family);
  color: var(--text-color);
  max-width: 100%;
  margin: 2rem auto;
}

.contact h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info a{
  text-decoration: none;
   color: var(--primary-color);
   cursor:pointer;
}

.contact-info a:hover{
  color:blue;
}

.contact-info i {
 
  margin-right: 10px;
  font-size: 1.3rem;
}


.contact-info .fa-whatsapp {
  color: #25D366;
}

.contact-info .fa-envelope {
  color: goldenrod;
}


.contact-info .fa-phone {
  color: rgb(24, 174, 238);
}

.showcase-section{
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem ;
  gap: 2rem;
}

.showcase {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
}

.showcase a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--black);
  font-size:0.9rem;
}

.showcase a:hover{
    color:blue;
    text-decoration: underline;
}

.showcase-section h3{
    text-align: center;
}

.showcase img {
    width: auto;
    height: 12rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.related-posts {
  margin: 3rem 0;
  border-top: 2px solid #eee;
}
.related-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.related-links a {
  background:  #e1e2e4;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--black);
  
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.related-links a:hover { transform: translateY(-3px); background-color:#987a7a54; }




.site-footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 1rem ;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1240px;
  margin: auto;
}

.footer-section h3 {
  font-size: var(--font-md);
  margin-bottom: 1rem;
  color: var(--red);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li,
.footer-section p{
  font-size: var(--font-sm);
  margin: 0.5rem 0;
  line-height: 1.6;
}

.footer-section p a{
   color:var(--secondary-color);
   text-decoration: none;
}

.footer-bottom p small{
font-style:italic;
}

.social-icons a {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: var(--red);
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.social-icons a i {
  font-size: 1.8rem;
  margin-right: 1rem;
  transition: all 0.3s ease-in-out;
}

#soc{
  display:flex;
  flex-direction:column;
  align-items:center;
}

#soc .logo{
  background:var(--background-color);
  margin-top:0.5rem;
}


/* Facebook */
.fa-facebook {
  color: #1877F2;
}

.fa-facebook:hover {
  background: linear-gradient(45deg, #1877F2, #3b5998);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
}

/* X (Twitter/X) */
.fa-x {
  color: #000000;
}

.fa-x:hover {
  background: linear-gradient(45deg, #000000, #5b5b5b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
}

/* LinkedIn */
.fa-linkedin {
  color: #0A66C2;
}

.fa-linkedin:hover {
  background: linear-gradient(45deg, #0A66C2, #004182);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
}

/* Instagram */
.fa-instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fa-instagram:hover {
  transform: scale(1.2) rotate(5deg);
}

/* whatsapp contacts */
.whatsapp-float {
  position: fixed;
  bottom: 128px;
  right: 1rem;
  background-color: #25D366;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
}

.chat-confirm {
  display: none;
  position: absolute;
  right: 70px;
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* SCROLL UP BUTTON */
.scroll-up {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  background-color: rgba(243, 9, 9, 0.623);
  color: var(--secondary-color);
  font-size:1.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}



/* large Computers */

@media (max-width:3200px){
 html{
    font-size:180%;
  }
}

@media (max-width:2560px){

  html{
    font-size:150%;
  }
}

@media (max-width:2550px){

  html{
    font-size:100%;
  }
}





/* MINI COMPUTERS */
@media (max-width:1024px){
  

}

@media (max-width:860px) {
 html{
  font-size:80%;
 }

 
}


/* MOBILE RESPONSIVE */
@media (max-width:768px) {
 html{
  font-size:80%;
 }

 
 body{
     overflow-x: hidden;
      width: 100%;
 }
  

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4rem;
    background-color: var(--secondary-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem 1rem;
    box-shadow: var(--box-shadow);
    animation:dropdown 0.4s ease-in-out;
    z-index: 999;
  }

  
  .nav-links a{
    font-size:1.8rem;
  }

  header.navbar {
     padding:1rem 2rem;
  }


  .nav-links.active {
    display: flex;
  }


.product .dropdown-content{
  left:0;

}

nav{
    padding: 1rem;
    display: flex;

}

.ham-menu{
    height: 31px;
    width: 34px;
    margin-left: auto;
    position: relative;
}

.ham-menu span{
    height: 2.5px;
    width: 100%;
    background-color: var(--black);
    border-radius: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;

}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}


.ham-menu.active span:nth-child(1) {
    top: 55%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 45%;
    transform: translate(-50%, 50%) rotate(-55deg);
}


section{
  padding: 2rem 0.5rem;
  margin-top:6rem;
}


.info{
  flex-direction:column;
  gap:1rem;
  padding:3rem 0.01rem;
  margin:2rem;
}

.info img{
  width:100%;
  height:auto;
}

.f1 h1{
  margin-bottom:-1.5rem;
}

.features{
  padding: 0 0;
}


.features .img{
   flex-direction:column;
   align-items: center;
   gap:4rem;
}

.key-feature h1, .f1 h1{
font-size:1.9rem;
}
.key-feature  .key-text span{
   font-size:1rem;
}

.contact{
  margin: 0 1.5rem;
  padding: 1rem;
}

.contact-info {
   flex-wrap: wrap;
}

.showcase-section h1{
  text-align: center;
}


.showcase {
    flex-direction: column;
    align-items: center;
    width:100%;
    padding: 1rem 0;
}

.site-footer {
  padding: 3rem 3rem;
}

}


 

/* iphone 6plus/7/8 */
@media (max-width:414px) and (max-height:736px) {
  
html{
  font-size:78%;
}
  
.f1 h1{
  margin-bottom:1.5rem;
}
}
