* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Roboto", sans-serif;
}
:root {
  --primary: #058b8c;
  --secondary: #522d6e;
  --tertiary: rgba(240, 164, 204, 0.205);
  --tertiary-medium: rgba(240, 164, 204, 0.08);
  --tertiary-light-secondary: rgba(82, 45, 110, 0.4);
  --teriary-red: rgba(220, 53, 70, 0.16);
  --main-text: #373838;
  --secondary-text: #686868;
  --text-white: #ffffff;
  --text-red: #f82121;
  --text-green: #28a745;
  --bglight-green: rgba(40, 167, 69, 0.15);
  --bglight-red: rgba(220, 53, 69, 0.15);
  --text-light: #e5e7eb;
  --text-lightest: #fcfcfc;
  --light-blue: #f5f7fa;
  --medium-blue: #718ebf;
  --placeholder: #898989;
  --dark: #4b5563;
  --light-secondary: rgba(82, 45, 110, 0.03);
  --light-border: #e2e8f0;
}
.primary-gradient {
  background-image: linear-gradient();
}
.custom-container {
  width: clamp(100px, 95%, 1200px);
  margin: 0px auto;
}
.banner-container {
  width: clamp(100px, 92%, 1400px);
  margin: auto;
}
.flex-container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
section {
  width: 100%;
}
.landing {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../images/bg/Section.png") no-repeat center center;
  background-size: cover;
  max-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  z-index: 9999;
}
header.sticky {
  position: fixed;
  top: 0;
  background: #fff; /* change bg so content is visible */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* .nav-link {
  color: var(--text-white);
  font-family: "Roboto";
  font-size: 1rem;
  font-weight: 400;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.nav-link.active {
  font-weight: 600;
  color: var(--text-white) !important;
  font-size: 1.05rem;
}
ul.navbar-nav {
  gap: 20px;
}
.nav-link:focus-visible {
  box-shadow: none;
} */
/* Header */
header .navbar {
  position: relative;
  padding: 10px;
}

/* Logo */
.navbar .logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
}
.navbar .logo img {
  width: 60px;
  filter: brightness(0) invert(1);
  transition: height 0.2s ease-in-out;
}
.sticky .navbar .logo img {
  height: 50px;
  filter: brightness(1) invert(0) !important;
}

/* Menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--text-white);
  padding: 6px 12px;
  display: block;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.2s ease-out;
}
.navbar ul li a.active {
  position: relative;
}
.navbar ul li a.active::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  top: 100%;
  left: 0;
}
.sticky .navbar ul li a.active::after {
  background-color: var(--primary);
}
.sticky .navbar ul li a {
  color: var(--main-text);
}

.sticky .navbar ul li a:hover {
  color: var(--primary);
  background: #07a75a;
  background: linear-gradient(
    90deg,
    rgba(7, 167, 90, 0.05) 0%,
    rgba(5, 141, 136, 0.05) 100%
  );
}
.navbar ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.submenu-toggle {
  display: flex !important;
  align-items: center;
  gap: 7px;
}
.submenu-toggle span img {
  display: inline-block;
  width: 12px;
}
.sticky .submenu-toggle span img {
  filter: brightness(1) invert(1);
  opacity: 0.6;
}
.sticky #mobileMenu .submenu-toggle span img {
  filter: brightness(1) invert(0);
  opacity: 1;
}
/* Dropdown */
.navbar ul li ul {
  position: absolute;
  top: calc(100% + 1px);
  border-radius: 8px;
  left: 0;
  background: var(--text-white);
  border: 1px solid var(--text-light);
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  padding: 0;
  gap: 6px;
}

