@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

::-webkit-scrollbar{
  width: 0.8em;
  height: 1em;
}

@media (max-width: 768px) {
  .hide-on-mobile {
      display: none;
  }
}

::-webkit-scrollbar-track{
  background: #d1e5ff;
  border-radius: 100vw;
  margin-block: .1em;
}

::-webkit-scrollbar-thumb{
  /* background: #243fe9; */
  background:  linear-gradient(#556bfa, #142384);
  border: 0.1em solid #d1e5ff;
  border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover{
  background:  linear-gradient(#2a2a72c4, #243ee9cd);
}

:root {
  --primary: #046c5c;
  --secondary: #0f2f51;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Navbar start */
.navBar1 {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fullNav {
  height: 79px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.list1 {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  font-size: 16.5px;
}

.navBar1 i,
.navBar2 i {
  /* color: rgb(48, 61, 203); */
  color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list1 a {
  text-decoration: none;
  color: black;
  transition: 0.2s ease all;
}

#logo {
  text-align: center;
  margin-left: 25px;
}
#logo img {
  transform: scale(1.2);
  height: 65px;
}

.list1 a:hover,
.list2 a:hover {
  color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#bt1:hover {
  cursor: pointer;
}

#bt1 {
  padding: 10px;
  font-size: large;
  background-color: rgb(48, 61, 203);
  outline: none;
  border: none;
  border-radius: 5px;
}

#bt1 a,
#mobBT a {
  color: white;
}

.drop1,
.drop2,
.drop5 {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1000;
  top: 100%;
  left: 0;
  margin-top: 5px;
}

.empty {
  display: none; /* Remove the empty div gap */
}

.non-empty {
  background-color: white;
  border: 1.5px solid rgba(128, 128, 128, 0.395);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#services,
#repair,
#language {
  position: relative;
}

#services:hover .drop1,
#repair:hover .drop2,
#language:hover .drop5 {
  display: block;
}

.drop1 li,
.drop2 li,
.drop5 li {
  list-style: none;
  padding: 7px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.drop1 li:hover,
.drop2 li:hover,
.drop5 li:hover {
  background-color: rgba(225, 225, 225, 0.811);
}

.drop1 a,
.drop2 a,
.drop5 a {
  text-decoration: none;
  color: rgb(48, 48, 48);
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile dropdown styles */
.drop3,
.drop4 {
  display: none;
  list-style: none;
  width: 50%;
  margin: auto;
  position: relative;
  z-index: 1000;
}

.drop3 ul,
.drop4 ul {
  list-style: none;
  border: 1.5px solid gray;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.drop3 li,
.drop4 li {
  border-radius: 5px;
  padding: 7px;
  transition: background-color 0.2s ease;
}

.drop3 li:hover,
.drop4 li:hover {
  background-color: rgba(225, 225, 225, 0.811);
}

.drop3 a,
.drop4 a {
  color: #333;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

#up-key1,
#up-key2 {
  display: none;
}
#services:hover #up-key1 {
  display: block;
}
#services:hover #down-key1 {
  display: none;
}
#repair:hover #up-key2 {
  display: block;
}
#repair:hover #down-key2 {
  display: none;
}
#services:hover,
#repair:hover {
  color: blue;
  cursor: pointer;
}

#bt2 {
  display: none;
  padding: 19px;
}
#bt2 button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #c3c3ca;
  border-radius: 5px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#bt2 button:hover {
  border-color: #ff6b00;
}

#bt2 i {
  font-size: 20px;
  color: #ff6b00;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

#mobNavParent {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
}

.navBar2 {
  text-align: center;
  background-color: white;
  padding: 10px 0;
  width: 100vw;
  position: absolute;
  top: 0;
  z-index: 1000;
  display: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: max-height 0.5s ease-in-out;
}

.navBar2.navOpen {
  max-height: 500px;
}

.navBar2.navClose {
  max-height: 0;
}

