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

::-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: 5px;
}
#logo img {
  transform: scale(1.2);
  height: 75px;
}

.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 {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
  opacity: 95%;
}

.empty {
  height: 20px;
}

.non-empty {
  background-color: white;
  border: 1.5px solid rgba(128, 128, 128, 0.395);
  padding: 10px;
  border-radius: 5px;
  opacity: 95%;
}

.drop1 a,
.drop2 a {
  text-decoration: none;
  color: rgb(48, 48, 48);
}

.drop1 li,
.drop2 li {
  list-style: none;
  padding: 7px;
  border-radius: 5px;
}

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

#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;
}
#services:hover .drop1 {
  display: block;
}
#repair:hover .drop2 {
  display: block;
}

#bt2 {
  display: none;
  padding: 19px;
}
#bt2 button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #c3c3ca;
  border-radius: 5px;
}

#bt2 i {
  font-size: 20px;
}

#mobNavParent {
  position: fixed;
  z-index: 1;
}

.navBar2 {
  text-align: center;
  background-color: white;
  padding: 10px 0;
  width: 100vw;
  position: absolute;
  top: 0;
  z-index: 1;
  display: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navBar2 pre {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navOpen {
  animation-name: mobNav;
  animation-duration: 1s;
}
@keyframes mobNav {
  from {
    height: 0;
  }
  to {
    height: 210px;
  }
}
.navClose {
  animation-name: mobNav2;
  animation-duration: 1s;
}
@keyframes mobNav2 {
  from {
    height: 210px;
  }
  to {
    height: 0px;
  }
}

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

.list2 li {
  padding-top: 8px;
  padding-bottom: 10px;
}

.list2 a {
  text-decoration: none;
  display: block;
  color: black;
}

.drop3,
.drop4 {
  display: none;
  list-style: none;
  width: 50%;
  margin: auto;
}

.drop3 ul,
.drop4 ul {
  list-style: none;
  border: 1.5px solid gray;
  padding: 10px;
  border-radius: 5px;
}

.drop3 li,
.drop4 li {
  border-radius: 5px;
}

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

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

@media(min-width:1136px){
  .navBar2{
    visibility: hidden;
  }
}
/* Navbar end */

/* 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-content button:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.3em;
    background-image: linear-gradient(
        45deg,
        #2a2a72 0%,
        #243fe9 74%
    );
    transition: opacity 0.3s ease-out;
    z-index: 2;
    opacity: 0;
}
.hero-content button:hover:after {
  opacity: 1;
}
.hero-content button > span {
    position: relative;
    z-index: 3;
}
.hero-img {
  width: 50%;
  text-align: center;
  z-index: -1;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@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 */

/* Image Slider Styles */
.image-slider-section {
  width: 100%;
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 500px;
}

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

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2a2a72;
  transition: all 0.3s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #243fe9;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slide {
    height: 300px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.content-quality {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 5px;
}

.image-quality {
  width: 50%;
}

.text-qualitymaterial {
  width: 50%;
  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: 150px;
  height: 50px;
}
.button-material{
  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;
  }
  .button-material:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0.3em;
      background-image: linear-gradient(
          45deg,
          #2a2a72 0%,
          #243fe9 74%
      );
      transition: opacity 0.3s ease-out;
      z-index: 2;
      opacity: 0;
  }
  .button-material:hover:after {
    opacity: 1;
  }
  .button-material > span {
      position: relative;
      z-index: 3;
  }

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

  .image-quality {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .button-material {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .text-qualitymaterial {
    width: 100%;
    text-align: center;
  }
}
/* 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;
  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:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0.3em;
      background-image: linear-gradient(
          45deg,
          #2a2a72 0%,
          #243fe9 74%
      );
      transition: opacity 0.3s ease-out;
      z-index: 2;
      opacity: 0;
  }
  .button-1:hover:after {
    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%;
  }
  .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:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0.3em;
      background-image: linear-gradient(
          45deg,
          #2a2a72 0%,
          #243fe9 74%
      );
      transition: opacity 0.3s ease-out;
      z-index: 2;
      opacity: 0;
  }
  .hireus-content button:hover:after {
    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 Styles */
.faq {
    width: 80%;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-block {
    margin: 1rem 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.faq-block:hover {
    background-color: #f0f2f5;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a2a72;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5rem 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: #2a2a72;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    color: #666;
    line-height: 1.6;
    padding: 0 1rem;
}

.show-answer {
    max-height: 500px;
    opacity: 1;
    padding: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #eee;
}

.faq-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #2a2a72;
    font-size: 2.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq {
        width: 90%;
        padding: 1rem;
    }

    .faq-heading {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        width: 95%;
    }

    .faq-heading {
        font-size: 1.8rem;
    }
}

/* Scroll to top button */

.gotop {
  position: fixed;
  width: 50px;
  height: 50px;
  /* color: #2a2a72; */
  background: linear-gradient(315deg, #2a2a72 20%, #14227b 20%, #243fe9 60%);
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  bottom: 40px;
  right: 50px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
}
@media (max-width: 769px) {
  .gotop{
    right: 1.5rem;
  }
}
@media (max-width: 426px) {
  .gotop{
    right: 1rem;
  }
}
/* chatbot START */
.chatbot-btn {
    position: fixed;
    right: 8rem;
    bottom: 2.5rem;
    width: 50px;
    height: 50px;
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
    border: none;
    border-radius: 50%;
    color: white;
    opacity: 0.9;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-btn i {
    font-size: 1.5rem;
    position: relative;
    z-index: 3;
}

.chatbot-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

.chat-container {
    position: fixed;
    bottom: 7rem;
    right: 3rem;
    z-index: 1001;
    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 ease;
    overflow: hidden;
}

.chat-header {
    border-radius: 1rem 1rem 0 0;
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
    color: white;
    padding: 1rem;
    display: none;
    font-weight: 500;
}

.chat-body {
    display: flex;
    flex-direction: column;
    height: 0;
    padding: 1rem;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.user-message {
    background-color: #2a2a72;
    background-image: linear-gradient(315deg, #2a2a72 0%, #243fe9 74%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 15px 15px 5px 15px;
    margin-bottom: 1rem;
    max-width: 80%;
    align-self: flex-end;
    word-wrap: break-word;
}

.bot-message {
    background-color: #f0f0f0;
    padding: 0.8rem 1.2rem;
    border-radius: 5px 15px 15px 15px;
    margin-bottom: 1rem;
    max-width: 80%;
    align-self: flex-start;
    word-wrap: break-word;
    line-height: 1.4;
}

.chat-form {
    position: relative;
    display: none;
    padding: 1rem;
    border-top: 1px solid #eee;
}

.chat-input {
    width: 100%;
    padding: 0.8rem 3rem 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #2a2a72;
}

.chatform-btn {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #2a2a72;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.chatform-btn:hover {
    color: #243fe9;
}

.show-chat {
    height: 450px;
}

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

.show-chat .chat-body {
    height: 330px;
}

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

@media (max-width: 768px) {
    .chatbot-btn {
        right: 1.5rem;
        bottom: 6.5rem;
    }

    .chat-container {
        right: 1rem;
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 426px) {
    .chatbot-btn {
        right: 1rem;
    }

    .chat-container {
        right: 0.5rem;
        width: 95%;
    }
}
/* 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: 250px;
  overflow: hidden;
}
.footer-logo img {
  transform: scale(1.7);
  width: 200px;
  height: 200px;
  /* 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 */