.navbar ul li ul li {
  width: 100%;
}
.navbar ul li ul li a {
  color: var(--main-text);
  border-radius: 0;
  transition: all 0.05s ease;
}
.navbar ul li ul li a:hover {
  background-color: rgba(7, 167, 90, 0.15);
}
.navbar ul li:hover > ul {
  display: flex; /* hover only on desktop */
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  width: 30px;
  height: 13px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.15s ease-in;
}
.hamburger span:nth-child(2) {
  width: 22px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  width: 22px;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(-45deg) translate(7px, -7px);
  width: 22px;
}
.button-box {
  display: flex;
  gap: 25px;
  align-items: center;
}
.main-border-btn {
  padding: 6px 10px;
  border: 1px solid var(--text-white);
  background-color: transparent;
  border-radius: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-block;
  color: var(--text-white);
  text-decoration: none;
}
.sticky .main-border-btn {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.main-btn {
  padding: 6px 10px;
  border: 1px solid var(--text-white);
  background-color: var(--text-white);
  border-radius: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-block;
  color: var(--text-white);
  text-decoration: none;
}
.sticky .main-btn {
  padding: 6px 10px;
  border: none;
  background: #07a75a;
  background: linear-gradient(
    90deg,
    rgba(7, 167, 90, 1) 0%,
    rgba(5, 141, 136, 1) 100%
  );
  border-radius: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-block;
  color: var(--text-white);
  text-decoration: none;
}
.formrow .main-btn {
  padding: 6px 10px;
  border: none;
  background: #07a75a;
  background: linear-gradient(
    90deg,
    rgba(7, 167, 90, 1) 0%,
    rgba(5, 141, 136, 1) 100%
  );
  border-radius: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-block;
  color: var(--text-white);
  text-decoration: none;
  width: 100%;
}
.formrow .main-btn span {
  background: transparent !important;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  color: var(--text-white) !important;
}
.shine-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Shine Effect */
.shine-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(75, 236, 210, 0.384) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

/* Animate on hover */
.shine-btn:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.main-btn span {
  display: inline-block;
  background: #07a75a;
  background: linear-gradient(
    90deg,
    rgba(7, 167, 90, 1) 0%,
    rgba(5, 141, 136, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.sticky .main-btn span {
  display: inline-block;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
#menu {
  display: flex;
  align-items: center;
}
#mobileMenu {
  display: none;
}
.desktopmenu {
  display: flex;
}
.menu-mobile {
  display: flex;
}
.menu-mobile ul {
  gap: 10px;
  padding-top: 20px;
}

/* Banner  */
.landing {
  padding-top: 120px;
}
.content {
  padding: 60px 0px;
}
.content .subhead {
  color: var(--text-white);
  font-size: 1.75rem;
  margin: 15px 0px;
  font-family: "Akaya Telivigala", cursive;
}
.content .mainhead {
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 50px;
  position: relative;
  padding-bottom: 10px;
}
.content .mainhead::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 10px;
  background-image: url(../images/icon/white-line-two.svg);
  background-repeat: no-repeat;
  background-size: 85%;
  top: 100%;
  left: 0;
}
.content-btn {
  padding: 8px 14px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  border: 1px solid var(--text-white);
}
.content-btn img {
  display: inline-block;
  width: 10px;
  margin-left: 6px;
  transition: all 0.1s ease-in-out;
}
.content-btn:hover img {
  transform: rotate(45deg) translate(2px, -2px);
}
.banner-img {
  position: absolute;
  width: 700px;
  bottom: 0;
  right: 50px;
}
.banner-img img {
  display: inline-block;
  width: 100%;
}
.module-btn-box {
  display: flex;
  gap: 30px;
  padding: 10px;
}
.module-btn {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  text-decoration: none;
}
.module-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--text-white);
  transition: all 0.1s ease-in;
}
.module-btn:hover .module-icon {
  transform: scale(1.01);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.module-icon img {
  display: inline-block;
  width: 30px;
}
.module-btn span {
  display: inline-block;
  color: var(--text-white);
}

/* Service  */
.service {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}
.elements {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.plus:nth-child(1) {
  top: 30px;
  left: 20px;
}
.plus:nth-child(2) {
  top: 40%;
  left: 150px;
}
.plus:nth-child(3) {
  top: 20%;
  left: 30%;
}
.plus:nth-child(4) {
  top: 85%;
  left: 70%;
}
.plus:nth-child(5) {
  top: 60%;
  left: 40%;
}
.plus:nth-child(6) {
  top: 5%;
  left: 90%;
}
.gradient-ball {
  background: radial-gradient(
    circle,
    rgba(58, 181, 242, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 20%;
  right: -80px;
}
.bg-blur {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.service-card-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 999;
  gap: 50px;
}
.service-card {
  width: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgb(243 243 243);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
.service-card .content {
  padding: 40px;
}
.service-card .content .title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--main-text);
}
.service-card .content .desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary-text);
}
.service-card .img {
  display: flex;
  align-items: flex-end;
}
.service-card .img img {
  display: inline-block;
  width: 425px;
}
.achieve {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.achieve-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 5px 20px 0px 5px;
}
.achieve-item::after {
  height: 100%;
  width: 1px;
  background-color: #696969;
  position: absolute;
  content: " ";
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
.achieve-item:nth-last-child(1)::after {
  display: none;
}
.achieve-item img {
  height: 50px;
  filter: brightness(0) invert(0);
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
.achieve-item:hover img {
  filter: brightness(1) invert(0);
  opacity: 1;
}
.achieve-item h6 {
  font-size: 0.875rem;
  color: var(--secondary-text);
}
.rating {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
.rating .rate-item img {
  width: 50px;
}
.service-btn {
  padding: 8px 14px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 0.875rem;
  display: inline-block;
  text-decoration: none;
  color: var(--primary);
  margin-top: 30px;
}
.service-btn img {
  margin-left: 8px;
}
.service-card:nth-child(1) {
  background: #fff;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.5) 48%,
    rgba(5, 139, 140, 0.4) 100%
  );
}
.service-card:nth-child(2) {
  background: rgba(143, 228, 192, 0.02);
  background: linear-gradient(
    60deg,
    rgba(143, 228, 192, 0.4) 0%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 1) 100%
  );
}
.service-card:nth-child(3) {
  background: #d8e3ff;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 46%,
    rgba(216, 227, 255, 0.6) 100%
  );
}
.service-card:nth-child(4) {
  background: #67ccff;
  background: linear-gradient(
    60deg,
    rgba(103, 204, 255, 0.21) 0%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* VIDEOS  */
.videos {
  padding: 70px 0px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title h2 {
  font-size: 2.2rem;
  color: var(--main-text);
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 30px;
}
.section-title h2::after {
  content: " ";
  position: absolute;
  width: 85%;
  height: 8px;
  background: url(../images/icon/gradient-line-two.svg) 100% no-repeat;
  top: 100%;
  left: 0;
}
.section-desc {
  font-size: 1.125rem;
  text-align: center;
  color: var(--secondary-text);
}
.video-card {
  display: flex;
  height: 100%;
  align-items: stretch;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--text-white);
  box-shadow: 0px 1px 3px #0000001a;
}
.video-card .video-thumb {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.video-card .video-thumb iframe {
  display: inline-block;
  width: 100%;
}
.video-content {
  padding: 15px 10px;
}
.video-content .date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-content .date img {
  width: 16px;
  display: inline-block;
}
.video-title {
  font-size: 1.125rem;
  color: var(--main-text);
  margin: 15px 0px;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--text-white); /* button color */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.play:hover .play-btn::before,
.play:hover .play-btn::after {
  display: block;
}
/* triangle play icon */
.play-btn span {
  width: 0;
  height: 0;
  border-left: 20px solid var(--primary);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
  z-index: 2;
  position: relative;
  z-index: 99;
}

/* ripple waves */
.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  display: none;
  border-radius: 50%;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  animation: ripple 1.5s linear infinite;
  opacity: 0.6;
  background-color: rgba(255, 255, 255, 1);
  z-index: -1;
  transition: all 1s ease-in-out;
  transform: scale(0.3);
}

.play-btn::after {
  animation-delay: 0.75s;
}

/* Partner  */
.partner {
  padding: 70px 0px;
  background-color: #f3f6f9;
}
.partners-container {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.logo-row {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 40px;
  padding: 5px 0px;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 50s linear infinite;
}

.logo-row.right-to-left .logo-track {
  animation: scroll-right 50s linear infinite;
}
.logo-card {
  padding: 10px 20px;
  border-radius: 8px;
  background-color: var(--text-white);
  box-shadow: 0px 0px 1px #0000002a;
}
.logo-card img {
  max-height: 165px;
  width: auto;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ABDM BANNER  */
.abdm-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../images/bg/abdm-bg.png") no-repeat center right;
  background-size: cover;
  max-height: 770px;
  display: flex;
  align-items: center;
}
.card-vector {
  position: absolute;
  right: 70px;
  bottom: -50px;
  z-index: 999;
}
.card-vector img {
  height: 150px;
  display: inline-block;
}
.govt-logo-card {
  position: absolute;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -55px;
  box-shadow: 2px 2px 4px #0000003b;
  z-index: 999;
}
.govt-logo-card .logo {
  padding: 0px 20px;
  border-right: 1px solid #8f8f8f;
}
.govt-logo-card .logo:nth-last-child(1) {
  border: none;
}
.govt-logo-card .logo img {
  display: inline-block;
  height: 55px;
  filter: brightness(0) invert(0);
  opacity: 0.6;
  transition: all 0.1s ease-in-out;
}
.govt-logo-card .logo:hover img {
  filter: brightness(1) invert(0);
  opacity: 1;
}
.abdm-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.abdm-content .mainhead {
  font-size: 2.25rem;
  color: var(--text-white);
  font-weight: 700;
}
.abdm-content .subhead {
  font-size: 1.5rem;
  color: var(--text-white);
  font-weight: 400;
  text-align: center;
}
.create-btn {
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--text-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 20px;
}
.abdm-content .app-deatil {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.abdm-content .app-deatil p {
  font-size: 1.5rem;
  color: var(--text-white);
}
.abdm-content .app-deatil .app-img {
  width: 140px;
}
.abdm-content .app-deatil .app-img img {
  display: inline-block;
  width: 100%;
}
.abdm-content .shine-btn::before {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.384) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* About ABDM   */
.about-abdm {
  padding: 70px 0px;
  padding-top: 120px;
  width: 100%;
  position: relative;
  background: url("../images/bg/bg-about-abdm.png") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
}
.about-abdm .title {
  font-size: 1.75rem;
  color: var(--main-text);
  text-align: center;
  font-weight: 600;
}
.about-abdm .desc {
  font-size: 1.125rem;
  color: var(--secondary-text);
  text-align: justify;
  font-weight: 400;
  margin-top: 20px;
}
.abdm-point {
  position: relative;
  overflow: hidden;
}
.white-sec {
  padding: 70px 0px;
  position: relative;
}
.light-grey-sec {
  background-color: rgba(243, 246, 249, 0.5);
  padding: 70px 0px;
  position: relative;
}
.point-content {
  position: relative;
  z-index: 999;
}
.gradient-green-light {
  background: #fff;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 65%,
    rgba(5, 141, 136, 0.21) 100%
  );
}
.gradient-ball-violet {
  background: #9a98ff;
  background: radial-gradient(
    circle,
    rgba(154, 152, 255, 0.4) 0%,
    rgba(255, 255, 255, 1) 80%
  );
  width: 400px;
  height: 300px;
  transform: rotate(45deg);
  border-radius: 80px;
  top: 20%;
  right: -100px;
}
.gradient-violet-light {
  background: #fff;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 65%,
    rgba(154, 152, 255, 0.25) 100%
  );
}
.point-content .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0;
}
.point-content .content .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main-text);
}
.point-content .content .desc {
  font-size: 1.075rem;
  font-weight: 400;
  color: var(--secondary-text);
}
.btn-box {
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: center;
}
.btn-box .create-btn {
  padding: 8px 16px;
  font-size: 0.95rem;
  margin-top: 0;
}
.btn-box .create-btn img {
  height: 15px;
}
.btn-box .border-default-btn {
  padding: 8px 16px;
  color: var(--main-text);
  border: 1px solid var(--secondary-text);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  text-decoration: none;
}
.btn-box .border-default-btn img {
  height: 18px;
  display: inline-block;
}
.pointimage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pointimage img {
  display: inline-block;
  max-height: 275px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}