.navBar2 pre {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list2 {
  list-style: none;
  font-size: 16.5px;
  padding: 0;
  margin: 0;
}

.list2 li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.list2 li:last-child {
  border-bottom: none;
}

.list2 a {
  text-decoration: none;
  display: block;
  color: black;
  padding: 5px 0;
}

/* Language button in mobile */
.list2 .lang-btn {
  width: 90%;
  margin: 5px auto;
  justify-content: center;
  padding: 10px 20px;
}

@media (width <= 1136px) {
  #bt2 {
    display: block;
  }
  .list1 {
    display: none;
  }
}

@media(min-width:1136px) {
  .navBar2 {
    display: none !important;
  }
}

/* Hero start */
.hero-main {
  width: 90%;
  margin: auto;
  max-width: 1500px;
  user-select: none;
  padding: 20px 0;
}
.hero-main-container {
  height: 100%;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}
.hero-content {
  width: 50%;
  padding: 30px;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 3.5rem;
  font-weight: 650;
  color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
.hero-content button {
  position: relative;
  margin: 30px 0;
  width: 150px;
  height: 50px;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 1rem;
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  opacity: 0.9;
  cursor: pointer;
}
.hero-img {
  width: 50%;
  text-align: center;
  z-index: -1;
}
.hero-img img {
  width: 100%;
  height: auto;
  max-width: 550px;
}
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .hero-content {
    width: 100%;
    padding: 5px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 8vw;
  }
  .hero-img {
    width: 100%;
  }
}
/* Particle.js */
canvas {
  display: block;
  vertical-align: bottom;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url('');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles {
  font-size: 1.1em;
}
#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}
#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}
/* Hero End */

/* Service Start */
.services-heading {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
}
.services-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto;
  padding: 15px;
  box-sizing: border-box;
}

.servicesection-image {
  width: calc(31%);
  margin: 20px 0px;
  box-sizing: border-box;
  position: relative;
}


.servicesection-image video {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.servicesection-image:hover video {
  transform: scale(1.1);
  opacity: 1;
}

.servicesection-image img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.servicesection-image:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.servicesection-image h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.servicesection-image p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Chivo', sans-serif;
}

