@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@100..900&display=swap");

.secondary-font {
  font-family: "DM Sans", sans-serif !important;
}

@font-face {
  font-family: Primary-font;
  src: url("/src/fonts/Erode-Variable.ttf");
}

.primary-font {
  font-family: Primary-font;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  display: none;
}

html,
body {
  font-family: "DM Sans", sans-serif;
  width: 100%;
  height: 100%;
}

:root {
  --primary-bg: #eaf8ff;
  --primary-blue: #0486ff;
}

.main {
  width: 100%;
  min-height: 100vh;
  background-color: var(--primary-bg);
}

.primary-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: transparent;
  border: 3px solid var(--primary-blue);
  border-radius: 8px;
  color: var(--primary-blue);
  font-weight: 600;
}

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  border-radius: 8px;
  color: white;
  font-weight: 600;
}

.secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: #f5f5f5;
  border: 3px solid #f5f5f5;
  border-radius: 8px;
  color: black;
  font-weight: normal;
}
.secondary-btn.active {
  background-color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  color: white;
}

.black-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: #000d19;
  border: 3px solid #000d19;
  border-radius: 8px;
  color: white;
  font-weight: 600;
}

.wrapper {
  width: 100%;
  padding: 0 148px;
  min-height: 100vh;
}
.gradient-icon {
  background: linear-gradient(136.7deg, #00b0f0 -5.12%, #fd85ae 89.65%);
  font-size: 28px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.secondary-gradient-icon {
  background: linear-gradient(135deg, #0486ff 0%, #025099 100%);
  font-size: 50px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.fw-500 {
  font-weight: 500 !important;
}

/* Navbar */

.navbar {
  background-color: transparent;
  width: 100%;
  height: 110px;
  padding: 0 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  width: 97px;
}

.navbar li {
  list-style-type: none;
}

.center ul li a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
}
.center ul li a.active {
  color: var(--primary-blue);
  border-bottom: 3px solid var(--primary-blue);
}

.primary-btn-outline svg {
  width: 10px;
  color: var(--primary-blue) !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#dynamic-text {
  display: inline-block;
  animation: slideDown 0.6s ease-in-out;
}

.div-container {
  background-color: #ff5c5c;
  color: white;
  padding: 15px 24px;
  border-radius: 20px;
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  margin-bottom: 24px;
}

.div-container:after {
  content: "";
  position: absolute;
  bottom: -20px; /* Adjust as needed */
  left: 24px; /* Adjust as needed */
  width: 0;
  height: 0;
  border-top: 20px solid #ff5c5c; /* Same as background color */
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.hero-section {
  width: 100%;
  padding: 0 0 0 148px;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-wrapper {
  flex: 0.7;
}

.right-wrapper {
  flex: 1;
  margin-bottom: -5px;
}
.wrapper-title {
  font-family: Primary-font;
  font-size: 60px;
  font-weight: 600;
  text-align: left;
  line-height: 80px;
}

.wrapper-title-secondary {
  font-family: Primary-font;
  font-size: 50px;
  font-weight: 600;
  text-align: left;
  width: 80%;
  line-height: 50px;
}

.wrapper-title span {
  font-weight: 700;
  line-height: 100px;

  color: var(--primary-blue);
}

.section-3-lft {
  width: 60vw; /* 50% of the viewport width */
  height: 100%;
}

.section-3-lft canvas {
  width: 100%;
  height: 100%;
}

.section-3-rht {
  width: 40vw;
  height: 100%;
}

/* section two */
.section-two {
  padding-top: 120px;
  position: relative;
}
.section-two-img-container{
  position: relative !important;
  width: 76%;
  height: 100%;
  cursor: pointer;
}

.section-two-img{
  position: absolute;
  transition: all 0.3s ease-in-out;
}

#Morning{
  top: 129px;
  left: 3%;
  z-index: 5;
  opacity: 1;
}

#Afternoon{
  left: 25%;
  top: 141px;
  z-index: 4;
  opacity: 1;
}

#Evening{
  right: 14.8%;
  top: 105px;
  z-index: 3;
  opacity: 1;
}

#Night{
  right: 2.1%;
  top: 132px;
  z-index: 2;
  opacity: 1;
}

/* .section-two-img-container:hover #Morning{
  top: 103px;
  left: 32%;
  z-index: 5;
  transform: rotate(10deg);
}

.section-two-img-container:hover #Afternoon{
  left: 34%;
  top: 141px;
  z-index: 4;
  opacity: 0;
}

.section-two-img-container:hover #Evening{
  right: 27.9%;
  top: 97px;
  opacity: 0;
  z-index: 3;
  transform: rotate(-13deg);
}

.section-two-img-container:hover #Night{
  right: 30.1%;
  top: 105px;
  opacity: 0;
  z-index: 2;
  transform: rotate(-24deg);
} */

#clickanywere {
  position: absolute;
  bottom: 56px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.section-two-card-1{
  position: absolute;
  left: 67%;
  top: 109px;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-two-card-2 {
  position: absolute;
  left: 8%;
  z-index: 6;
  opacity: 0;
  top: 114px;
  transition: opacity 0.3s ease;
}

.section-two-card-3 {
  position: absolute;
  left: 12%;
  top: 266px;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-two-card-4 {
  left: 68%;
  position: absolute;
  z-index: 6;
  top: 365px;
  opacity: 0;
  transition: opacity 0.3s ease;
}


.flex-1 {
  flex: 1;
}
/*  section-3 */

.section-3 {
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}
.section-3-rht ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding-top: 40% !important;
}
.section-3 ul li {
  list-style-type: none;
}

.section-3 ul li h2,
.section-3 ul li span {
  font-size: 50px;
}
.section-3 ul li h2 span {
  font-size: 50px;
}

.section-3 ul li span {
  font-size: 40px;
  height: 70px;
  margin-right: 20px;
}

/* section-4 */

.section-4-right h2 {
  font-family: Primary-font;
  font-weight: 700;
  font-size: 50px;
}
.section-4-right p {
  font-weight: 500;
  font-size: 20px;
}
.section-4-left::before {
  content: "";
  width: 862px;
  /* left: -120px; */
  z-index: 999;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(173, 216, 230, 1) 0%,
    rgba(240, 255, 255, 1) 50%,
    rgba(135, 206, 235, 1) 100%
  );
}
.section-4-left-card-container {
  z-index: 9 !important;
}
.section-4-left {
  padding: 120px 0;
}
.section-4-left-card {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.section-4-left-card.big {
  height: 130px;
}

.section-4-left-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #003c73;
  margin-bottom: 0;
}

/* ------------part-4---------- */
.part-4 {
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}

#img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  z-index: -1;
}

