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

/* cmn-class */
.container {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.logo {
  display: block;
  width: 172px;
  background: transparent;
  
}


h1,
.heading-1 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}

h2,
.heading-2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}

h3,
.heading-3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: capitalize;
}


p {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 20px;
  color: black;
  line-height: 1.2;
}

span {
  display: block;
  font-size: 18px;
  color: #2b0aff;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
}
.cmn-gap{
  padding: 70px 0;
}
body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.cmn-btn {
  display: inline-block;
  background-color: #2b0aff;
  color: white;
  padding: 15px 18px;
  border: 1px solid black;
  border-radius: 8px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.cmn-btn:hover {
  background-color: white;
  color: #2b0aff;
}

.outline-btn {
  background-color: white;
  border: 1px solid black;
  color: black;
}
.outline-btn:hover {
  background-color:  #2b0aff;
  color: white;

}
/* header */
.header {
  position: absolute;
  top: 0;
  width: 100%;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

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

.nav-links li {
  margin-right: 40px;
  font-size: 18px;
  font-weight: 200;
}

.nav-links li a {
  display: block;
  color: white;
  text-transform: capitalize;
}

.nav-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  padding: 5px;
  background-color: white;
  border-radius: 25px;
  border: 2px solid #475569;
  padding: 4px 10px;
  
}
.search-bar form {
    display: flex;
    width: 100%; /* Important for stretching */
}

.search-bar input {
    border: none;
    outline: none;
    padding: 6px 12px;
    width: 100%; /* Take up all available space */
    flex-grow: 1; /* Allow it to grow */
}

.search-bar button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px 15px; /* Added padding to button for size */
    flex-shrink: 0; /* Prevents button from shrinking */
}
.search-bar i {
    color: black;
}


.right-icons i{
  color: white;
  font-size: 21px;
  padding: 20px;
 
}
.right-icons i.fa-bars {
  display: none;
  font-size: 24px;
  
}

/* header */

/* banner */
.banner {
  background: linear-gradient( to right,  rgba(31, 41, 55, 0.0)),
    url(../image/banner-main-products-img.png) no-repeat center center;
  min-height: 100vh;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: white;
  padding: 80px 0;
}

.banner-child {
  width: 100%;
  text-align: center;

}
.span-text{
  display: block;
  margin: 60px 0 20px 0;
}
.ban-text{
  color: white;
}

/* card */

.card-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cmn-card {
  width: calc(25% - 15px);
  border: 2px solid black;
  border-radius: 8px;
  padding: 5px;
}

.card-img img {
  border-radius: 8px;
}

.card-upper-text {
  margin: 40px 0;
  text-align: center;
}

.card-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.card-lower-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

/* card */


/* grid */

.grid-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  
}

.box {
  border: 1px solid black;
  border-radius: 8px;
  min-height: 350px;
 
}

.box:hover {
  background-color: #2b0aff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.grid-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  padding: 5px;
}

.grid-item-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.quick-pics-upper-text {
  text-align: center;
  margin: 40px 0;
}
.quic-pics-lower-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:60px 0;
}
@media (max-width: 992px) {
  .grid-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

  }
}