.light-card {
  padding: 10px 15px;
  border-radius: 8px;
  border: 2px solid var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  width: fit-content;
}
.light-card img {
  display: inline-block;
  height: 22px;
}
.light-card span {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--main-text);
  font-weight: 500;
  max-width: 185px;
  width: fit-content;
}
/* Highlight Section  */
.highlight-sec {
  padding: 70px 0px;
  background-image: url(../images/bg/bg-texture-secondary.png);
}
.highlight-sec .content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.approve-card {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--text-white);
  border: 1px solid var(--text-light);
  width: fit-content;
  border-radius: 12px;
  box-shadow: inset 0px 0px 7px #00000069;
}
.approve-card span {
  display: inline-block;
  font-size: 1rem;
  color: var(--main-text);
  font-weight: 600;
  text-transform: uppercase;
}
.approve-card img {
  display: inline-block;
  height: 40px;
}
.highlight-sec .content .title {
  font-size: 1.75rem;
  margin: 0;
  color: var(--main-text);
  font-weight: 600;
}
.highlight-sec .content .desc {
  font-size: 1rem;
  color: var(--secondary-text);
  margin-bottom: 0;
}
.highlight-sec .content .app-img {
  height: 50px;
}
.highlight-sec .content .app-img img {
  display: inline-block;
  height: 100%;
}
.highlight-sec-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.highlight-sec-img img {
  max-height: 300px;
}
/* Footer  */
.footer {
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
  padding: 15px;
  display: flex;
  align-items: stretch;
}
.texture {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/dotted-texture.png);
  z-index: 9;
  top: 0;
  left: 0;
}
footer .footer-main {
  width: 100%;
  background: #0a3d3d;
  border-radius: 0px 0px 10px 10px;
  position: relative;
  padding-top: 120px;
  z-index: 9;
}
.footer-shape {
  position: absolute;
  top: 0; /* keep it touching */
  left: -1px;
  width: 100%;
  line-height: 0;
  z-index: 99;
}
.footer-shape img {
  display: inline-block;
  width: 101%;
  filter: brightness(0) invert(1);
}

