:root {
  --primary-color: #0c0d0e;
  --secondary-color: #ffffff;
  --black: #000000f3;
  --red: #D72638;
  --background-color: #FAFAFA;
  --box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.356);
  --border-radius: 0.4rem;
  --font-lg: 2.8rem;
  --font-md: 1.5rem;
  --font-sm: 1rem;
}

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

html{
  font-size:100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: 1rem 2rem;
  box-shadow: var(--box-shadow);
  z-index: 1000;
}

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

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  padding: 0.5rem;
}

.search-container input {
  width: 0;
  opacity: 0;
  transition: width 0.5s ease, opacity 0.5s ease;
  padding: 0.8rem;
  border-radius: 0.4rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: white;
  margin-right: 0.5rem;
}

.search-container:hover input,
.search-container input:focus {
  width: 25rem;
  opacity: 1;
}

.search-container i {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-color);
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

.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:0.4rem;
  padding: .5rem 1rem;
}

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

.product, .about{
  position:relative;
}

.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;
  list-style-type:none;
  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;
}

/* Position the second-level dropdown */
.dropdown-content2 {
  display: none;
  position: absolute;
  left: 40%; 
  top: 2.5rem;
  background-color: var(--background-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation:dropdown 0.3s ease-in-out;
  z-index: 999;
  min-width: 13.7rem;
  padding: 0.5rem 1rem;
}

/* Parent list item */
.has-submenu {
  position: relative;
  padding: 1rem;
}

/* Show dropdown-content2 on hover */
.has-submenu:hover .dropdown-content2 {
  display: block;
}

/* Optional: Style inner links */
.dropdown-content2 li.navs {
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
}

.dropdown-content2 li.navs:hover {
  background-color: var(--red);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
}


/* Hero Section */
.hero {
  position: relative;
  background: url('images/background.avif') no-repeat center center/cover;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content:center;
  padding: 1rem 2rem;
  height:100vh;
  overflow: hidden;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 95vw;
  max-height:50%;
  animation: slideInLeft 1.2s ease-in-out forwards;
  background:#f7f5f5c9;
  margin-top:8rem;
  padding:2rem;
  border-radius:0.5rem;
  display:flex;
  justify-content:space-between;
  align-items:center;

  
}

.hero-content h1 {
  font-size: var(--font-lg);
  color: var(--primary-color);
  margin-bottom: 1rem;
  z-index:4;
}

.hero-content p {
  font-size: var(--font-md);
  color: var(--black);
  margin-bottom: 2rem;
}

.hero-content .btn {
  background: var(--red);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
   font-weight:bold;
  border-radius: 0.3rem;
  box-shadow: var(--box-shadow);
  transition:  0.3s ease;
}

.hero-content .btn2{
   background: var(--secondary-color);
  color: var(--red);
  padding: 0.8rem 1.5rem;
  margin:0 1.5rem;
  text-decoration: none;
  font-weight:bold;
  white-space:nowrap;
  border-radius: 0.3rem;
  box-shadow: var(--box-shadow);
  transition:  .3s ease;
}

.hero-content .btn2:hover {
  transform: translateY(-3px);
  background:var(--red);
  color:var(--background-color);
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.884);
}

.hero-content .btn:hover {
  transform: translateY(-3px);
  background:var(--secondary-color);
  color:var(--red);
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.884);
}


.hero .hero-show{
 display:flex;
 justify-content:space-evenly;
 gap:0.5rem;
 margin: 1rem 0;
 max-width:95vw;
 max-height:35%;
 overflow-x:hidden;

}

.hero .hero-show img{
  width:100%;
  border-radius:0.5rem;
}

/* Cone Shape Under Hero */
.hero-cone {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 120%;
  height: 200px;
  background: var(--primary-color);
  transform: skewY(-10deg);
  z-index: -1;
  animation: slideInBottom 1s ease forwards;
}