.lft-part-4 {
  display: flex;
  margin-left: 170px;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-left: 3vw;
  width: 50%;
  height: 100%;
}

.lft-part-4 h2 {
  font-size: 5vw;
  font-weight: bold;
}
.lft-part-4 ul {
  margin-top: 10px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lft-part-4 ul li {
  list-style: none;
  font-family: Primary-font;
  font-size: 23px;
  font-weight: 500;
  padding: 8px 16px;
}

.lft-part-4 ul li.active {
  background-color: #eaf5ff;
  font-weight: 600;
  color: var(--primary-blue);
  border-right: 2px solid var(--primary-blue);
}

.cir-part-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7vw;
  height: 7vw;
  background-color: #f4f4f4;
  border-radius: 50%;
}

.rght-part-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 50%;
  height: 100%;
  /* margin-top: 025%;
  padding-left: 8vw; */
}

.content-rght-part-4 {
  display: flex;
  flex-direction: column;
  /* gap: 2vh; */
  opacity: 0;
}

.content-rght-part-4 h1 {
  font-size: 40px;
}

.progress-bar-container {
  position: fixed;
  top: 35%;
  left: 50%;
  width: 20px;
  height: 45%;
  background-color: #d2eef8;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  position: relative;
  height: 0;
  background-color: #d2eef8; /* You can use any color you want */
}

.progress-bar::before {
  position: absolute;
  content: " ";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  background-color: #00b0f0;
  z-index: 50;
}
/* section-6 */
.section-6 {
  min-height: 130vh;
  gap: 24px;
  align-items: center;
}

.section-6-lft {
  height: 110vh;
  background-color: #daedeb;
  border-radius: 14px;
  padding: 30px 50px;
  position: relative;
  width: 100%;
}
.section-6-lft h2 {
  font-size: 40px;
  font-family: Primary-font;
  font-weight: 700;
}

.section-6-lft span {
  color: #1f998a;
}

.section-6-lft img {
  width: 100;
  position: absolute;
  bottom: 0;
  left: 120px;
}

.section-6-btn {
  background-color: #1f998a !important;
  border-color: #1f998a;
}

.section-6-rht {
  height: 110vh;
  background-color: #ecf4f9;
  border-radius: 14px;
  padding: 30px 50px;
  position: relative;
}

.section-6-rht h2 {
  font-size: 40px;
  font-family: Primary-font;
  font-weight: 700;
}

.section-6-rht p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 27.3px;
  text-align: left;
}

.section-6-rht img {
  width: 100%;
  margin-top: 57px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Section 7 */

.section-7 {
}

.section-7-wpr {
  background-color: #f3f3f3;
  min-height: 100%;
  border-radius: 40px;
  padding: 40px;
}
.section-7-tp-lft {
}

.section-7-tp-lft h2 {
  font-size: 45px;
  font-family: Primary-font;
  font-weight: 700;
}

.section-7-tp-lft p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 27.3px;
  text-align: left;
}

