/* 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-img1.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: 70%;

}
.span-text{
  display: block;
  margin: 60px 0 20px 0;
}
.main-heading-text{
 color: black;
}
/* about */

.about-left,
.about-right {
  width: 50%;
  padding: 0 20px;
}

.about-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.span-text{
  color: white;
  font-size: 24px;
  font-weight: 500;
}
.ban-text{
  color: white;
}

/* about */
/* 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 */
/* swiper */
/* html,
    body {
      position: relative;
      height: 100%;
    } */

    body {
      /* background:white; */
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
     /*  color: #fff; */
      margin: 0;
      padding: 0;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
/* swiper */
/* 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; */
  background: linear-gradient(rgb(0,204,255) , rgb(153,51,255));
  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 */

/* final-about */

.x-about-left,
.x-about-right {
  width: 50%;
  padding: 0 20px;
}

.x-about-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.x-about-left {
  position: relative;
}

.x-about-img img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
  
}

.x-about-img img:hover {
  transform: scale(1.1);
  /* Zooms the image by 10% on hover */
}

.x-about-img .img1 {
  left: 0;
  top: 30px;
}

.x-about-img .img2 {
  left: 100px;
  top: 0;

}
.x-about-img .img2:hover{
  z-index: 310;
}
.x-about-img .img3:hover{
  z-index: 310;
}
.x-about-img .img1:hover{
  z-index: 310;
}

.x-about-img .img3 {
  left: 200px;
  top: 60px;
}

/*final about */

/* 2. Reverse Layout (Image Right, Text Left) */
.x-about.reverse .x-about-child {
  flex-direction: row-reverse;
}

/* Also reverse the absolute positioning of images in reverse sections */
.x-about.reverse .x-about-img .img1 {
  left: auto;
  right: 0;
  /* Align img1 to the right edge */
}

.x-about.reverse .x-about-img .img2 {
  left: auto;
  right: 100px;
  /* Align img2 to the right, slightly offset */
}

.x-about.reverse .x-about-img .img3 {
  left: auto;
  right: 200px;
  /* Align img3 to the right, slightly more offset */
}

.x-about-left {
  position: relative;
  min-height: 350px;
}
.x-about-upper-text{
 
   text-align: center;
}



/* ENQUIRY FORM */
.enquiry-form-section {
  padding: 80px 0;
  background-color: #f0f5ff;
  text-align: center;
}

.enquiry-form-section h3 {
  margin-bottom: 40px;
}

.enquiry-form-child {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1f2937;

}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2b0aff;
  box-shadow: 0 0 0 3px rgba(43, 10, 255, 0.2);
}

.form-actions {
  margin-top: 10px;
  text-align: center;
}

.form-actions .cmn-btn {
  padding: 14px 30px;
  border: none;
   cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  /* Make button full width for simplicity */
}
/* enquiry form */

/* 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;
 
}

.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;
  text-transform: capitalize;
}
.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) {

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

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

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

 
  

  

/*-- RESPONSIVE MEDIA QUERIES-- */
/* 
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .banner h1 { font-size: 60px; }
  .nav-links li { margin-right: 30px; }
  .cmn-card { width: calc(25% - 10px); }
  .logo { width: 150px; }
  .search-bar{width: 200px;}
  .nav-links li{font-size: 18px;}
  .right-icons i{font-size: 18px;}

}



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

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


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

  .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; text-align: center; }
  .cmn-footer { width: 50%; padding:0 10px; }
  .footer1{
    width: 100%;
    margin-bottom: 20px;
  }
  .footer2, .footer3, .footer4{
    width: 33.33%;
    padding: 0 20px;
     margin-bottom: 20px;
  }
  .footer4 .search-bar{
    display: none;
  }
  .footer-btm{
    padding-top: 10%;
;
  }
  
}
 

@media screen and (min-width: 576px) and (max-width: 768px) {
  
  .banner-child { width: 100%; padding: 15px;text-align: center;}
  .nav-links{display: none;}
  .nav-right .search-bar{display: none;}
  .right-icons .fa-user,.fa-cart-shopping{display: none;}

  .logo { width: 100px; }
  .nav-links li{font-size: 16px;}
  .right-icons i{font-size: 16px;}


  .right-icons i.fa-bars { display: block; }
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  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: 180px; height: 180px;position: static; }
  .cmn-card { width: 100%; margin-bottom: 15px;}
  .cmn-card p{flex-direction: column};
  .cmn-footer { width: 100%; margin-bottom: 15px ; padding: 5px 20px; }
  
}
 .footer1{
    width: 100%;
    margin-bottom: 20px;
  }
  .footer2, .footer3, .footer4{
    width: 30%;
    padding: 0 20px;
     margin-bottom: 20px;
  }
.footer4 .search-bar{
    display: none;
  }
.cmn-footer .cmn-heading{
 font-size: 20px;
}
.cmn-footer li a{
 font-size: 13px;
}
.f-para{
  text-transform: capitalize;
 font-size: 14px;
}
.copy-right{
 font-size: 14px;
}

@media screen and (min-width: 320px) and (max-width: 575px) {
  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  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; }
  .span-text{padding: 50px;}
  

  .banner-child { width: 100%; text-align: center; }
  .banner h1 { font-size: 30px; }
  .banner h2 { font-size: 22px; }
  .banner p { font-size: 14px; }

  .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; }
  .search-bar { width: 100%; margin: 10px 0; }
  .footer-child { flex-direction: column; text-align: center; }
  .cmn-footer { width: 100%; margin-bottom: 20px;  padding: 0;}
  .cmn-btn { padding: 10px 14px; font-size: 14px; }
}
 */ 

 


  