.curved-edge {
  --c: 60px; /* control the curvature (works with percentage) */
  height: 100px;
  aspect-ratio: 8/2;
  /* you can also update the 60%  */
  mask: radial-gradient(60% var(--c) at bottom, #0000 calc(100% - 2px), #000);
  background: #40c0cb;
}

.footer-content {
  padding: 40px 20px 0px 20px;
  position: relative;
  z-index: 999;
}
.footer-app-img {
  display: inline-block;
  width: 120px;
}
.footer-app-img img {
  display: inline-block;
  width: 100%;
}
.column-sec {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}
.column-sec .desc {
  text-align: start;
  color: var(--text-white);
}
.column-sec .logo {
  width: 100px;
}
.column-sec .logo img {
  display: inline-block;
  width: 100%;
}
.column-sec .footer-title {
  position: relative;
  color: var(--text-white);
  padding: 7px 0px;
  font-size: 1.125rem;
}
.column-sec .footer-title::after {
  position: absolute;
  content: " ";
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--text-white);
  top: 100%;
  left: 0;
}
.app-deatil p {
  color: var(--text-white);
}
.footer-list {
  padding: 0;
}
.footer-list li {
  list-style-position: inside;
  text-align: start;
  margin-bottom: 12px;
  color: var(--text-white);
}
.footer-list li a {
  display: inline-block;
  color: var(--text-white);
  text-decoration: none;
}
.compony-data {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.compony-data img {
  width: 20px;
  display: inline-block;
}
.compony-data p {
  text-align: start;
  margin: 0;
  color: var(--text-white);
}
.compony-data p a {
  font-size: 1rem;
  color: var(--text-white);
  text-decoration: none;
}
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-icons .icon {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-white);
  transition: all 0.15s ease-in;
}
.social-icons .icon img {
  height: 18px;
}
.social-icons .icon:hover {
  transform: translateY(-5px);
}

