@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

:root {
  --primary: #052525;
  --secondary: #0a3c3c;
  --accent: #2fa39a;
  --light: #e6f7f5;
  --dark: #011111;
  --gradient-1: linear-gradient(135deg, #052525 0%, #0a3c3c 50%, #2fa39a 100%);
  --gradient-2: linear-gradient(90deg, #011111 0%, #052525 40%, #2fa39a 100%);
}

header {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #052525;
}

.logo img {
  width: 250px;
  padding: 0px 5px;
}

.nav_links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: larger;
  font-weight: 600;
  gap: 25px;
}

.nav_links li {
  list-style: none;
  position: relative;
}

.nav_links li a {
  text-decoration: none;
  color: white;
}

i {
  cursor: pointer;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 200;
}

.icons i {
  color: white;
  font-size: larger;
  padding-right: 50px;
}

.hamburger {
  display: none;
}

.lines {
  width: 25px;
  background-color: white;
  height: 3px;
  margin: 5px;
}

header nav ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -8px;
}

header nav ul li a:hover::after {
  width: 100%;
  background-color: white;
}

.page {
  position: relative;
}

.drop_menu {
  display: none;
}

.drop_menu1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: -65px;
  padding: 10px 6px;
  background-color: teal;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

@media screen and (max-width: 1200px) {
  .nav_links {
    font-size: large;
  }
}

@media screen and (max-width: 1150px) {
  .nav_links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .icons i {
    padding-right: 5px;
  }
}

/* ---------------------------------------------------------------------------- */

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  transition: 1s;
  padding-top: 20px;
  margin-top: 10vh;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 15px;
  position: relative;
}

.sidebar ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.sidebar ul li div span {
  color: var(--accent);
  text-decoration: none;
}

.flexdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sidebar ul li a:hover {
  color: #f1f1f1;
}

.sidebar ul li .submenu {
  list-style: none;
  padding-left: 15px;
  /* max-height: 0; */
  overflow: hidden;
  display: none;
}
.sidebar ul li .submenu2 {
  padding-left: 15px;
  display: none;
}
.submenu1 {
  padding-left: 15px;
  display: block;
}

/* Close button */
.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
  color: var(--accent);
}

/*------------------------------------------------------------------*
/* CTA Button */
.cta-button {
  background: #00b8a9;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #009e91;
}

/* Login Section */
.anchor {
  text-decoration: none;
}

.user-para {
  font-size: large;
  color: #e6f7f5;
  padding: 5px;
  margin: auto;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(47, 163, 154, 0.1);
  border-color: rgba(47, 163, 154, 0.2);
  transition: 0.3s ease;
}

.nav-links a.active {
  color: #f2f9f8;
  background: var(--gradient-1);
  border-color: #138a8a;
}

#menu {
  background-color: (5, 37, 37, 0.85);
  display: none;
  font-size: 32px;
  fill: #e6f7f5;
  padding-right: 40px;
  cursor: pointer;
}

#user {
  width: 120px;
  font-size: x-large;
  display: flex;
  color: #e6f7f5;
}

.anchor {
  text-decoration: none;
}

aside > .menu-nav {
  display: none;
}

.aside1 > .menu-nav {
  display: flex;
  flex-direction: column;
}
.menu-nav {
  margin-top: 80px;
  width: 50%;
  padding: 30px;
  border-radius: 30px;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
  background-color: #107575;
}

#img {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

#img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradientcircle(
    rgba(47, 163, 154, 0.15) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: 0;
}

.network-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.network-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(47, 163, 154, 0.5),
    transparent
  );
  height: 1px;
  transform-origin: left center;
}

.network-line:nth-child(1) {
  width: 200px;
  top: 20%;
  left: 10%;
  transform: rotate(25deg);
  animation: pulseLine 4s ease-in-out infinite;
}

.network-line:nth-child(2) {
  width: 150px;
  top: 40%;
  right: 20%;
  transform: rotate(-45deg);
  animation: pulseLine 4s ease-in-out infinite 1s;
}

.network-line:nth-child(3) {
  width: 180px;
  bottom: 30%;
  left: 30%;
  transform: rotate(60deg);
  animation: pulseLine 4s ease-in-out infinite 2s;
}

.network-line:nth-child(4) {
  width: 220px;
  top: 60%;
  right: 15%;
  transform: rotate(-20deg);
  animation: pulseLine 4s ease-in-out infinite 3s;
}