/* Animations */
@keyframes slideInLeft {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInRight {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInBottom {
  0% { transform: skewY(-10deg) translateY(100px); opacity: 0; }
  100% { transform: skewY(-10deg) translateY(0); opacity: 1; }
}


/* ABOUT */
.about-section1 {
  position: relative;
  background: url('images/logo.png') no-repeat center center;
  padding: 2rem 2rem;
  color: var(--secondary-color);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: hidden;
}

.about-content {
  max-width: 98vw;
  max-height:100vh;
  background: #131313c4;
  padding: 4rem 2rem;
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
  text-align:center;
  z-index: 1;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top:5rem;
  left:0%;
}

.about-content h2 {
  font-size: var(--font-lg);
  margin-bottom: 0.2rem;
  color: var(--secondary-color);
  text-shadow: 2px 2px 1px #000000;
}

.about-content p {
  font-size: var(--font-md);
  line-height: 1.5;
   text-shadow: 1px 1px .1px #000000c9;
}

 .about-content p span{
  color:var(--red);
  font-weight:bold;
  text-transform:uppercase;
 }

.about-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}



 .about-container {
      position: relative;
      overflow-x: hidden;
       width: 100vw;
       max-width: 100%;
       margin-top:5rem;
      background-color: var(--secondary-color);
     
    }

    

    .slider {
      display: flex;
      transition: transform 1s ease-in-out;
      height: 100%;
     

     
    }

    .slide {
      min-width: 100%;
      box-sizing: border-box;
      padding: 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
       background: #CBF0FB;
    }

    .slide-content {
      flex: 1;
    }

    .slide-content h2 {
      font-size: var(--font-lg);
      color: var(--primary-color);
    }

    .slide-content p {
      font-size: var(--font-md);
      color: var(--black);
    }

    .slide-content span{
      color:var(--red);
      font-weight:bold;
    }

    .slide-image {
      flex: 1;
     
    }

    .slide-image img {
      max-width: 100%;
      border-radius: 1rem;
      box-shadow: var(--box-shadow);
       border:1px solid var(--primary-color);
    }

    .dots {
      position: relative;
      bottom: 5rem;
      left: 98%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
    }

    .dot {
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background-color: var(--primary-color);
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .dot.active {
      opacity: 1;
      background-color: var(--red);
    }

    .slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 1rem;
}

.arrow {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.3s, transform 0.3s;
}

.arrow:focus{
  background-color: var(--red);
  color: #fff;
  transform: scale(1.1);
}



/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  padding: 6rem 2rem 4rem;
  background-color: var(--secondary-color);
}

.feature {
  background: #fff;
  padding: 2rem;
  border-radius:0.5rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.feature h2 {
  color: var(--headings-color);
  margin-bottom: 1rem;
  font-size: var(--font-md);
}

.feature p {
  font-size: var(--font-sm);
}


/* PRODUCTS */

.products-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--background-color);
}

.section-title {
  font-size: var(--font-lg);
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.product-card {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
}

.product-name {
  font-size: var(--font-md);
  color: var(--black);
  padding: 1rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3.2rem;
  background-color: rgba(12, 13, 14, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}

.product-card:hover .overlay {
  opacity: 1;
}

#requestPopup{
    display:none;
    position:fixed; 
    top:30%; left:50%;
    transform:translate(-50%, -50%); 
    background:var(--background-color); 
    padding:1.5rem;
    border-radius:0.4rem; 
    box-shadow:0 0 10px rgba(0,0,0,0.3); z-index:1999;
}


#requestPopup input, #requestPopup textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
  }

  #requestPopup button {
    padding: 0.6rem 1rem;
    border: none;
    background-color:var(--red);
    color: var(--background-color);
    border-radius: 0.4rem;
    margin-right: 0.6rem;
    cursor: pointer;
  }


#requestPopup button:focus{
  color: rgba(103, 12, 12, 0.7);
}

.icon-btn {
  background-color: var(--red);
  color: var(--secondary-color);
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: var(--font-sm);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  animation: popUp 0.5s ease forwards;
}

.icon-btn:hover {
  background-color: var(--primary-color);
}

@keyframes popUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* CONTACT SECTION */

.contact-section {
  background-color: var(--secondary-color);
  padding: 1.5rem 1rem;
  color: var(--primary-color);
  margin:1rem 0;
}

.contact-section h2 {
  font-size: var(--font-lg);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.msg {
  display: flex;
  flex-wrap: wrap;
  width:100%;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.msg form {
  flex: 1 1 6rem;
  background-color: var(--secondary-color);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border-radius:0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.msg form h3 {
  color: var(--primary-color);
  font-size: var(--font-md);
}

.msg form input, textarea {
  font-size: var(--font-sm);
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding:1rem;
}

 textarea{
  height:5rem;
  padding: 2rem 1rem;
 }

form #message::placeholder {
  font-style: italic;
 
}

.msg form button {
  padding: 0.8rem 1.5rem;
  background-color: var(--red);
  color: var(--secondary-color);
  border: none;
  border-radius:0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.msg form button:hover {
  background-color: #b71d2b;
}

.contact-info-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: left;
}

.contact-item {
  flex: 1 1 6rem;
  background-color: var(--secondary-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--red);
}

.contact-item span {
  font-weight: bold;
  color: var(--black);
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: var(--font-sm);
}

.contact-item a:hover {
  color: var(--red);
  text-decoration: underline;
}




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

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  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-section p a:hover{
  color:var(--red);
  text-decoration:underline;
}

.footer-bottom p small{
font-style:italic;
 color:var(--red);
 cursor:pointer;
}


.footer-bottom p small:hover{
   color:var(--secondary-color);
  text-decoration:underline;
}
.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);
}

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

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

