* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

.top-header {
  width: 100%;
  display: flex;
  background-color: #001233;
  padding: 10px 0px;
}

.mrq-txt {
  background-color: #002855;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  color: white;
  font-size: 1.2em;
  font-weight: 500;
  font-family: "Noto Sans", sans-serif;
  box-shadow: inset 1px 5px 15px rgba(0, 0, 0, 0.8);
}

.mrq-txt span {
  font-family: "DM Sans", sans-serif;
}

.mrq-txt marquee {
  padding: 15px 0px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.contact-detl {
  width: 50%;
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-detl ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contact-detl ul li {
  list-style-type: none;
}

.contact-detl ul li a {
  text-decoration: none;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detl ul li a i {
  padding-right: 10px;
  font-size: 1.5em;
  color: #ffb703;
}

.contact-detl ul li a span {
  font-size: 1.4em;
}

.main-header {
  background-color: #001233;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0px;
  gap: 5px;
}

.logo-cont {
  width: 100%;
}

.logo-cont img {
  width: 100%;
  height: auto;
}

.best-astro-cont {
  width: 100%;
  /* center container */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* slightly larger for breathing space */
  text-align: center;
}

.best-astro-cont h2 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  animation: blk2 0.9s infinite;
}

@keyframes blk2 {
  0% {
    color: #ffffff;
  }

  50% {
    color: #ff6500;
  }

  100% {
    color: #ffffff;
  }
}

.flags {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  justify-items: center;
  align-items: center;
}

.flags img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  /* safety for transparent PNGs */
  padding: 2px;
  /* adds little spacing inside */
}

.cont-3rd {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-items: center;
  align-items: center;
  gap: 2px;
}

.cont-3rd span {
  text-transform: capitalize;
  color: white;
}

.cont-3rd a {
  text-decoration: none;
  font-size: 2.5em;
  font-weight: 900;
  color: white;
  font-family: "DM Sans", sans-serif;
  animation: blk1 0.9s infinite;
}

@keyframes blk1 {
  0% {
    color: #ffcd00;
  }

  50% {
    color: #ffffff;
  }

  100% {
    color: #ffcd00;
  }
}

.cont-3rd .first {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.7em;
  font-weight: 600;
}

.cont-3rd .second {
  color: #29a700;
  font-size: 1.1em;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

.cont-3rd .third {
  color: #ffa200;
  font-size: 1em;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

.lower-header {
  width: 100%;
  background-color: #ffa200;
  padding: 10px 0px;
}

.lower-header p {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  color: #fff;
  animation: blk 0.9s infinite;
  font-family: "Noto Sans", sans-serif;
}

@keyframes blk {
  0% {
    color: #e20000;
  }

  50% {
    color: #000000;
  }

  100% {
    color: #e20000;
  }
}

.hero-cont {
  width: 100%;
  height: auto;
  background-color: #001233;
  overflow-x: hidden;
  padding: 30px;
}

.hero-cont img {
  width: 100%;
  height: auto;
}

.about {
  width: 100%;
  background-color: #001233;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 35px;
  padding: 30px 0px;
}

.about h2 {
  font-size: 2.5em;
  color: #ffa200;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
  font-weight: 600;
}

.english-cont {
  width: 80%;
}

.hindi-cont {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
}

.english-cont p {
  color: #ffff;
  font-size: 1.3em;
  font-family: "DM Sans", sans-serif;
  text-align: justify;
}

.hindi-cont p {
  color: white;
  font-size: 1.2em;
  font-family: "Noto Sans", sans-serif;
  text-align: justify;
}

.quote-main {
  width: 100%;
  background-color: #ffa200;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.quote-left {
  width: 100%;
}

.quote-right {
  width: 100%;
}

.line {
  display: flex;
  flex-direction: column;
  border: 1px solid #001233;
  height: 100px;
  width: auto;
}

.quote-left p {
  color: black;
  font-size: 2em;
  font-weight: 600;
  text-align: end;
  font-family: "DM Sans", sans-serif;
}

.quote-right p {
  color: balck;
  font-size: 1.2em;
  text-align: justify;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.main-svc {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./assests/wallpaperastro.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  background-attachment: fixed;
}

.main-svc h2 {
  font-size: 2em;
  color: #ffff;
  font-weight: 600;
  font-family: "Geologica", sans-serif;
  margin-top: 40px;
}

.main-svc-cont {
  width: 80%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 120px;
  column-gap: 20px;
  margin-top: 80px;
}

.svc-cont {
  width: auto;
  height: auto;
  border: 2px solid #ffff;
  border-radius: 20px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.svc-cont span {
  width: 80%;
  color: white;
  font-size: 1.3em;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  background-color: #001233;
  box-shadow: inset 0px 4px 15px rgba(0, 0, 0, 0.8);
  border: 1px solid white;
  padding: 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-radius: 20px;
  z-index: 10;
}

.svc-content img {
  height: auto;
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  transition: transform 0.4s ease-in-out;
  transform: scale(1);
}

.svc-content p {
  font-size: 1em;
  font-weight: 300;
  text-align: justify;
  padding: 30px 20px;
  color: #ffff;
  font-family: "DM Sans", sans-serif;
}

.svc-cont .abs-btn {
  width: 80%;
  text-decoration: none;
  color: white;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  background-color: #001233;
  box-shadow: inset 0px 4px 15px rgba(0, 0, 0, 0.8);
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 20px 0px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.svc-cont:hover .abs-btn {
  border-radius: 0px 20px;
}

.svc-cont a i {
  padding-right: 10px;
  font-size: 1.2em;
}

.svc-img-cont {
  width: 100%;
  height: 100%;
  position: relative;
}

.hvr-cnt {
  opacity: 0;
  width: 100%;
  height: 0%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  left: 0;
  border-radius: 20px 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

#btn {
  text-decoration: none;
  background-color: #6a040f;
  width: 50%;
  font-size: 1em;
  font-family: "DM Sans", sans-serif;
  border-radius: 50px 50px;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  text-align: center;
  color: white;
  padding: 12px 10px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-cont:hover .hvr-cnt {
  opacity: 1;
  height: 100%;
}

.svc-content:hover img {
  transform: scale(1.1);
}

.svc-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0px 0px;
}

.svc-btm-outer {
  width: 100%;
  height: auto;
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001233;
}

.svc-btm-inner {
  width: 90%;
  height: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(./assests/astro1.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  border-radius: 50px;
  border: 3px solid #ffa200;
}

svc-btm-inner-img-cont {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svc-btm-inner img {
  width: 22vw;
  /* width */
  height: 22vw;
  /* make height equal to width */
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid white;
}

.svc-btm-inner-p {
  color: white;
  font-size: 2em;
  text-align: center;
  font-weight: 800;
  font-family: "Noto Sans", sans-serif;
  animation: blk2 0.9s infinite;
}

.svc-btm-inner-div {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.svc-btm-inner-s1 {
  color: #29a700;
  font-size: 1.2em;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-content: center;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
}

.svc-btm-inner-s2 a {
  text-decoration: none;
  color: white;
  font-size: 3.5em;
  font-weight: 900;
  font-family: "DM Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
    color: #ffcd00;
  }

  50% {
    transform: translatey(-15px);
    color: #ffffff;
  }

  100% {
    transform: translatey(0px);
    color: #ffcd00;
  }
}

.info-div {
  background-color: #ffa200;
  padding: 30px;
  width: 100%;
}

.info-div p {
  font-size: 1.7em;
  color: #fff;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  animation: colorchange 0.9s infinite;
}

@keyframes colorchange {
  0% {
    color: #000000;
  }

  50% {
    color: #e20000;
  }

  100% {
    color: #000000;
  }
}

.awards {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  background-color: #001233;
  padding: 50px 0px;
}

.awards h2 {
  color: #fff;
  font-size: 2.5em;
  font-family: "Geologica", sans-serif;
  font-weight: 700;
}

.awards-img {
  padding-top: 50px;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.award-cont {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 10px solid #ffa200;
  border-bottom: 10px solid #ffa200;
}

.award-cont img {
  width: 100%;
  height: auto;
}

.chat-sec {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(./assests/chat-bg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-top: 5px solid #ffa200;
  border-bottom: 5px solid #ffa200;
}

.chat-left {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 5px;
}

.chat-left h2 {
  color: #ffff;
  font-size: 2.5em;
  font-family: "DM Sans", serif;
  font-weight: 700;
}

.chat-left span {
  color: #ffff;
  font-size: 3em;
  font-family: "DM Sans", serif;
  font-weight: 800;
  animation: float-astro 2s infinite;
}

@keyframes float-astro {
  0% {
    color: #e20000;
    transform: translateY(-15px);
  }

  50% {
    color: #ffa200;
    transform: translateY(0px);
  }

  100% {
    color: #e20000;
    transform: translateY(-15px);
  }
}

.chat-sec a {
  text-decoration: none;
  color: #ffff;
  font-size: 1.7em;
  font-weight: 700;
  font-family: "DM Sans", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: #001233;
  padding: 20px 35px;
  border-radius: 50px;
  border: 2px solid #ffff;
  box-shadow: inset 0px 4px 15px rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease-in-out;
}

.chat-sec a i {
  font-weight: 500;
  font-size: 1.5em;
}

.chat-sec a:hover {
  color: #ffa200;
}

.top-svc {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  background-color: #001233;
  gap: 100px;
  padding: 50px 0px;
}

.top-svc-cont {
  width: 80%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.top-svc-cont a {
  text-decoration: none;
  background-color: #ffa200;
  font-size: 1em;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 25px 0px;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.8);
}

.top-svc-cont .a-odd {
  background-color: #6a040f;
  color: #ffa200;
}

.top-svc-cont a:hover {
  border-radius: 0px 25px;
}

.top-svc h2 {
  color: #ffa200;
  font-size: 2.3em;
  font-family: "Geologica", sans-serif;
}

.footer {
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./assests/footer-bg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
  border-top: 4px solid #ffa200;
}

.footer .cpy-rght {
  color: #ffff;
  font-size: 1.1em;
  font-family: "DM Sans", sans-serif;
  padding-bottom: 60px;
}

.disclaimer {
  width: 90%;
  height: auto;
  background-color: #ffa200;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 5px;
}

.disclaimer p {
  text-align: justify;
  font-size: 1em;
  font-family: "DM Sans", sans-serif;
}

.disclaimer strong i {
  font-size: 0.8em;
}

.disclaimer strong {
  font-size: 1em;
  display: flex;
  color: #e20000;
  font-family: "Geologica", sans-serif;
}

.inner-footer {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-logo-footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 20px;
}

.footer-logo-footer img {
  width: 100%;
  height: auto;
}

.footer-logo-footer p {
  color: #ffa200;
  text-align: justify;
  font-size: 1em;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.footer-choose-us {
  width: 100%;
}

.footer-top-svc {
  width: 100%;
}

.footer-contact {
  width: 100%;
}

.footer-choose-us {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-choose-us h2 {
  color: #ffa200;
  font-size: 1.5em;
  font-family: "Geologica", sans-serif;
}

.footer-choose-us ul li {
  color: #ffff;
  list-style: none;
  font-size: 1em;
  font-family: "DM Sans", sans-serif;
  padding-top: 5px;
  display: flex;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.footer-choose-us ul li:hover {
  transform: translateX(10px);
  color: #ffa200;
}

.footer-contact-us {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: start;
  gap: 20px;
}

.footer-contact-us h2 {
  color: #ffa200;
  font-size: 1.5em;
  font-family: "Geologica", sans-serif;
}


.footer-contact-us .footer-link {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.footer-contact-us .footer-link a {
  text-decoration: none;
  color: #ffff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: transform 0.4s ease-in-out;
}

.footer-contact-us .footer-link a i {
  font-size: 1.3em;
  font-weight: 500;
}

.footer-contact-us .footer-link a:hover {
  transform: translateX(20px);
  color: #ffa200;
}

#fix-btn {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#fix-btn a {
  flex: 1;
  /* make each anchor take equal space */
  text-align: center;
  padding: 12px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#fix-btn a i {
  font-size: 1.7em;
  font-weight: 500;
}

#fix-btn a.call-clk {
  background-color: #e20000;
  /* red */
}

#fix-btn a.whatsapp-clk {
  background-color: #00c915;
  /* green */
}


@media (max-width: 767px) {
  .top-header {
    display: flex;
    flex-direction: column;
  }

  .contact-detl {
    width: 100%;
  }

  .contact-detl ul li a {
    font-size: 3vw;
  }

  .contact-detl ul li a i {
    padding-right: 5px;
  }

  .mrq-txt {
    width: 100%;
    border-radius: 0px;
  }

  .main-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .logo-cont {
    width: 100%;
    height: auto;
  }

  .best-astro-cont {
    width: 100%;
    height: auto;
  }

  .best-astro-cont h2 {
    font-size: 6.5vw;
  }

  .best-astro-cont .flags {
    padding: 0px 10px;
  }

  .cont-3rd {
    width: 100%;
    height: auto;
  }

  .cont-3rd .first {
    font-size: 7.5vw;
  }

  .cont-3rd a {
    font-size: 11vw;
  }

  .cont-3rd .second {
    font-size: 4vw;
  }

  .lower-header p {
    font-size: 5vw;
  }

  .hero-cont {
    padding: 5px;
  }

  .about {
    gap: 20px;
    padding: 25px 0px;
  }

  .about h2 {
    font-size: 6vw;
  }

  .english-cont p,
  .hindi-cont p {
    font-size: 4.3vw;
  }

  .main-svc-cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 100px;
    margin-top: 50px;
  }

  .svc-cont span {
    font-size: 4vw;
  }

  .svc-content p {
    font-size: 3vw;
  }

  .svc-cont .abs-btn {
    font-size: 4.5vw;
  }

  #btn {
    font-size: 3vw;
  }

  .main-svc h2 {
    font-size: 7vw;
    margin-top: 30px;
  }

  .cont-3rd .third {
    font-size: 5vw;
  }

  .svc-btm-outer {
    width: 100%;
    padding: 40px;
  }


  .svc-btm-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .svc-btm-inner img {
    width: 50vw;
    /* width */
    height: 50vw;
    border: 5px solid white;
  }

  .svc-btm-inner-p {
    font-size: 5vw;
  }

  .svc-btm-inner-s1 {
    font-size: 4.5vw;
    text-align: center;
  }

  .svc-btm-inner-s2 a {
    font-size: 8vw;
    text-align: center;
  }

  .info-div p {
    font-size: 4vw;
  }

  .awards {
    padding: 30px 0px;
  }

  .awards h2 {
    font-size: 6vw;
  }

  .awards-img {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 30px;
  }

  .chat-sec {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .chat-left {
    gap: 10px;
  }

  .chat-left h2 {
    font-size: 8vw;
  }

  .chat-left span {
    font-size: 7.5vw;
  }

  .chat-sec a {
    font-size: 4vw;
    padding: 15px 30px;
  }

  .chat-sec a i {
    font-size: 7vw;
  }

  .top-svc {
    padding: 30px 0px;
    gap: 30px;
  }

  .top-svc-cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 30px;
  }

  .top-svc h2 {
    font-size: 6vw;
  }

  .top-svc-cont a {
    font-size: 4vw;
  }

  .footer {
    padding-top: 30px;
    gap: 20px;
  }

  .footer .cpy-rght {
    font-size: 3vw;
    padding-bottom: 80px;
  }

  .footer-logo-footer p {
    font-size: 3vw;
  }

  .inner-footer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-choose-us h2 {
    font-size: 6vw;
  }

  .footer-choose-us ul li {
    font-size: 4vw;
  }

  .disclaimer p {
    font-size: 2vw;
  }

  .footer-contact-us h2 {
    font-size: 6vw;
  }

  .footer-contact-us .footer-link {
    gap: 10px;
  }

  .footer-contact-us .footer-link a {
    font-size: 5vw;
  }

  .disclaimer strong {
    font-size: 2.3vw;
  }

  .quote-main {
    display: flex;
    flex-direction: column;
  }

  .quote-main {
    gap: 20px;
    padding: 40px;
  }

  .quote-left {
    width: auto;
  }

  .quote-right {
    width: auto;
  }

  .line {
    width: 100%;
    height: auto;
    border: 1px solid black;
  }

  .quote-left p {
    font-size: 4.5vw;
  }

  .quote-right p {
    font-size: 3.5vw;
  }

  #fix-btn {
    display: flex;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1068px) {
  .contact-detl ul li a {
    font-size: 1.5vw;
  }

  .best-astro-cont h2 {
    font-size: 2vw;
  }

  .cont-3rd .first {
    font-size: 2vw;
  }

  .cont-3rd a {
    font-size: 3.5vw;
  }

  .cont-3rd .second {
    font-size: 1.4vw;
  }

  .lower-header p {
    font-size: 2vw;
  }

  .hero-cont {
    padding: 10px;
  }

  .about {
    gap: 30px;
  }

  .about h2 {
    font-size: 4vw;
  }

  .english-cont p {
    font-size: 2vw;
  }

  .hindi-cont p {
    font-size: 2vw;
  }

  .quote-main {
    padding: 25px;
  }

  .quote-left p {
    font-size: 3vw;
  }

  .quote-right p {
    font-size: 2vw;
  }

  .main-svc h2 {
    font-size: 4vw;
    margin-top: 30px;
  }

  .main-svc-cont {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-cont span {
    font-size: 2vw;
  }

  .svc-content p {
    font-size: 1.8vw;
  }

  .svc-cont .abs-btn {
    font-size: 2vw;
  }

  #btn {
    font-size: 1.5vw;
  }

  .svc-btm-outer {
    padding: 40px;
  }

  .svc-btm-inner img {
    border: 5px solid white;
  }

  .svc-btm-inner-p {
    font-size: 2vw;
  }

  .svc-btm-inner-s1 {
    font-size: 1.6vw;
  }

  .svc-btm-inner-s2 a {
    font-size: 5vw;
  }

  .info-div p {
    font-size: 2.2vw;
  }

  .awards {
    padding: 30px 0px;
  }

  .awards h2 {
    font-size: 4vw;
  }

  .awards-img {
    padding-top: 30px;
  }

  .chat-left h2 {
    font-size: 3.5vw;
  }

  .chat-left span {
    font-size: 4vw;
  }

  .chat-left {
    gap: 8px;
  }

  .chat-sec a {
    font-size: 2vw;
  }

  .top-svc {
    padding: 30px 0px;
    gap: 30px;
  }

  .top-svc-cont {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    gap: 20px;
  }

  .footer .cpy-rght {
    font-size: 2vw;
    padding-bottom: 30px;
  }

  .disclaimer strong {
    font-size: 1.3vw;
  }

  .disclaimer p {
    font-size: 1.1vw;
  }

  .inner-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo-footer p {
    font-size: 1.3vw;
  }

  .footer-choose-us,
  .footer-contact-us {
    align-items: center;
  }

  .footer-choose-us h2,
  .footer-contact-us h2 {
    font-size: 3vw;
  }

  .footer-choose-us ul li {
    font-size: 2vw;
  }

  .footer-contact-us .footer-link a {
    font-size: 2.3vw;
  }

  .footer-contact-us .footer-link {
    padding-left: 90px;
    margin-top: 10px;
    gap: 15px;
  }
}

@media only screen and (min-width: 1069px) and (max-width: 1340px) {
  .best-astro-cont h2 {
    font-size: 2vw;
  }

  .cont-3rd a {
    font-size: 3vw;
  }

  .cont-3rd .first {
    font-size: 2vw;
  }

  .cont-3rd .second {
    font-size: 1.5vw;
  }

  .cont-3rd .third {
    font-size: 2vw;
  }

  .lower-header p {
    font-size: 2vw;
  }

  .hero-cont {
    padding: 20px;
  }

  .svc-cont span {
    font-size: 1.5vw;
  }

  .svc-content p {
    font-size: 1.3vw;
  }

  .svc-cont .abs-btn {
    font-size: 1.5vw;
  }

  #btn {
    font-size: 1vw;
  }

  .svc-btm-inner-p {
    font-size: 2vw;
  }

  .info-div p {
    font-size: 2vw;
  }

  .top-svc {
    padding: 30px;
    gap: 30px;
  }

  .top-svc-cont {
    width: 100%;

  }

  .top-svc-cont a {
    font-size: 1.1vw;
  }

  .footer-contact-us .footer-link {
    font-size: 1.1vw;
    gap: 15px;

    margin-bottom: 60px;
  }
}