* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.flexCenter {
  display: flex;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.flexStart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flexEnd {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.flexSpaceBtw {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexCol {
  display: flex;
  flex-direction: column;
}
.flexColCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.flexColStart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.flexColEnd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.container {
  width: 80vw !important;
}
.autoMar {
  margin: 0 auto;
}
.hw {
  height: 100%;
  width: 100% !important;
}
.marL {
  margin-left: 1rem;
}
#main {
  display: flex;
}

@media (width<780px) {
  #main {
    padding: 2rem;
  }
  .container {
    width: 90vw !important;
  }
}
@media (width<450px) {
  .container {
    width: 90vw !important;
  }
}

.toplink {
  height: 3rem;
  width: 100%;
  background: #333333; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #dd1818,
    #333333
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #dd1818,
    #333333
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  /* background-color: #0771e4; */
  display: flex;
  align-items: center;
}
.page-links {
  /* width: 100vw; */
  height: 100%;
}
.page-links a {
  text-decoration: none;
  color: white;
  margin-right: 3rem;
}
.page-links {
  display: flex;
  align-items: center;
}

.page-links a {
  text-decoration: none;
  color: #fff;
  position: relative;
  /* margin: 0 20px;  */
  transition: color 0.3s ease;
}

.page-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}
.page-links a:hover::before {
  width: 100%;
}

/* toplink */
@media (max-width: 768px) {
  .toplink .page-links a {
    font-size: 3vw;
  }
  .page-links {
    padding-left: 5vw;
  }
}

@media (max-width: 480px) {
  .flexStart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .toplink {
    height: 3rem;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .toplink a {
    text-decoration: none;
    color: white;
    margin-right: 1rem;
  }
}

#navbar {
  height: 100%;
  width: 100%;
}

#navbar #logo img {
  width: 10rem;
}

#menu {
  display: flex;
  align-items: center;
}

#menu a {
  text-decoration: none;
  color: #000;
  position: relative;
  margin: 0 20px;
  transition: color 0.3s ease;
}

#menu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease;
}
#menu a:hover::before {
  width: 100%;
}
/* #call {
    background-color: #0771e4;
    padding: .5rem;
    color: #fff;
    border-radius: 10px;
    border:2px #0771e4 solid;
} */
#call {
  background-color: #0771e4;
  padding: 0.5rem 1.5rem;
  color: #fff;
  border-radius: 10px;
  border: 2px #0771e4 solid;
  transition: 0.25s;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.material-symbols-outlined {
  display: inline-block;
  transition: transform 0.3s ease; /* Add a transition for smooth animation */
}

#call:hover .material-symbols-outlined {
  transform: rotate(-130deg); /* Rotate counterclockwise by 120 degrees */
}

#menuBtn {
  display: none;
}
#menuBtn .menuDrop {
  display: none;
}

@media (max-width: 768px) {
  #navbar .flexSpaceBtw {
    display: flex;
    align-items: flex-start;
  }
  #menu {
    display: none;
  }
  #navbar #logo {
    margin-left: 2rem;
    display: flex;
  }
  #navbar #logo .title {
    font-size: 0.51rem;
    display: flex;
    align-items: flex-end;
  }

  #navbar #logo img {
    width: 5rem;
  }
  #menuBtn {
    display: block;
    margin: 0 1vw;
    font-size: small;
    position: relative;
  }
  #menuBtn .menuDrop {
    position: absolute;
    left: -80vw;
  }
}

#hero {
  height: 100vh;
  display: flex;

  /* padding: 2rem 10rem; */
  position: relative;
}

#hero .hero-content {
  padding: 2rem 1rem;
  text-align: center;
}

#hero .hero-heading h1 {
  font-size: 3rem;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
}

#hero .hero-sub {
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
#hero .hero-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero .hero-button #call {
  margin-top: 2vh;
}
#hero .hero-image {
  background-color: black;
  position: relative;
  padding: 2rem 0;
  width: 100%;
  height: 50vh;
}
#hero .hero-image .flash {
  z-index: -10;
  position: absolute;
  background-color: black;
  color: white;
  padding: 0.75vw;
  border-radius: 10px;
}
#hero .hero-image img:nth-child(1) {
  height: 100%;
  width: 40rem;
  /* object-fit: cover; */
  overflow: hidden;
  object-fit: cover;
}
#hero .hero-image img:nth-child(1) {
  /* later */
}
@media (max-width: 768px) {
  /* Tablet and smaller screens */
  #hero {
    padding: 0;
    margin: 0;
  }
  #hero .hero-heading h1 {
    font-size: 36px; /* Further reduce font size for mobile screens */
  }
  #hero .hero-button button {
    font-size: 0.8rem; /* Adjust the button font size for mobile screens */
  }
  #hero .hero-image {
    height: 60vh; /* Further reduce the height for mobile screens */
  }
}