.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;
}

/* 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: 7.5rem;
  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: 2rem;
  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){
  

.hero-img2{
 position:absolute;
 width:8rem;
 top:9rem;
 left:33rem;

}

.hero-img3{
 position:absolute;
 width:8rem;
  top:17.8rem;
 left:33rem;

}
.hero-img4{
  position:absolute;
 width:8rem;
  top:25rem;
 left:28rem;

}
}

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

 
.hero .hero-show img{
  width:25%;
  border-radius:0.5rem;
}
}


/* MOBILE RESPONSIVE */
@media (max-width:768px) {
  .menu-toggle {
    display: block;
  }

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


  .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 .4rem;
  }

  
.search-container:hover input,
.search-container input:focus {
  width: 15rem;
  opacity: 1;
}

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


.product .dropdown-content{
  left:0;
  font-size:1rem;
  margin: 1rem 0;


}
.product .dropdown-content li{
  padding: 1rem 0;
}

.dropdown-content2{
   left: 50%; 
    top: 2.9rem;
}

  .hero {
    
    padding:0.3rem;
    
  }

  .hero .hero-content{
    justify-content: space-between;
    align-items:center;
    gap:1.8rem;

  }

  .hero .hero-content h1{
    line-height:1;
    font-size:1.8rem;
    
  }

  .hero .button{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:.5rem;
  
  }

  .hero-content p{
    font-size:.9rem;
  }

  .hero-content .btn {
    background:var(--secondary-color);
    color:var(--black);
  }

  .hero-content .btn2{
     background:var(--secondary-color);
    color:var(--black);
    margin:0 0rem;
    padding:0.8rem 1.3rem;
    
  } 

  
.hero .hero-show img{
  width:100%;
  border-radius:0.5rem;
}
  
  .hero-show {
      width: 100%;
      max-width: 700px;
      height: 400px;
      overflow: hidden;
      position: relative;
      margin: auto;
    }

    .hero-show img {
      width: 100%;
      height: 100%;
      position: absolute;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-show img.active {
      opacity: 1;
      z-index: 1;
    }


.about-container{
   top:-4rem;
}

 .slider{
  height: 85%;
 }

 .slide{
  gap:0;
 }

 
    .slide-content {
      flex: 1;
    }

.dots {
    display: none;
  }
nav{
    padding: 1rem;
    display: flex;

}

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

.ham-menu span{
    height: 4px;
    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);
}

.about-section1 {
  background-size:50%;
   padding: 4rem 0rem;
}

  .about-content {
    padding: 1.5rem;
    
  }

  .about-content h2 {
    font-size: var(--font-md);
  }

  .about-content p {
    font-size: var(--font-sm);
    text-shadow: .1px .1 .1px rgba(253, 251, 251, 0.336)
  }

  .about-corner {
    width: 80px;
    height: 80px;
  }



  .slide {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .slide-image {
    margin-top: 2rem;
  }

  .slide-image img {
    max-width: 100%;
    height: auto;
    box-shadow: var(--box-shadow);
  }

  .dots {
    bottom: 1rem;
  }

  .dot {
    width: 0.8rem;
    height: 0.8rem;
  }
  .about-corner {
    z-index:-2;
}


  .product-card img {
    height: 180px;
  }

  #requestPopup{
    top:50%; left:40%;
  }

  
  .section-title {
    font-size: 2rem;
  }
  .icon-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  
.contact-section {
  background-color: var(--primary-color);
  padding: 0rem 1rem;
  color: var(--primary-color);
}

  
  .msg {
    flex-direction: column;
     
  }

  .msg form{
     padding: 1rem;
     flex: 1 1 200px;
     width:100%;
    
  }

  .msg form h3{
     align-self:center;
  }



  .contact-info-horizontal {
    flex-direction: column;
    align-items: center;
  }

  .contact-section h2 {
  font-size: var(--font-lg);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

  .contact-item {
    width:100%;
  }
  #message{
   
    height:10rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}




@media (max-width:390px){

html{
  font-size:82%;
}
}

@media (max-width:375px){

  hero{
    padding:.5rem .7rem;
  }
  .hero-content{
    max-height:44%;
    margin-top:6.5rem;
    padding:2rem .6rem;
    gap:1rem;
   
  }

  .hero-content .btn, .hero-content .btn2{
 padding: 0.8rem .5rem;
  }
}

@media (max-width:345px){
  .hero{

    margin-top:1rem;
    padding:1rem 0rem;
    gap:0;
  }

  .hero-content h1{
    font-size :0.4rem;
    
  }
   

  
  .hero-content .btn, .hero-content .btn2{
 padding: 0.5rem .2rem;
  }

  
html{
  font-size:70%;
}
}

@media (max-width:320px){
  

}

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