.copyright {
  padding: 20px 0px;
  border-top: 1px solid var(--text-white);
  color: var(--text-white);
  font-size: 1rem;
}
.copyright a {
  color: #fcb131bd;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}
.copyright a:hover {
  color: #fcb131bd;
}

/* Scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary); /* teal color */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.scroll-top:hover {
  background: #104040;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/* Open Modal  */

/* .modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

.modal-content {
  background: transparent !important;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  height: 100%;
}

.close-btn {
  position: absolute;
  right: 50px;
  top: 30px;
  font-size: 42px;
  cursor: pointer;
  color: var(--text-white);
} */
.modal-header {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(25, 142, 150, 0.973);
  border-radius: 0px 0px;
  padding-top: 100px !important;
  padding: 40px;
  backdrop-filter: 18px;
  transition: all 0.5s ease-in-out;
}
.modal-header-blank {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.671);
  border-radius: 0px 0px;
  padding-top: 100px !important;
  padding: 40px;
  backdrop-filter: 18px;
  transition: all 0.5s ease-in-out;
}
.modal-header-blank .modal-header-content {
  background-color: var(--text-white) !important;
  width: 100%;
  max-width: 600px;
  height: auto;
}
.modal-header-content {
  background: transparent !important;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  height: 100%;
}
.close-btn {
  position: absolute;
  top: 50px;
  right: 30px;
  cursor: pointer;
  font-size: 2.5rem;
  color: var(--text-white);
}
.form-card-btn {
  padding: 0px;
  background-color: var(--text-white);
  display: flex;
  align-items: stretch;
  gap: 15px;
  max-width: 340px;
  border-radius: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.form-card-btn:hover {
  transform: translateY(-5px);
}
.form-card-btn .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 15px 20px 25px;
  gap: 10px;
}
.form-card-btn .content .title {
  font-size: 1.05rem;
  font-weight: 600;
  text-align: start;
  color: #000;
}
.form-card-btn .img {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: flex-end;
}
.form-card-btn .img img {
  display: inline-block;
  height: 95px;
}
.form-card-btn .backdrop-gradient {
  position: absolute;
  width: 200px;
  height: 200px;
  top: calc(100% - 100px);
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(226, 208, 252, 1) 12%,
    rgba(226, 208, 252, 0) 67%
  );
  z-index: 1;
}
.form-card-btn:nth-child(1) .backdrop-gradient {
  background: radial-gradient(
    circle,
    rgba(226, 208, 252, 1) 12%,
    rgba(226, 208, 252, 0) 67%
  );
}
.form-card-btn:nth-child(2) .backdrop-gradient {
  background: radial-gradient(
    circle,
    rgba(5, 141, 136, 0.45) 12%,
    rgba(5, 141, 136, 0) 67%
  );
}
.form-card-btn:nth-child(3) .backdrop-gradient {
  background: radial-gradient(
    circle,
    rgba(144, 184, 232, 0.75) 12%,
    rgba(144, 184, 232, 0) 67%
  );
}
.form-card-btn:nth-child(4) .backdrop-gradient {
  background: radial-gradient(
    circle,
    rgba(226, 208, 252, 1) 12%,
    rgba(226, 208, 252, 0) 67%
  );
}
.form-card-btn:nth-child(1) .content .title {
  color: #451999 !important;
}
.input-div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.input-div label {
  font-size: 1rem;
  color: var(--main-text);
}
.input-div input {
  padding: 6px 12px;
  border: 1px solid var(--text-light);
  border-radius: 7px;
  width: 100%;
  color: var(--main-text);
}