.network-line:nth-child(5) {
  width: 160px;
  bottom: 20%;
  right: 35%;
  transform: rotate(40deg);
  animation: pulseLine 4s ease-in-out infinite 1.5s;
}

.network-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #2fa39a;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(47, 163, 154, 0.5);
}

.network-dot:nth-child(6) {
  top: 20%;
  left: 10%;
  animation: dotPulse 3s ease-in-out infinite;
}

.network-dot:nth-child(7) {
  top: 40%;
  right: 20%;
  animation: dotPulse 3s ease-in-out infinite 0.5s;
}

.network-dot:nth-child(8) {
  bottom: 30%;
  left: 30%;
  animation: dotPulse 3s ease-in-out infinite 1s;
}

.network-dot:nth-child(9) {
  top: 60%;
  right: 15%;
  animation: dotPulse 3s ease-in-out infinite 1.5s;
}

.network-dot:nth-child(10) {
  bottom: 20%;
  right: 35%;
  animation: dotPulse 3s ease-in-out infinite 2s;
}

.network-dot:nth-child(11) {
  top: 35%;
  left: 25%;
  animation: dotPulse 3s ease-in-out infinite 2.5s;
}

.network-dot:nth-child(12) {
  bottom: 40%;
  right: 25%;
  animation: dotPulse 3s ease-in-out infinite 0.8s;
}

.network-dot:nth-child(13) {
  top: 15%;
  left: 60%;
  animation: dotPulse 3s ease-in-out infinite 1.2s;
}

.network-dot:nth-child(14) {
  bottom: 50%;
  left: 15%;
  animation: dotPulse 3s ease-in-out infinite 2.8s;
}

.network-dot:nth-child(15) {
  top: 70%;
  left: 45%;
  animation: dotPulse 3s ease-in-out infinite 0.3s;
}

.network-dot:nth-child(16) {
  top: 25%;
  right: 40%;
  animation: dotPulse 3s ease-in-out infinite 1.8s;
}

.network-dot:nth-child(17) {
  bottom: 15%;
  left: 55%;
  animation: dotPulse 3s ease-in-out infinite 2.3s;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* Inner Peace Animated Background */
.peace-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.breathing-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 163, 154, 0.1) 0%,
    transparent 70%
  );
  animation: breathe 8s ease-in-out infinite;
}

.breathing-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.breathing-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.breathing-circle:nth-child(3) {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.breathing-circle:nth-child(4) {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 25%;
  animation-delay: 6s;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.zen-stone {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(47, 163, 154, 0.2) 0%,
    transparent 60%
  );
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.zen-stone:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.zen-stone:nth-child(2) {
  top: 70%;
  right: 10%;
  animation-delay: 5s;
}

.zen-stone:nth-child(3) {
  bottom: 30%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) translateX(20px) rotate(120deg);
  }

  66% {
    transform: translateY(20px) translateX(-20px) rotate(240deg);
  }
}

.mandala-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

.mandala-circle {
  position: absolute;
  border: 2px solid rgba(242, 249, 248, 0.9);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

.mandala-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-duration: 60s;
}

.mandala-circle:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-duration: 50s;
  animation-direction: reverse;
}

.mandala-circle:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-duration: 40s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.intro {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  padding: 30px 10px;
  overflow-x: hidden;
}

.about-img1 {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 30px;
}