@media (max-width: 1200px) {
  .servicesection-image {
    width: calc(50% - 20px);
  }
  .services-heading {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .servicesection-image {
    width: 100%;
  }
  .services-heading {
    font-size: 30px;
  }
}
/* Service End */

/* Build with quality starts */
.container-buildquality {
  width: 90%;
  margin: 4% auto;
  overflow: hidden; /* Prevent content from overflowing */
}

.content-quality {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping on zoom */
  align-items: center;
  gap: 30px;
  min-width: 0; /* Allow flex items to shrink below content size */
}

.image-quality {
  width: 45%;
  max-width: 600px;
  min-width: 300px; /* Set minimum width to prevent too small video */
  flex-shrink: 0; /* Prevent video from shrinking */
  margin: 0;
}

.image-quality video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-qualitymaterial {
  width: 55%;
  min-width: 300px; /* Set minimum width for text */
  flex: 1; /* Allow text to take remaining space */
  padding: 20px 40px;
}

.text-qualitymaterial h1 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #07021a;
  font-weight: 600;
}
.text-qualitymaterial p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-material {
  position: relative;
  padding: 10px;
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  opacity: 0.9;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
}
.button-material:hover {
  opacity: 1;
}
.button-material > span {
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1024px) {
  .content-quality {
    flex-wrap: wrap; /* Allow wrapping only on smaller screens */
    justify-content: center;
  }

  .image-quality {
    width: 85%;
    margin: 0 auto;
  }

  .text-qualitymaterial {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content-quality {
    gap: 20px;
  }

  .image-quality {
    width: 100%;
  }
}
/* Build with quality ends */

/* Why choose us Start */
.whyChooseUs-section {
  background: url('../img/bg/whychooseus.jpg');
  background-size: cover;
  padding: 0;
  
}
.whychooseus-overlay {
  
  background: rgba(0, 0, 0,0.5);
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 80px;
  transition: 0.6s;
}

.whychooseus-overlay:hover{
   background-color:rgba(0, 0, 0,0.7); 
    
}
.whychooseus-container {
  background-size: cover;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.whychooseus-row {
  display: flex;
  flex-wrap: wrap;
  margin: 40px;
  color: #ffffff;
  letter-spacing: 0.1rem;
}
.whychooseus-block {
  display: flex;
  width: 31.5%;
  margin: 10px;
}
.whychooseus-block i {
  color: #ffffff; 
  padding-right: 8px;
  font-size: 25px;
}
.whychooseus-coloumn h3 {
  font-size: 1.1rem;
  /* font-size: 16px; */
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: normal;
  margin-bottom: 5px;
  font-weight: 550;
  letter-spacing: 0.01rem;
}
.whychooseus-coloumn p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 0.099rem;
}
.whychooseus-coloumn hr {
  margin-top: 10px;
  width: 30%;
  /* color: #0f0135; */
  border: none;
  border-radius: 5px;
  height: 3px;
  background-color: white;
}

@media (max-width: 1250px) {
  .whychooseus-block {
    width: 30%;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .whychooseus-block {
    width: 100%;
  }
}
/* why choose us end */

/* General Info Start */
.general-info {
  width: 90%;
  margin: 7% auto 3% auto;
}
.general-info-row {
  display: flex;
  flex-wrap: wrap;
}
.general-info-card {
  width: 24%;
  margin: auto;
  height: 250px;
  border: 1px solid rgba(0, 0, 0, 0.317);
  border-radius: 10px;
  box-shadow: 2px 5px 10px 2px rgba(0, 0, 0, 0.17);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.general-info-card:hover {
  transform: scale(1.05) !important;
}
.general-info-icon {
  font-size: 4rem;
}
.general-info-content {
  margin-top: 20%;
}
.general-info-content h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width: 1136px) {
  .general-info-card {
    width: 48%;
    margin-bottom: 1%;
  }
}
@media (max-width: 767px) {
  .general-info-card {
    width: 100%;
  }
}
/* General Info End */

/* TALK WITH EXPERT PAGE STARTS  */
.container-expert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-1 {
  display: flex;
  margin-left: 28%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  background-color: white;
  padding: 20px;
}

.image-1 {
  flex: 1;
  margin-right: 20px;
  height: 450px;
  width: 100%;
  max-width: 400px;
}
.text-contact {
  width: 70%;
}
.text-contact h1 {
  flex: 1;
  text-align: center;
  font-size: 2.1em;
  line-height: 1.5;
}
.text-contact p {
  flex: 1;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
.button-container {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.button-1 {
  position: relative;
  margin: 30px 0;
  width: 150px;
  height: 50px;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 1rem;
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  opacity: 0.9;
  cursor: pointer;
  margin-right: 20px;
}
.button-1:hover {
  opacity: 1;
}
.button-1> span {
    position: relative;
    z-index: 3;
}
.button-1 i {
  margin-right: 5px;
}
@media screen and (max-width: 805px) {
  .content-1 {
    flex-direction: column;
    width: 100%;
    margin-left: 10px;
  }
  .image-1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .button-container {
    margin-bottom: 10px;
    width: 100%;
    gap: 20px;
    /* margin: auto; */
  }
  .button-container > .button-1{
    margin-right: 0;
    width: 100%;
    max-width: 150px;
  }
}
@media screen and (max-width: 376px) {
  .button-container > .button-1{
    width: fit-content;
    padding: 0 15px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 276px) {
  .button-container {
    flex-direction: column;
  }
  .button-container > .button-1{
    margin: 0;
  }
}
/* TALK WITH EXPERT ENDS  */

/* Testinomials Start */
.testimonials {
  width: 90%;
  margin: auto;
  margin-bottom: 5%;
}
.testinomial-header {
  width: 60%;
  text-align: center;
  margin-bottom: 1%;
}
.testinomial-header h1 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 2.4rem;
  color: #07021a;
  font-weight: 650;
}
.testinomial-header p {
  margin-bottom: 10px;
  margin-top: 0 !important;
  font-family: 'Poppins', sans-serif;
  color: #00000092;
}

.testinomial-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 95%;
  margin: auto;
}
.testinomial-card {
  line-height: 2;
  border-radius: 10px;
  box-shadow: 2px 5px 10px 2px rgba(0, 0, 0, 0.17);
  border: 1px solid rgba(0, 0, 0, 0.276);
  padding: 15px;
}
#testinomial-card-1 {
  grid-row: 1/3;
}
#testinomial-card-2 {
  grid-column: 2/4;
}
#testinomial-card-5 {
  grid-column: -3 / span 2;
}
.testinomial-card-head {
  display: flex;
  align-items: center;
}
.testinomial-card-head img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.testinomial-card p {
  font-family: 'poppins', sans-serif;
  font-size: 0.9rem;
  margin-top: 20px;
}
.testinomial-card-head p {
  margin-top: 0;
}
@media (max-width: 1136px) {
  .testinomial-container {
    grid-template-columns: repeat(3, 1fr);
  }
  #testinomial-card-2 {
    grid-row: 1/2;
  }
  #testinomial-card-5 {
    grid-column: span 3 / span 4;
  }
  .testinomial-header {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .testimonials {
    margin-top: 8%;
  }
  .testinomial-container {
    display: block;
  }
  .testinomial-card {
    margin-top: 10px;
  }
}
/* Testinomial End */