.input-div textarea {
  padding: 6px 12px;
  border: 1px solid var(--text-light);
  border-radius: 7px;
  width: 100%;
  height: 100px;
  color: var(--main-text);
}
.modal-header-blank .content .title {
  background: #07a75a;
  background: linear-gradient(
    90deg,
    rgba(7, 167, 90, 1) 0%,
    rgba(5, 141, 136, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 2rem;
}
.close-btn-blank {
  background-color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  top: -15px;
  right: -15px;
}
@media (max-width: 1440px) {
  .banner-img {
    width: 620px;
  }
}
@media (max-width: 1200px) {
  .banner-img {
    width: 520px;
  }
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  #menu {
    display: none;
  }
  #mobileMenu.show {
    display: flex;
  }
  .menu-mobile {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0px 2px 3px #00000059;
    border-top: 1px solid #ddd;
    border-radius: 0px 0px 10px 10px;
  }
  .navbar ul {
    flex-direction: column;
  }
  header .navbar {
    background-color: var(--text-white);
  }
  .navbar .logo img {
    filter: brightness(1) invert(0);
  }
  .hamburger span {
    background: #109983;
  }
  .navbar #menu.show {
    display: flex !important;
  }

  .navbar ul li ul {
    position: static;
    border: none;
    display: none; /* hidden by default */
    flex-direction: column;
  }

  .navbar ul li.open > ul {
    display: flex !important; /* toggle open */
  }

  /* Disable hover open on mobile */
  .navbar ul li:hover > ul {
    display: none;
  }
  .navbar ul li a {
    color: #07a75a;
  }
  .banner-img {
    display: none;
  }
  .submenu-toggle {
    justify-content: space-between;
  }
  .menu-mobile ul {
    padding-left: 0;
  }
  .menu-mobile ul li ul {
    padding: 10px;
    border-radius: 6px;
    background-color: rgba(7, 167, 90, 0.15);
    margin: 0px 10px;
  }
  .button-box {
    padding: 10px;
    gap: 15px;
  }
  .main-border-btn {
    padding: 6px 16px;
    border-radius: 22px;
    border: 1px solid var(--primary);
    color: var(--primary);
  }
  .main-btn {
    background: linear-gradient(
      90deg,
      rgba(7, 167, 90, 1) 0%,
      rgba(5, 141, 136, 1) 100%
    );
    border-radius: 30px;
  }
  .main-btn span {
    -webkit-text-fill-color: #fff;
  }
  .sticky .main-border-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
  }
  .border-btn-green {
    padding: 6px 16px;
    border: 1px solid var(--text-green);
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
    color: var(--text-green);
    text-decoration: none;
  }
  .border-btn-green span {
    display: inline-block;
    background: #07a75a;
    background: linear-gradient(
      90deg,
      rgba(7, 167, 90, 1) 0%,
      rgba(5, 141, 136, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .theme-gradient-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    background: #07a75a;
    background: linear-gradient(
      90deg,
      rgba(7, 167, 90, 1) 0%,
      rgba(5, 141, 136, 1) 100%
    );
  }
  .service-card:nth-child(even) {
    flex-direction: column-reverse;
  }
  .service-card:nth-child(odd) {
    flex-direction: column;
  }
  .service-card .img {
    justify-content: center;
  }
  .service-card:nth-child(1) {
    background: #fff;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.5) 48%,
      rgba(5, 139, 140, 0.4) 100%
    );
  }

  .service-card:nth-child(2) {
    background: rgba(143, 228, 192, 0.02);
    background: linear-gradient(
      0deg,
      rgba(143, 228, 192, 0.4) 0%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 1) 100%
    );
  }
  .service-card:nth-child(3) {
    background: #d8e3ff;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.5) 46%,
      rgba(216, 227, 255, 0.6) 100%
    );
  }
  .service-card:nth-child(4) {
    background: #67ccff;
    background: linear-gradient(
      0deg,
      rgba(103, 204, 255, 0.21) 0%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 1) 100%
    );
  }
  .gap-30-mobile {
    gap: 30px;
  }
  .gap-40-mobile {
    gap: 40px;
  }
  .column-sec {
    padding-left: 0 !important;
  }
  .card-vector {
    display: none;
  }
  .govt-logo-card {
    padding: 15px;
    gap: 0;
  }
  .govt-logo-card .logo {
    padding: 0px 10px;
  }
  .govt-logo-card .logo img {
    height: 50px;
  }
  .card-container {
    justify-content: inherit;
    gap: 20px;
  }
  .sticky #mobileMenu .main-btn {
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .landing {
    max-height: 800px;
    padding-top: 100px;
  }
  .content .subhead {
    font-size: 1.5rem;
  }
  .content .mainhead {
    font-size: 2rem;
    line-height: 40px;
  }
  .service-card .content .title {
    font-size: 2rem;
  }
  .service-card .content {
    padding: 30px 20px;
  }
  .service-card .content .desc {
    font-size: 0.95rem;
  }
  .content .mainhead {
    font-size: 1.5rem;
    line-height: 36px;
  }
  .achieve {
    gap: 15px;
    flex-wrap: wrap;
  }
  .achieve-item {
    padding: 5px 10px 0px 5px;
  }
  .achieve-item img {
    height: 40px;
    filter: brightness(1) invert(0);
    opacity: 1;
  }
  .achieve-item h6 {
    font-size: 0.95rem;
  }
  .footer {
    padding: 25px 20px;
  }
  .footer-shape {
    display: none;
  }
  footer .footer-main {
    border-radius: 10px;
    padding-top: 0;
  }
  .section-title h2 {
    font-size: 1.75rem;
  }
  .section-desc {
    font-size: 1rem;
  }
  .logo-row {
    margin-bottom: 30px;
  }
  .logo-track {
    gap: 30px;
  }
  .logo-card img {
    height: 80px;
  }
  .abdm-content {
    gap: 15px;
  }
  .abdm-content .mainhead {
    font-size: 2rem;
    text-align: center;
  }
  .abdm-content .subhead {
    font-size: 1.15rem;
  }
  .create-btn {
    font-size: 1.05rem;
    margin-top: 15px;
  }
  .abdm-content .app-deatil {
    margin-top: 25px;
  }
  .abdm-content .app-deatil p {
    font-size: 1.15rem;
  }
  .abdm-content .app-deatil .app-img {
    width: 120px;
  }
  .govt-logo-card {
    flex-wrap: wrap;
    gap: 20px;
    min-width: 430px;
    justify-content: center;
    bottom: -75px;
  }
  .govt-logo-card .logo {
    padding: 0px 10px;
    border: none;
  }
  .govt-logo-card .logo img {
    height: 50px;
  }
  .pointimage {
    justify-content: flex-start;
  }
  .point-content .content {
    margin-top: 30px;
  }
  .white-sec {
    padding: 50px 0px;
  }
  .light-grey-sec {
    padding: 50px 0px;
  }
  .highlight-sec-img {
    justify-content: flex-start;
    display: none;
  }
  .light-card {
    width: 100%;
  }
  .light-card span {
    max-width: inherit;
  }
  .close-btn {
    top: 10px;
  }
}
@media (max-width: 520px) {
  .module-btn-box {
    flex-wrap: wrap;
    gap: 20px;
  }
  .content .subhead {
    font-size: 1.25rem;
  }
  .content .mainhead {
    font-size: 1.5rem;
    line-height: 30px;
  }
  .service-card .img img {
    width: 100%;
  }
  .service-card .content .title {
    font-size: 1.75rem;
  }
  .service-card .content .desc {
    font-size: 0.875rem;
  }
  .achieve-item::after {
    display: none;
  }
  .rating {
    gap: 20px;
    flex-wrap: wrap;
  }
  .rating .rate-item img {
    width: 120px;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-desc {
    font-size: 0.875rem;
  }
  .main-border-btn {
    padding: 6px 14px;
    font-size: 0.875rem;
  }
  .border-btn-green {
    padding: 6px 14px;
    font-size: 0.875rem;
  }
  .abdm-banner {
    max-height: 600px;
    padding-top: 70px;
  }
  .abdm-content .mainhead {
    font-size: 1.75rem;
  }
  .abdm-content .subhead {
    font-size: 1rem;
  }
  .about-abdm {
    padding-top: 225px;
  }
  .about-abdm .title {
    font-size: 1.5rem;
  }
  .about-abdm .desc {
    font-size: 1rem;
  }
  .create-btn {
    font-size: 1rem;
  }
  .abdm-content .app-deatil p {
    font-size: 1.1rem;
  }
  .govt-logo-card {
    position: absolute;
    padding: 15px;
    border-radius: 0px;
    gap: 10px;
    top: 100%;
    width: 100%;
    box-shadow: none;
    height: 170px;
    min-width: inherit;
  }
  .pointimage img {
    max-height: 225px;
  }
  .point-content .content .title {
    font-size: 1.5rem;
  }
  .point-content .content .desc {
    font-size: 1rem;
  }
  .btn-box {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .btn-box .create-btn {
    padding: 12px 16px;
  }
  .btn-box .border-default-btn {
    padding: 12px 16px;
  }
  .button-box {
    flex-wrap: wrap;
  }
}

/* For Doctors */
.doc-title {
  font-size: 36px;
  color: #004d40;
  margin-bottom: 15px;
  text-align: center;
}

.doc-desc {
  text-align: justify !important;
  margin: auto;
  color: #555;
  margin-bottom: 30px;
}

.doc-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.doc-platform {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 200px;
}

.doc-platform img {
  height: 100px;
  margin-bottom: 10px;
}

.doc-subtitle {
  font-size: 28px;
  color: #004d40;
  margin: 60px 0 40px;
  text-align: center;
}

.doc-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.doc-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 1 1 260px;
  max-width: 300px;
}

.doc-hero p {
  text-align: center;
}

.doc-card:hover {
  transform: translateY(-5px);
}

.doc-card img {
  height: 100px;
}

.doc-card h4,
.doc-platform h4 {
  margin: 10px 0 8px;
  color: var(--main-text);
  font-size: 1.125rem;
  font-weight: 600;
}

.doc-card p {
  font-size: 0.875rem;
  color: var(--secondary-text);
  line-height: 20px;
  margin: 0;
}

.highlight-sec {
  position: relative;
  background-color: rgba(7, 167, 90, 0.15);
  padding: 50px 20px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9;
  background-image: url("../images/bg/dotted-texture.png");
}

.doc-card,
.doc-platform {
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.doc-platform:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.highlight-sec h3 {
  color: var(--main-text);
  font-size: 1.35rem;
  font-weight: 600;
}

.highlight-sec p {
  font-size: 0.975rem;
  color: var(--secondary-text);
  line-height: 20px;
  margin: 0;
}

.doc-section {
  padding: 70px 0;
  position: relative;
  background-size: cover;
}

.join-us-btn {
  width: fit-content;
  margin-top: 20px;
}

.breadcrumb {
  width: 100%;
  position: relative;
  background-size: cover !important;
  max-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 125px;
  padding-bottom: 25px;
}
.doctor-breadcrumb {
  background: url("../images/bg/doctor.jpg") no-repeat center center;
}
/*patient*/
.patient-breadcrumb {
  background: url("../images/bg/patient.png") no-repeat center center;
}

/*contact*/
.contact-breadcrumb {
  background: url("../images/bg/contact.png") no-repeat center center;
}

/*register*/
.register-breadcrumb {
  background: url("../images/bg/register.png") no-repeat center center;
}

/*business*/
.business-breadcrumb {
  background: url("../images/bg/for-business.png") no-repeat center center;
}

/*Videos*/
.video-breadcrumb {
  background: url("../images/bg/videos.png") no-repeat center center;
}
.breadcrumb-content {
  text-align: start;
  color: var(--text-white);
  z-index: 2;
  position: relative;
}

.breadcrumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(38, 171, 115, 0.7),
    rgba(31, 163, 165, 0.7)
  );
  z-index: 1;
}
.breadcrumb-content .section-title h2 {
  color: var(--text-white) !important;
  margin-bottom: 15px !important;
}
.breadcrumb-content a {
  text-decoration: none;
  color: var(--text-white);
}
.breadcrumb-content .title {
  font-size: 2rem;
  font-weight: 600;
}
.breadcrumb-content .path {
  font-size: 1.125rem;
}
.contact-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.info-section {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
}