.about-img {
  width: 100%;
  object-fit: cover;
  height: 500px;
  padding: 10px;
  border-radius: 10%;
  background: linear-gradient(
    270deg,
    var(--accent),
    var(--secondary),
    var(--primary)
  );
  background-size: 100% 100%;
  animation: borderMove 5s infinite;
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.about-contents {
  margin: auto;
  padding: 30px;
  overflow-x: hidden;
}

.contents-head {
  font-size: xx-large;
  font-weight: bold;
  overflow-x: hidden;
}

.contents-para {
  font-size: larger;
  text-align: justify;
  text-transform: capitalize;
  overflow-x: hidden;
}

.img-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.img-content h1 {
  font-size: 40px;
  color: rgba(242, 249, 248, 0.9);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-align: center;
}

.img-content h2 {
  font-size: 28px;
  color: rgba(242, 249, 248, 0.9);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-align: center;
}

.img-content p {
  font-size: 1.3rem;
  color: rgba(242, 249, 248, 0.9);
  /* light teal/white for contrast */
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  text-transform: capitalize;
}

.img-content p {
  font-size: 1.3rem;
  color: rgba(242, 249, 248, 0.9);
  /* light teal/white for contrast */
  width: 100%;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

li {
  list-style: none;
}

.cta-button {
  display: inline-block;
  padding: 20px 15px;
  background: #2fa39a;
  color: #f2f9f8;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(47, 163, 154, 0.3);
  /* subtle teal glow */
}

.cta-button:hover {
  transform: translateY(-3px);
  background: #138a8a;
  /* darker accent teal */
  box-shadow: 0 15px 40px rgba(47, 163, 154, 0.5);
  /* teal glow */
  color: #f2f9f8;
  /* ensure text stays readable */
  transition: all 0.3s ease;
}

.animate {
  padding: 20px;
  overflow-x: hidden;
}

.a-img1 {
  display: flex;
  padding: 10px;
  background-color: #1a4747;
  /* muted teal-green */
  margin-top: 20px;
  color: #e6f7f5;
  overflow-x: hidden;
  /* light text for contrast */
}

.a-img2 {
  margin-top: 20px;
  display: flex;
  padding: 10px;
  background-color: #1a4747;
  /* muted teal-green */
  color: #e6f7f5;
  /* light text for contrast */
}

.a-img3 {
  margin-top: 20px;
  display: flex;
  padding: 10px;
  background-color: #1a4747;
  /* muted teal-green */
  color: #e6f7f5;
  /* light text for contrast */
}

.img-content1,
.img-content2,
.img-content3 {
  text-transform: capitalize;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vd1,
.vd3 {
  overflow-x: hidden;
}

.vd2 {
  overflow-x: hidden;
}

.r-home {
  /* width: 100%; */
  height: auto;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px;
  gap: 10px;
  overflow-x: hidden;
}

.r-content {
  padding: 10px;
  display: flex;
  flex-basis: 250px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: #1a4747 2px solid;
  border-radius: 5%;
  text-align: center;
  animation: colorchange 4s linear infinite;
  transition: transform 0.5s;
}

@keyframes colorchange {
  0% {
    background-color: #2fa39a;
  }

  100% {
    background-color: #107575;
  }
}

.r-img {
  width: 60px;
  height: 60px;
  position: relative;
}

.r-content:hover {
  transform: scale(1.05);
  background-color: #0a3c3c;
  color: #e6f7f5;
  animation-play-state: paused;
}

.image {
  width: 50px;
  height: 50px;
}

/*Home Pages Service */
.service-pg {
  width: 100%;
  height: auto;
  padding: 30px;
}

.service-header {
  color: #138a8a;
  text-align: center;
  font-size: xx-large;
  font-weight: 600;
  padding: 10px;
  margin-top: 10px;
}

.boxes {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 50px;
}

.service-sections img {
  height: 400px;
  width: 100%;
}

.services {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  /* padding: 30px; */
}

.service-sections {
  width: 100%;
  object-fit: cover;
  display: flex;
  border: #052525 2px solid;
  padding: 5px;
  border-radius: 10px;
}

.service-sections:hover {
  transform: scale(1.05);
}

.service-sub {
  font-size: larger;
  text-align: center;
  padding: 5px;
  color: #107575;
  font-weight: 600;
  margin-top: 5px;
}

footer {
  height: 100%;
  text-align: center;
  color: var(--light);
  opacity: 0.8;
}

.footer-parent {
  display: grid;
  grid-template-columns: auto auto auto auto;
  background: rgba(5, 37, 37, 0.85);
  object-fit: cover;
  margin-top: 20px;
}

.set1 {
  padding: 10px;
}

.logo1 {
  height: 80px;
  object-fit: cover;
}

.set2 {
  padding: 20px;
  text-align: center;
}

.footer-header {
  color: var(--accent);
}

.footer-li {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.footer-li a {
  margin-top: 5px;
  text-decoration: none;
  color: #f2f9f8;
  padding: 5px;
}

.footer-li a:hover {
  color: #2fa39a;
}

.set3 {
  padding: 20px;
  text-align: center;
}

.footer-para {
  color: #f2f9f8;
}

.set4 {
  padding: 20px;
  text-align: center;
}

.set4 .footer-para {
  color: #f2f9f8;
  line-height: 2;
}

.svg {
  margin-top: 5px;
  padding: 2px;
  width: 40px;
  height: 40px;
  fill: #f2f9f8;
}

.svg:hover {
  fill: var(--accent);
}

/* ------MEDIA QUERY-------*/
/* Home Page*/

/* Enlarge System */

@media screen and (max-width: 2561px) {
  .img-content > h1 {
    font-size: 46px;
  }

  .img-content > h2 {
    font-size: 38px;
  }

  .contents-head {
    font-size: 36px;
  }

  .contents-para {
    font-size: 24px;
  }

  .vd1,
  .vd3 {
    margin: 20px;
    padding: 20px;
  }

  .a-img1,
  .a-img3 {
    margin: 20px;
    padding: 20px;
  }

  .a-img2 {
    margin: 20px;
    padding: 20px;
  }

  .vd2 {
    margin: 20px;
    padding: 20px;
  }

  .a-img1 > .img-content1 {
    font-size: 28px;
  }

  .a-img2 > .img-content2 {
    font-size: 28px;
  }

  .a-img3 > .img-content3 {
    font-size: 28px;
  }

  .r-home {
    height: fit-content;
  }

  .r-content {
    font-size: 24px;
  }

  .service-header {
    font-size: 38px;
  }

  .boxes {
    margin-top: 10px;
  }

  .service-content > .service-sub {
    font-size: 28px;
  }

  .service-content > p {
    font-size: 24px;
  }

  .footer-header {
    font-size: 32px;
  }

  .logo1 {
    width: 250px;
  }

  .set1,
  .set2,
  .set3,
  .set4 {
    font-size: 26px;
  }
}

/* Laptop  L */

@media screen and (max-width: 1441px) {
  #menu {
    display: none;
  }

  .logo {
    width: 280px;
  }

  .nav-links > li > a {
    font-size: 14px;
  }

  .set1 {
    margin-top: 12px;
  }

  .contents-head {
    font-size: 32px;
  }

  .contents-para {
    font-size: 24px;
  }

  .a-img1 > .img-content1 {
    font-size: 24px;
  }

  .a-img2 > .img-content2 {
    font-size: 24px;
  }

  .a-img3 > .img-content3 {
    font-size: 24px;
  }

  .vd1,
  .vd2,
  .vd3 {
    margin: 20px 10px;
  }

  .r-content {
    font-size: 24px;
  }
  .footer-header {
    font-size: 26px;
  }
  .footer-li {
    font-size: 22px;
  }
  .footer-para {
    font-size: 22px;
  }
}

/* Laptop nrml */
@media screen and (max-width: 1105px) {
  #menu {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
  }

  .anchor {
    display: none;
  }
}

@media screen and (max-width: 1125px) {
  .img-content > h1 {
    font-size: 38px;
  }

  .img-content > h2 {
    font-size: 32px;
  }
  .mobile-dropdown .dropdown-menu li a {
    font-size: 12px;
  }

  .nav-links > li > a {
    font-size: 10px;
  }

  .contents-head {
    font-size: 28px;
  }

  .contents-para {
    font-size: 20px;
  }

  .a-img1 > .img-content1 {
    font-size: 16px;
  }

  .a-img2 > .img-content2 {
    font-size: 16px;
  }

  .a-img3 > .img-content3 {
    font-size: 16px;
  }

  .r-content > p {
    font-size: 20px;
  }

  .service-content > .service-sub {
    font-size: 20px;
  }

  .service-content > p {
    font-size: 16px;
  }

  .service-header {
    font-size: 28px;
  }

  .boxes {
    display: grid;
    grid-template-columns: auto auto;
  }

  .footer-parent {
    display: grid;
    grid-template-columns: auto auto;
  }

  .footer-header {
    font-size: 24px;
  }
  .footer-li {
    font-size: 20px;
  }
  .footer-para {
    font-size: 20px;
  }
}

/* Tablet */

@media screen and (max-width: 769px) {
  .nav-links {
    display: none;
  }

  .a-img1 > .img-content1 {
    font-size: 12px;
  }

  .a-img2 > .img-content2 {
    font-size: 12px;
  }

  .a-img3 > .img-content3 {
    font-size: 12px;
  }

  .anchor {
    display: none;
  }

  .r-content > p {
    font-size: 16px;
  }

  #menu {
    display: block;
  }

  .intro {
    display: grid;
    grid-template-columns: auto;
  }

  .boxes {
    display: grid;
    grid-template-columns: auto auto;
  }

  .service-header {
    font-size: 26px;
  }
}

@media screen and (max-width: 790px) {
  .menu-nav {
    width: 65%;
    font-size: 14px;
  }
  .menu-nav > a > .nav-links,
  .user-para {
    font-size: 14px;
  }

  .a-img1,
  .a-img2,
  .a-img3 {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .a-img2 {
    display: flex;
    flex-direction: column-reverse;
    padding: 20px;
  }
}
/* Mobile L*/

@media screen and (max-width: 426px) {
  .img-content > h1 {
    font-size: 26px;
  }
  .mobile-dropdown .dropdown-menu li a {
    font-size: 12px;
  }
  .img-content > h2 {
    font-size: 22px;
  }

  .contents-head {
    font-size: 26px;
    text-align: justify;
    letter-spacing: 0.1px;
  }

  .animate {
    padding: 0px;
    margin: 0px;
  }

  .img-content1,
  .img-content2,
  .img-content3 {
    font-size: 10px;
    padding: 10px;
  }

  .service-pg {
    padding: 12px;
  }

  .service-header {
    font-size: 24px;
    margin-top: 0px;
    padding: 20px;
  }

  .boxes {
    grid-template-columns: auto;
  }

  .footer-header {
    margin-top: 10px;
  }

  .footer-li {
    font-size: 16px;
  }
}

/* Mobile M */

@media screen and (max-width: 376px) {
  .img-content > h1 {
    font-size: 22px;
  }

  .img-content > h2 {
    font-size: 18px;
  }
  .animate {
    padding: 0px;
    margin: 0px;
  }

  .intro {
    padding: 20px 10px 0px 10px;
  }

  .contents-head {
    font-size: 22px;
    text-align: justify;
    letter-spacing: 0.1px;
  }

  .img-content1,
  .img-content3 {
    font-size: 12px;
    padding-left: 10px;
  }
  .contents-para {
    text-align: justify;
    letter-spacing: 0.2px;
    font-size: 18px;
  }
  .a-img2 > .img-content2 {
    padding: 0px;
    font-size: 12px;
  }

  .r-content {
    font-size: 18px;
  }

  .service-pg {
    padding: 12px;
  }

  .service-header {
    font-size: 22px;
    margin-top: 0px;
    padding: 20px;
  }

  .footer-header {
    margin-top: 10px;
  }

  .footer-parent {
    grid-template-columns: auto;
    padding: 0px;
  }

  .footer-li {
    font-size: 14px;
  }

  .set1 {
    padding: 0px;
  }
  .footer-para {
    font-size: 14px;
    padding: 5px;
  }
}

/* Mobile S*/

@media screen and (max-width: 321px) {
  .logo {
    width: 200px;
  }

  .logo1 {
    width: 250px;
  }

  .img-content > h1 {
    font-size: xx-large;
  }

  .img-content > h2 {
    font-size: x-large;
  }

  .intro {
    padding: 20px 10px 0px 10px;
  }

  .about-contents {
    padding: 20px;
  }

  .contents-head {
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0.1px;
  }

  .contents-para {
    font-size: 14px;
    text-align: justify;
  }

  .img-content1,
  .img-content2,
  .img-content3 {
    font-size: 16px;
  }

  .r-content {
    font-size: 16px;
  }

  .service-pg {
    padding: 8px;
  }

  .service-header {
    font-size: 20px;
    margin-top: 0px;
    padding: 16px;
  }

  .footer-parent {
    padding: 0px;
  }

  .footer-header {
    margin: 0px;
    font-size: 20px;
  }

  .set1,
  .set2,
  .set3,
  .set4 {
    padding: 10px;
  }
  .footer-li {
    font-size: 14px;
  }

  .set1 {
    padding: 0px;
  }
  .footer-para {
    font-size: 14px;
    padding: 5px;
  }
  .cta-button {
    padding: 10px;
    font-size: 18px;
  }
}

@media screen and (max-width: 850px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-parent {
    grid-template-columns: auto;
    padding: 30px;
  }

  .footer-li {
    font-size: 16px;
  }
  .footer-para {
    font-size: 18px;
  }
}