.section-7-ct-card {
  width: 300px;
  border-radius: 24px;
  padding: 24px;
  background-color: #effbff;
  border: 1px solid #c4ebf9;
}

.section-7-ct-card-text {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
  color: #003c73;
}

.section-7-bt-wpr {
  border: 1px solid #d3d3d3;
  border-radius: 24px;
  padding: 20px;
}

.section-7-bt-wpr p {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

.section-7-bt-tbl {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d3d3d3;
}

.section-7-bt-tbl th,
.section-7-bt-tbl td {
  padding: 24px;
  border: 1px solid #d3d3d3;
}

.section-7-bt-tbl th {
  min-width: 200px;
}

.section-7-bt-tbl-bg-1 {
  background-color: #f8fdff !important;
}
.section-7-bt-tbl-bg {
  background-color: #d8ecff !important;
}

/* section 8  */

.section-8-tp {
  font-family: Primary-font;
  font-size: 67px;
  font-weight: 700;
  text-align: left;
}
.section-8-bt-lft,
.section-8-bt-ct,
.section-8-bt-rht {
  width: 400px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.section-8-bt-lft h2,
.section-8-bt-ct h2,
.section-8-bt-rht h2 {
  font-family: Primary-font;
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  color: #0486ff;
}

/* Section 9 */
.section-9-tp h2 {
  font-size: 67px;
}

.section-9-bt-crd {
  width: 600px;
  padding: 30px;
  gap: 25px;
  border-radius: 20px;
  border: 1px solid #c4ebf9;
  background-color: #effbff;
}

.section-9-bt-crd-ttl {
  font-size: 18px;
  color: #003c73;
  font-weight: 500;
}

.section-9-bt-crd-desc {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

/* section-10 */

.section-10-bt-crd {
  width: 400px;
  border-radius: 12px;
}
.section-10-bt-crd-ig {
  width: 100%;
  height: 170px;
  background-color: #f0f0f0;
  border-radius: 12px;
}
.section-10-bt-crd-desc {
  padding: 10px 24px;
  font-size: 13px;
}

/* section-11 */

.section-11 {
  background-color: #000d18;
  width: 100%;
}

.section-11-bt {
  background-color: #2c2c2c;
  padding: 30px;
  min-width: 80vw;
  border-radius: 40px;
}

.section-11-bt-tp {
  padding: 30px;
  border-radius: 40px;
  background-color: #0486ff;
  position: relative;
  margin-bottom: 30px;
}

.section-11-bt-tp h2 {
  font-size: 45px;
  font-weight: 700;
}

.section-11-bt-tp img {
  position: absolute;
  right: 0;
  top: 30px;
}

.section-11-bt-bt h2 {
  font-size: 45px;
  font-weight: 700;
}
/* section-12 */

.section-12-tp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-12-tp-btn-cont {
  width: 100%;
  margin: 40px 0;
}

.section-12-tp h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-12-bt .accordion {
  width: 100% !important;
  max-width: 80vw !important;
}

.accordion-count {
  font-size: 24px;
  color: #cdcdcd;
}

.accordion-button {
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  /* color: var(--bs-accordion-active-color); */
  background-color: white;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

/* Footer */
.footer {
  padding: 0 148px;
  background-color: #011e41;
  color: white;
}

.footer-tp-rht-i {
  background-color: #1a3454;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-ct {
  padding: 60px 0;
  border-top: 0.5px solid lightgray;
  border-bottom: 0.5px solid lightgray;
}

.footer-ct-lft {
  max-width: 200px;
  font-size: 20px;
  flex: 1;
}
.footer-ct-ct {
  flex: 2;
}
.footer-ct-rht {
  flex: 1;
}
.footer-ct-ct-rht a,
.footer-ct-ct-lft a {
  color: white;
  text-decoration: none;
}

.footer-ct-rht input {
  background-color: #1a3454;
  outline: none;
  border: none;
  padding: 18px 14px;
  border-radius: 10px;
  color: white;
  width: 100%;
}

.footer-bt {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Set a fixed width for all accordion items */
.accordion-item {
  width: 100%; /* You can set a specific width if needed, e.g., 500px */
}

/* Ensure the accordion buttons take the full width of the accordion item */
.accordion-button {
  width: 100%;
  text-align: left; /* Keeps the text aligned to the left */
}

/* Prevent the accordion button from resizing when opened or closed */
.accordion-button::after {
  flex-grow: 0;
}

/* Customize the appearance of the accordion to your preference */
.accordion-body {
  padding: 1rem;
  background-color: #f8f9fa;
}

/* Optional: Set a max width for the accordion to limit its expansion */
#medicne {
  max-width: 800px; /* Adjust the max width as needed */
  margin: 0 auto; /* Center the accordion if desired */
}

.section-12 {
  padding: 60px 0;
}

.test-div {
  height: 500px;
  width: 450px;
  /* background-color: red; */
}