.info-box {
  margin: 20px 0;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  transition: transform 0.3s ease;
  background: linear-gradient(
    to left,
    rgba(7, 167, 90, 0.5),
    rgba(7, 167, 90, 0.05)
  );
  padding: 13px 20px;
  border-radius: 15px;
  min-width: 340px;
}

.info-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--main-text);
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--secondary);
}

.form {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  width: 500px;
}

.form h3 {
  margin-bottom: 20px;
  font-size: 20px;
  border-radius: 4px;
  border-left: 5px solid #07a75a;
  padding-left: 10px;
  color: var(--main-text);
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border: 1px solid #07a75a;
  outline: none;
}

.map {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
  }
}

.info-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
form a span {
  align-items: center;
}
.contact-sec {
  padding: 70px 0;
}

.icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--text-white);
  border-radius: 50%;
  box-shadow: 0px 2px 2px rgb(0 0 0 / 15%),
    -6px -6px 12px rgb(255 255 255 / 30%);
  transition: all 0.15s ease-in;
}
.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box i {
  font-size: 23px;
  background: linear-gradient(145deg, rgb(7 167 90), rgb(5 141 136));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.15s ease-in;
}
.contactus-icon {
  margin: 10px 0 0;
}

.contactus-icon .icon img {
  height: 22px !important;
}