@media (max-width: 480px) {
  /* Mobile screens */
  #hero .hero-heading h1 {
    font-size: 1.5rem; /* Further reduce font size for mobile screens */
  }
  #hero .hero-button button {
    font-size: 0.8rem; /* Adjust the button font size for mobile screens */
  }
  #hero .hero-image {
    height: 50vh; /* Further reduce the height for mobile screens */
  }
}

#theme-wrapper {
  overflow: hidden;
  position: relative;
  background-color: black;
  width: 100%;
}

#theme-wrapper .theme-head {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 3rem 0 0 0;
}
#theme-wrapper .theme {
  /* top: 2rem; */
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: start;
  justify-items: center;
  align-items: center;
  background-color: black;
  height: 90vh;
  /* gap: 5rem; */
}
#theme-wrapper .theme::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  width: 100%;
  /* height: 20vh; */

  border-radius: 50% 50% 0 0/ 100% 100% 0 0;
  transform: scaleX(1.2);
}
#theme-wrapper .theme .thcard {
  position: sticky;
  top: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  width: 100%;
  height: 60vh;
  padding: 5vw;
  margin: 10vh auto;
  flex-shrink: 0;
}
#theme-wrapper .theme .thcard .thleft {
  width: 50%;
  height: 80%;
  background-color: rgb(238, 238, 238);
  border-radius: 10px;
  padding: 3rem;
  color: #fff;
}
#theme-wrapper .theme .thcard .thright {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  /* background-color: yellow; */
  padding: 3rem;
}
#theme-wrapper .theme .thcard .thright .content {
  padding: 3rem;
  /* background-color: aqua; */
  border-radius: 5px;
}
#theme-wrapper .theme .thcard .thright .content .title {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
}
#theme-wrapper .theme .thcard .thright .content .sub {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (width< 868px) {
  #theme-wrapper .container {
    width: 90vw !important;
  }
  #theme-wrapper .theme-head{
    font-size: 3vw;
font-style: normal;
font-weight: 700;
line-height: 145%; 
padding: 1.2vw;
  }
  #theme-wrapper .theme {
    height: auto;
    width: 100%;
  }
  #theme-wrapper .theme .thcard {
    padding: 0;
    justify-content: start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 4vh 0;
  }
  #theme-wrapper .theme .thcard .thleft {
    height: 30vh;
    padding: 0;
    width: 100%;
  }
  #theme-wrapper .theme .thcard .thright {
    padding: 4vw;
    width: 100%;
  }
  #theme-wrapper .theme .thcard .thright .content {
    padding: 0;
  }
  #theme-wrapper .theme .thcard .thright .content .title {
    padding: 0;
    font-size: 5vw;
    font-style: normal;
    font-weight: 600;
    line-height: 145%;
  }
  #theme-wrapper .theme .thcard .thright .content .sub{
    padding-top: 1vh;
    font-size: 3vw;
font-style: normal;
font-weight: 400;
line-height: normal;
  }
  /* 
  #theme-wrapper .theme::before {
    height: 5vh; 
  }
  #theme-wrapper .theme .thcard .thleft{
    height: 30vh;
  }
  #theme-wrapper .theme .thcard .thright .content{
    padding: 0;
  }
  #theme-wrapper .theme .thcard .thleft,
  #theme-wrapper .theme .thcard .thright {
      display: flex;
  } */
}

/* @media (max-width: 480px) {
  #theme-wrapper .theme-head h1 {
    font-size: 1.5rem; 
  }
  #theme-wrapper .theme .thcard{
    flex-direction: column;
    width: 50%;
   }
  #theme-wrapper .theme .thcard .thleft,
  #theme-wrapper .theme .thcard .thright {
    padding: 3rem; 
  }
  #theme-wrapper .theme .thcard .thright .title{
      font-size: medium;

  }
} */

#features {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 3rem;
}
#features .f-heading {
  padding: 2rem 0;
}
#features .f-grid {
  display: grid;
  width: 100%;
  background-color: white;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 60px;
}
#features .f-grid .feature {
  height: 20rem;
  background-color:#0771e4;
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: start;
  align-items: start;
  padding: 20px;
}
#features .f-grid .feature .fhead {
  font-size: 24px;
  color: #fff;
}
.marB {
  margin-bottom: 0.5rem;
}
#features .f-grid .feature .fimg {
  height: 100%;
  width: 100%;
  background-color: #edeceb;
  border-radius: 10px;
}
#features .f-grid .feature:nth-of-type(1) {
  grid-column: 1/6;
}
#features .f-grid .feature:nth-of-type(2) {
  grid-column: 6/9;
}
#features .f-grid .feature:nth-of-type(3) {
  grid-column: 1/5;
}
#features .f-grid .feature:nth-of-type(4) {
  grid-column: 5/9;
}
@media (width<480px) and (width <768px) {
  #features .f-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #features .f-grid .feature {
    height: 15rem;
    width: 300px; /* Adjust the height for smaller screens */
  }
  #features .f-grid .feature:nth-of-type(1) {
    display: flex;
    flex-direction: column;
  }
}