/* Hire us Start */
.hireus-box {
  background-color: #fac213;
  width: 90%;
  height: 200px;
  margin: auto;
  position: relative;
  top: 90px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.17);
}
.hireus-content {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}

.hireus-content button {
  transition: 0.3s all ease;
  position: relative;
  padding: 5px;
  width: 150px;
  height: 50px;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 1rem;
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  opacity: 0.9;
  cursor: pointer;
  margin: 0;
}
.hireus-content button:hover {
  opacity: 1;
}
.hireus-content button > span {
    position: relative;
    z-index: 3;
}
.hireus-content h1 {
  color: rgba(0, 0, 0, 0.719);
  font-size: 2rem;
  /* letter-spacing: 0.1rem; */
}

@media (max-width: 767px) {
  .hireus-content button {
    width: 100px;
  }
  .hireus-content h1 {
    font-size: 1.5rem;
  }
}
/* Hire us End */

/* Faq Start */
.faq {
  width: 80%;
  margin: auto;
}
.faq-block {
  margin: 15px;
  background-color: #f4efef;
  padding: 14px;
  border-radius: 5px;
  font-family: 'poppins', sans-serif;
}
.faq-question {
  font-size: 0.7rem;
  letter-spacing: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.822);
  cursor: pointer;
}
.faq-question i {
  text-align: right;
}
.faq-answer {
  line-height: 1.6;
  font-family: 'poppins', sans-serif;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.show-answer {
  padding: 20px;
  max-height: fit-content;
  opacity: 1;
}

.faq-heading {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #07021a;
  font-weight: 650;
}
/* Faq End */

/* Scroll to top button */

.gotop {
  position: fixed;
  width: 60px;
  height: 60px;
  background: linear-gradient(315deg, #2a2a72 20%, #14227b 20%, #243fe9 60%);
  bottom: 20px;
  right: 10px;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  line-height: 60px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.gotop:hover {
  opacity: 0.9;
}

@media (max-width: 769px) {
  .gotop {
    right: 1rem;
  }
}

@media (max-width: 426px) {
  .gotop {
    right: 1rem;
  }
}
/* chatbot START */
.chatbot-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}
.chatbot-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: linear-gradient(
        45deg,
        #2a2a72 0%,
        #243fe9 74%
    );
    transition: opacity 0.3s ease-out;
    z-index: 2;
    opacity: 0;
}
.chatbot-btn:hover::after {
    opacity: 1;
}
.chatbot-btn > i {
    position: relative;
    z-index: 3;
}
.chat-container {
    position: fixed;
    bottom: 7rem;
    right: 3rem;
    z-index: 3;
    background-color: white;
    border-radius: 1rem;
    height: 0;
    width: 350px;
    box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
    transition: height 0.5s linear;
}
.chat-header {
    border-radius: 1rem 1rem 0 0;
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
    color: white;
    padding: 0.5rem 1rem;
    display: none;
}
.chat-body {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 0;
    overflow-y: auto;
    scroll-behavior: smooth;
}
.user-message {
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
    color: white;
    width: fit-content;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 15px 15px 5px 15px;
}
.bot-message {
    background-color: rgb(210, 210, 210);
    width: fit-content;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 5px 15px 15px 15px;
    align-self: flex-start;
    line-height: 1.3;
}
.chat-faqs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.chat-faqs > div {
    margin-top: 0.5rem;
    border-radius: 10px;
    width: fit-content;
    padding: 0.5rem;
    border-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%) 10%;
    border-width: 1px;
    border-style: solid;
    font-size: 0.8rem;
    cursor: pointer;
}
.chat-faqs > div:hover {
    transform: scale(1.1, 1.1);
}
.chat-form {
    position: relative;
    display: none;
    justify-content: center;
    height: 0;
}
.chat-input {
    width: 90%;
    padding: 0 1rem;
    font: normal 1rem 'Roboto', sans-serif;
    border-radius: 7px;
    border: 1px solid rgb(210, 210, 210);
}
.chat-input:focus, 
.chat-input:active {
    outline: none;
    border: 1px solid rgb(48, 61, 203);
}
.chatform-btn {
    position: absolute;
    right: 2rem;
    top: 0.8rem;
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.show-chat {
    height: 450px;
}

.show-chat .chat-header {
    display: block;
}

.show-chat .chat-body {
    height: 330px;
    padding: 0.5rem 1rem;
}

.show-chat .chat-form {
    display: flex;
    height: 40px;
}
@media (max-width: 500px) {
    .chat-container {
        right: 1rem;
    }
}
@media (max-width: 769px) {
  .chatbot-btn{
    right: 1.5rem;
    bottom: 6.5rem;
  }
}
@media (max-width: 426px) {
  .chatbot-btn{
    right: 1rem;
  }
}
/* chatbot END */

/* Footer START */
.footer {
  background-color: #1c55a416;
  padding: 70px 0;
  padding-top: 160px;
}
.container {
  max-width: 1250px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.footer-col {
  padding: 0 20px;
}
.footer-col h4 {
  font-size: 16px;
  color: #0f0135;
  margin-bottom: 30px;
  line-height: 0.5rem;
  font-weight: 600;
  position: relative;
}
.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-image: linear-gradient(to right,#cde2ff,#1c55a4);
  height: 2.25px;
  box-sizing: border-box;
  width: 50px;
  transition: 0.5s ease-in-out;
  border-radius: 40%;
}

/* hover on heading in footer */

.footer-col h4{
  transition: 0.5s ease-in-out;
 }
 .footer-col h4:hover{
   letter-spacing: 0.25rem;
   cursor: pointer;
 }
 
 .footer-col h4:hover::before {
   background-color:#1c55a4;
   width: 80px;
 }


.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #1d0f44ad;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #0f0135;
  padding-left: 8px;
}
.footer-brand {
  text-align: center;
  width: 36%;
  line-height: 1.5;
  color: #0f0135;
}
.footer-logo {
  width: 100%;
  height: 170px;
  overflow: hidden;
}
.footer-logo img {
  transform: scale(1.7);
  width: 200px;
  height: 200px;
  object-fit: contain;
  /* margin: -150px 0px 0px -150px; */
}
.service {
  width: 23%;
}
.repair {
  width: 18%;
}
.contact {
  width: 23%;
}
.social-links {
  margin-left: 10px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgb(255, 255, 255);
  margin: 10px 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border: 1px solid #0f0135;
  border-radius: 50%;
  color: #0f0135;
  transition: all 0.3s ease;
}

.footer-col .social-links a:nth-child(1):hover {
  color: #ffffff;
  background-color: #4267b2;
  border: none;
}
.footer-col .social-links a:nth-child(2):hover {
  color: #ffffff;
  background: #1da1f2;
  border: none;
}
.footer-col .social-links a:nth-child(3):hover {
  color: #ffffff;
  background: #e1306c;
  border: none;
}
.footer-col .social-links a:nth-child(4):hover {
  color: #ffffff;
  background: #0077b5;
  border: none;
}
.footer-copyright {
  text-align: center;
  margin-top: 20px;
  color: rgba(23, 5, 57, 0.58);
}
.footer-copyright a {
  color: #1d0f44ad;
  transition: all 0.3s ease;
}
.footer-copyright a:hover {
  color: #0f0135;
  padding: 3px;
}
@media (max-width: 920px) {
  .footer-col {
    width: 20%;
    margin-bottom: 30px;
  }

  .footer-brand {
    width: 30%;
  }
  .footer-logo img {
    transform: scale(1.15);
  }

  .footer-col .social-links a {
    margin: 30px 25px 10px 10px;
  }
}
@media (max-width: 767px) {
  .footer-col {
    width: 100%;
  }
  .footer-logo img {
    transform: scale(1.5);
  }
  .footer-col .social-links a {
    margin: 30px 25px 10px 0px;
  }
}
@media (max-width:425px){
  .social-links {
    margin-left: 0px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .footer-col .social-links a{
    margin-right: 0;
  }
}
/* FOOTER END */


.aptForm {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.infoMain {
  width: 140%;
  max-width: 800px;
  /* background: white; */
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
}

.input-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

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

.form-input label {
  font-weight: bold;
  margin-bottom: 5px;
}

.form-input input,
.form-input textarea {
  padding: 10px;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 14px;
}

.form-input textarea {
  resize: none;
  height: 40px;
}

#formBT {
  grid-column: span 3;
  text-align: center;
}

#btn {
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#btn:hover {
  background-color: #243fe9;
}

@media (max-width: 768px) {
  .input-container {
      grid-template-columns: repeat(2, 1fr);
  }

  #formBT {
      grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .input-container {
      grid-template-columns: 1fr;
  }

  #formBT {
      grid-column: span 1;
  }
}

/* Language Button Styles */
.lang-btn {
  position: relative;
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 1rem;
  background-color: #ff0000;
  background-image: linear-gradient(315deg, #ff0000 0%, #c24343 74%);
  opacity: 0.9;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn i {
  font-size: 1.1rem;
  position: relative;
  z-index: 3;
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-btn > span {
  position: relative;
  z-index: 3;
}

@media (max-width: 1136px) {
  .lang-btn {
    margin: 5px auto;
    justify-content: center;
    min-width: 120px;
  }
}

/* Remove old language dropdown styles */
#language,
#language2,
.drop5,
.drop6 {
  display: none;
}

/* Update hover states for all buttons */
.hero-content button:hover,
.button-material:hover,
.button-1:hover,
.hireus-content button:hover,
.lang-btn:hover,
.chatbot-btn:hover,
.chatform-btn:hover {
  opacity: 1;
}


@media (max-width: 768px) {
    .unique-mobile-logo {
      display: block !important;
    }
  }
  @media (min-width: 769px) {
    .unique-mobile-logo {
      display: none !important;
    }
  }