.contactus-icon .icon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  box-shadow: 0px 2px 2px rgb(0 0 0 / 15%),
    -6px -6px 12px rgb(255 255 255 / 30%) !important;
}

/* register */
.register-breadcrumb {
  width: 100%;
  position: relative;
  background: url("../images/bg/register.png") no-repeat center center;
  background-size: cover;
  max-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.register-section {
  padding: 70px 0;
}

.register-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.15);
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.register-form label {
  font-weight: 600;
  color: var(--main-text);
  display: block;
  font-size: 0.875rem;
}

.register-form input,
.register-form select,
.register-form textarea {
  width: 100%;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  color: var(--secondary-text);
}
.textarea {
  flex: 0 0 calc(75% - 16px) !important;
}
.register-form select {
  padding: 6px 12px !important;
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
  border-color: #1fa3a5;
  box-shadow: 0 0 5px rgba(31, 163, 165, 0.3);
}

/* Radio buttons custom */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
}

.radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid #1fa3a5;
  border-radius: 50%;
  background: #fff;
}

.radio-group input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #1fa3a5;
  border-radius: 50%;
}

/* File Upload */
.file-input {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-input input[type="file"] {
  display: none;
}

.file-input-label {
  background: #1fa3a5;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.file-input-label:hover {
  background: #148585;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: #26ab73;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #1f8f60;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  /* justify-content: center; */
}

.form-group,
.captcha-wrap {
  flex: 0 0 calc(25% - 16px);
  min-width: 200px;
}

.form-group select,
.form-group input,
.cap-input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-group span {
  color: red;
}
.file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
}

.file-upload-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  cursor: pointer;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f5f2;
  color: #00695c;
  padding: 5px 14px;
  border: 1px solid #b2dfdb;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.upload-btn:hover {
  background: #d0f0eb;
}

.upload-btn i {
  font-size: 16px;
}

#fileName {
  margin-left: 15px;
  font-size: 14px;
  color: #666;
  flex: 1;
}

#fileInput {
  display: none;
}

.file-note {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}

.captcha-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

#captchaCanvas {
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f8f9fa;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cap-refresh {
  background: #b2dfdb;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.cap-refresh:hover {
  background: #148585;
}

.cap-refresh i {
  font-size: 16px;
}

.cap-input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.cap-input:focus {
  border-color: #1fa3a5;
  box-shadow: 0 0 5px rgba(31, 163, 165, 0.3);
}

.cap-btn {
  background: #26ab73;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.cap-btn:hover {
  background: #1f8f60;
}

.cap-msg {
  font-size: 14px;
  font-weight: 500;
  color: #d9534f;
  margin-top: 5px;
}

.form-group,
.captcha-wrap {
  flex: 0 0 calc(25% - 16px);
  min-width: 200px;
}


@media (max-width: 992px) {
  .form-group,
  .captcha-wrap {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 576px) {
  .form-group,
  .captcha-wrap {
    flex: 0 0 100%;
  }
}

.color-normal img{
  height: 50px;
    filter: none !important;
    opacity: 1 !important;
    transition: all 0.2s ease-in-out;
}

.highlight-sec .abdm-content .app-deatil{
  margin-top: 0;
}

.join-patient-title{
  font-size: 2.25rem;
  text-align: center;
}

.margin-tb{
  margin: 100px 0;
}

.abdm-content .gap-content{
  gap: 40px;
}

.gap-content .app-img{
  box-shadow: 2px 2px 3px 1px grey;
  border-radius: 5px;
  width: 180px !important;
}

.compony-data .contact-details{
  color: var(--primary) !important;
}

.compony-data .contact-details a{
  color: var(--primary) !important;
}

.input-div select {
  padding: 6px 12px;
  border: 1px solid var(--text-light);
  border-radius: 7px;
  width: 100%;
  color: var(--main-text);
}

/* Tab Videos  */
.videotabs {
  display: flex;
  gap: 10px;
  margin: 20px 0px;
}
.videotabs .videotab {
  padding: 8px 14px;
  border-radius: 25px;
  background-color: rgb(220 219 219 / 20%);
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  color: #189495;
  text-decoration: none;
  border: 1px solid #189495;
  cursor: pointer;
  font-weight: 600;
}
.videotab.active {
  background: #07a75a;
  background: linear-gradient(
    90deg,
    rgba(7, 167, 90, 1) 0%,
    rgba(5, 141, 136, 1) 100%
  );
  color: #fff;
}
.videopanel {
  display: none;
}
.videopanel.active {
  display: block;
}
.footer-timing{
    margin-top:10px;
    display:flex;
    align-items:center;
}
.footer-timing h4{
    color:#fff ;
    font-size:1.05rem;
}