@media (max-width: 767px) {
  .grid-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Mobile view (small screen) */
@media (max-width: 576px) {
  .grid-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 320px) {
  .grid-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* grid */


/* whatsapp chat */
.whatsapp-child{
  position:fixed;
  left:16px;
  bottom:18px;
  padding:12px;border-radius:50%;box-shadow:0 8px 24px rgba(2,6,23,0.5);
  background-color: #25D366;
  display:flex;align-items:center;
 
}
.whatsapp-child i{
  background: #25D366;
  color: white;
  border-radius:50%;
  font-size: 30px;

}

.whatsapp-child:hover{transform:scale(1.03);}
/* wahtsapp */

/* footer-section */
.footer-section {
 background: linear-gradient(to bottom ,rgb(0,204,255) , rgb(153,51,255));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 80px 0;
  color: white;

}

.cmn-heading {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.footer-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  /* margin: 0 -15px; */
}

.cmn-footer {
  width: 25%;
  padding: 0 15px;
}

.cmn-footer li a {
  display: block;
  color: white;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 10px;
}
.cmn-footer li a:hover{
  color: yellow;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
}
.footer-links li a {
  display: block;
  margin: 0 10px 0 0;
  background-color: rgb(141, 76, 152);
  padding: 10px;
  border-radius: 50px;  
  color: white;
  font-size: 18px;
  font-weight: 200;
}

.f-para {
  color: white;
  text-align: left;
  margin: 10px 0 20px 0;
}
.cmn-footer .search-bar {
  max-width: 100%;
  margin: 0 0 20px 0; 
}
.footer-search-bar i {
  color: black; 
}
.footer-btm{
  width: 100%;
}
.footer-btm.techverse-text{
  color: white;

}

.footer-btm .copy-right{
  text-align: center;
  font-size: 18px;
  font-weight: 200;
}
.copy-right a{
 color: white;
}

/* footer-section */

/*-- GLOBAL STYLES --*/

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


/* responsive mediaqueries*/


 @media screen and (max-width: 991px) {

  .logo { width: 130px; }
  .search-bar { width: 140px; }
  .nav-links li { font-size: 14px; }
  .right-icons i { font-size: 14px; }


  .banner-child { width: 100%; padding: 20px; text-align: center; }
  .banner h1 { font-size: 50px; }
  .banner p { font-size: 16px; }

  
  .about-child,
  .x-about-child {
    flex-direction: column;
  }
  .about-left, .about-right,
  .x-about-left, .x-about-right {
    width: 100%;
    text-align: center;
  }

  .x-about-img {
    position: static;
    display: flex;
    justify-content: center;
  }
  .x-about-img img {
    width: 220px;
    height: 220px;
    position: static;
  }

  .cmn-card { width: calc(50% - 10px); margin-bottom: 20px; }

  .footer-child { flex-wrap: wrap; }
  .cmn-footer { width: 50%; padding: 10px; }

  .footer4 .search-bar { display: none; }

  .footer-btm { padding-top: 8%; }
} 

@media screen and (max-width: 767px) {

  .nav-links { display: none; }
  .nav-right .search-bar { display: none; }
  .right-icons .fa-user,
  .right-icons .fa-cart-shopping { display: none; }
  .right-icons i.fa-bars { display: block; }

  .logo { width: 100px; }

  h1 { font-size: 40px; }
  p { font-size: 16px; }

  .banner-child { width: 100%; text-align: center; }

  
  .about-child, .x-about-child { flex-direction: column; }
  .about-left, .about-right,
  .x-about-left, .x-about-right { width: 100%; text-align: center; }

  
  .x-about-img {
    position: static;
    display: flex;
    justify-content: center;
  }
  .x-about-img img {
    width: 180px;
    height: 180px;
    position: static;
  }

  
  .cmn-card { width: 100%; margin-bottom: 20px; }

  
  .footer-child { flex-direction: column; }
  .cmn-footer { width: 100%; margin-bottom: 15px; }
}



@media screen and (max-width: 575px) {

  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
  p { font-size: 14px; }

  .nav-links { display: none; }
  .nav-right .search-bar { display: none; }
  .right-icons .fa-user,
  .fa-cart-shopping { display: none; }
  .right-icons i.fa-bars { display: block; }

  .banner-child { width: 100%; text-align: center; }

  
  .cmn-card { width: 100%; margin-bottom: 15px; }

  
  .about-child, .x-about-child { flex-direction: column; }
  .about-left, .about-right,
  .x-about-left, .x-about-right { width: 100%; text-align: center; }

  
  .x-about-left { min-height: auto; margin-bottom: 40px; }

  .x-about-img {
    position: static;
    display: flex;
    justify-content: center;
  }
  .x-about-img img {
    width: 120px;
    height: 120px;
    position: static;
  }

  
  .nav { flex-direction: column; align-items: flex-start; }
  .right-icons { margin-top: 10px; }


  .footer-child { flex-direction: column; }
  .cmn-footer { width: 100%; padding: 0; }
}
 