#starter {
  display: flex;
  height: 40vh;
  background-color: #0771e4;
}
#starter .sleft {
  width: 100%;
  height: 100%;
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  /* gap: 20px; */
}
#starter .sleft .form-wrapper {
  height: 100%;
  padding: 1rem 3rem;
  border-radius: 10px;
  /* background: #c31432; 
background: -webkit-linear-gradient(to right, #240b36, #c31432);  
background: linear-gradient(to right, #240b36, #c31432);  */
}
#starter .sleft .sheading {
  color: white;
  font-size: 1.6rem;
  display: flex;
}
#starter .sleft form {
  height: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  row-gap: 2rem;
  padding-top: 1.5rem;
  /* background-color: aquamarine; */
}
#starter .sleft form input {
  width:100%;
  height: 2rem;
  border-radius: 25px;
  border: none;
  padding: 0.5rem 1rem 0.5rem 2rem;
}

#starter .sleft form .formBtn {
  padding: 1rem;
  border-radius: 20px;
  border: none;
  background-color: #243dff;
  color: white;
  font-size: 1rem;
  padding: 0.75rem 3rem;
}

#starter .sright {
  height: 20rem;
  width: 100%;
}
#starter .sright .card {
  background-color: aqua;
  border-radius: 15px;
  height: 100%;
  width: 80%;
}
@media (width<768px){
  .starter{
    flex-direction: column;
  }
  #starter .sright {
    display: none;
  }
  #starter .sleft .sheading{
    font-size: 4vw;
font-style: normal;
font-weight: 600;
line-height: 145%;
  }
  #starter .sleft form .formBtn {
    padding: .75vw;
    border-radius: 20px;
    border: none;
    background-color: #243dff;
    color: white;
    font-size: 1rem;
    padding: 0.75rem 3rem;
  }
}

.QnA {
  background-color: none;
  height: 100%;
  padding: 3rem 0;
}

.faq {
  /* text-align: center; */
  margin-top: 10px;
  /* margin-bottom: 20px; */
}
.question {
  cursor: pointer;
  transition: all 0.3s;
}

.answer {
  background-color: rgb(220, 220, 220);
  padding: 10px;
  pointer-events: none;
  opacity: 0;
  height: 0;
  margin-top: 10px;
  transition: all 0.3s;
}
.display {
  /* border-radius: 20px; */
  color: white;
  opacity: 1;
  height: fit-content;
}
.QnA .more .ques{
  font-style: normal;
font-weight: 600;
line-height: 145%;
cursor: pointer;
}
.QnA .more .number{
  margin: .5vw;
  cursor: pointer;
}
.QnA .more .email{
  margin: .5vw;
  cursor: pointer;
}
@media (width<768px){
  .QnA .more{
     flex-direction: column;
     justify-content: center;
     align-items: start;
  }
  .QnA .more .ques{
    /* font-size: vw; */
    margin: .5vw;
  }
  .QnA .more .number{
    margin: .5vw;
  }
  .QnA .more .email{
    margin: .5vw;
  }
}

#checkout {
  background-color: #f3f3f3;
}
#checkout .chright{
  margin-top: 3vw;
}
#checkout .chleft {
  flex: 1;
}

#checkout .chleft .chcontent {
  /* background-color: #fff; */
  /* padding: 2rem; */
  border-radius: 10px;
  text-align: center;
}

#checkout .chleft .chcontent .heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: start;
}

#checkout .chleft .chcontent .content {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: start;
}


.chright {
  flex: 1;
  height: 50vh;
  /* background-image: url('your-image-url.jpg'); */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #checkout .flexCenter{
        flex-direction: column-reverse;

    }
  .chleft .chcontent {
    padding: 1rem;
  }

  .chleft .chcontent .heading {
    font-size: 2vw;
font-style: normal;
font-weight: 600;
line-height: 145%;
  }

  .chleft .chcontent .content {
    font-size: 1vw;
font-style: normal;
font-weight: 400;
line-height: 145%;
  }

  .chright {
    height: 20px;
    width: 100%;
  }
  .chright .img{
    height: 20vh;
    width: 100%;
  }
}

#stickyCall {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #0771e4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  overflow: hidden; /* Hide the extra content */
  white-space: nowrap;
}

#stickyCall .number {
  display: none;
  margin-left: 10px;
  transition: display 1s ease;
}

#stickyCall:hover {
  display: flex;
  justify-content: center;
  border-radius: 25px;
  padding: 0.3vw;
  background-color: #0771e4;
  width: fit-content;
  transform: translateX(-10px); /* Move the button to the left on hover */
}

#stickyCall:hover .number {
  display: flex; /* Show the number as flex on hover */
  animation: fade-in 0.5s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#stickyCall:hover .material-symbols-outlined {
  transform: rotate(-130deg); /* Rotate counterclockwise by 120 degrees */
}

/* #stickyCall:hover .number{
  display: flex;
} */
@media (max-width: 768px) {
  #stickyCall {
    font-size: 14px; /* Adjust the font size for smaller screens */
  }
}
