@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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");

html {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}



:root {
  --gauge-width: 300px; /* Increased gauge size */
  --min: 0;
  --max: 100;
}

/* Gauge rotation animation */
@keyframes needleRotation {
  0% {
    transform: rotate(-90deg);
  }
  80% {
    transform: rotate(
      calc(
        -70deg + (var(--actual-value) - var(--min)) / (var(--max) - var(--min)) *
          180deg
      )
    );
  }
  100% {
    transform: rotate(
      calc(
        -90deg + (var(--actual-value) - var(--min)) / (var(--max) - var(--min)) *
          180deg
      )
    );
  }
}

/* Marker slice animation */
@keyframes gaugeRotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(
      calc((var(--trigg) - var(--min)) / (var(--max) - var(--min)) * 180deg)
    );
  }
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.gauge {
  --gauge-height: calc(var(--gauge-width) / 2);
  width: var(--gauge-width);
  height: var(--gauge-height);
  position: relative;
  overflow: hidden;
  border-radius: var(--gauge-height) var(--gauge-height) 0 0;
  box-shadow: 0 -3px 6px 2px rgba(0, 0, 0, 0.5);
  background: inherit;
}

.slices {
  height: 100%;
}

.slices .marker {
  position: absolute;
  top: 0;
  width: var(--gauge-width);
  height: var(--gauge-height);
  background: var(--bg);
  transform-origin: calc(var(--gauge-width) / 2) var(--gauge-height);
  animation: 1.5s ease-in 0s 1 gaugeRotation;
  transform: rotate(
    calc((var(--trigg) - var(--min)) / (var(--max) - var(--min)) * 180deg)
  );
  border-radius: var(--gauge-height) var(--gauge-height) 0 0;
}

.needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: calc(var(--gauge-height) / 1.1);
  width: 2px;
  background: #fff;
  transform-origin: bottom;
  animation: 2s ease-in 0s 1 needleRotation;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.38);
  z-index: 10;
}

/* Inner center box */
.gauge-center {
  width: 60%;
  height: 60%;
  background: #15222e;
  position: absolute;
  right: 20%;
  bottom: 0;
  border-radius: var(--gauge-height) var(--gauge-height) 0 0;
  box-shadow: 0 -13px 15px -10px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-center .label {
  font-size: 0.75em;
  opacity: 0.6;
  margin-bottom: 0.3em;
  color: #fff;
}

.gauge-center .number {
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
}

/* Remove default 40% number from design */
.gauge-center .number::before {
  content: none;
}

/* Labels on the arc */
.circle-label {
  position: absolute;
  font-size: 14px;
  color: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-weight: bold;
}

.circle-label.low {
  top: 90%;
  left: 10%;
}

.circle-label.moderate {
  top: 30%;
  left: 50%;
}

.circle-label.high {
  top: 90%;
  left: 90%;
}


#gauge-section {
  display: none;
}









.fatty-liver-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  background-image: url('/assets/images/fatty-liver/bg-image.png');  /* Replace with your image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 90px;
}



.fatty-liver-banner > div {
  flex: 1;
}

.fatty-liver-banner .liver-banner-image img {
  width: 100%;
}

.liver-banner-content h2 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 52px;
  line-height: normal;
  color: #195888;
  margin: 0px;
}

.liver-banner-content p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0%;
}

.liver-banner-content .banner-btn {
  display: flex;
  gap: 2rem;
  padding-top: 20px;
}

.liver-banner-content .banner-btn button {
  width: 35%;
  padding: 10px 0px;
}

.liver-banner-content .banner-btn .btn-1 {
  background-color: #336699;
  border: none;
  border-radius: 05px;
}

.liver-banner-content .banner-btn .btn-2 {
  border: 1px solid #336699;
  border-radius: 5px;
}

.btn-1 a {
  color: #fff;
  text-decoration: none;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0%;
}

.btn-2 a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #336699;
  text-decoration: none;
}

.liver-container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
}

/* Heading */
.liver-heading {
  text-align: center;
  margin-bottom: 20px;
}

.liver-highlight {
  color: #0050a2;
  font-weight: bold;
}

.liver-health-count{
  width: 85%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.liver-health-count .doctor-img{
  width: 50%;
}

.liver-health-count .doctor-img img{
  width: 100%;
}

.liver-health-count .count-box-container{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}


.count-box-container .count-box{
  width: 40%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  box-shadow: 0px 2px 8px 0px #0000001F;
}

.count-box h4{
  font-size: 30px;
  margin: 0px;

}

.count-box p{
  font-size: 14px;
  color: #575757;
  font-weight: 400;
  margin: 0px;
}

.book-container{
  margin-top: 100px;
}

.appointment-container{
  background-color: #336699;
  padding: 30px;
  margin-top: 40px;
}

.appointment-section {
  padding: 20px 30px;
  border-radius: 6px;
  background: #fff;
  margin: -80px auto 0px auto;
  width: 80%;
}

.appointment-section h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.appointment-section p {
  margin: 0 0 15px;
  font-size: 14px;
  color: #666;
}

.appointment-form {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.checkbox-label {
  border: 1px solid #6493b2;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #333;
  cursor: pointer;
}

.checkbox-label input {
  accent-color: #003367;
  width: 16px;
  height: 16px;
}

select {
  border: 1px solid #6493b2;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 35px;
  width: 20%;
}

.or-text {
  font-size: 14px;
  color: #666;
}

.book-btn {
  background-color: #2f5f99;
  color: #fff;
  border: none;
  padding: 12px 0px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  width: 20%;
  margin-left: 50px;
}

.card-section{
  margin-top: 30px;
  padding: 20px 50px;
}

.card-section h2{
  text-align: center;
  color: #3A3A3A;
  font-size: 30px;
  margin-bottom:50px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  position: relative;
  width: 23%;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-img img {
    max-width: fit-content !important;
}

.card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  height: auto;
  transition: opacity 0.3s ease;
}

.card .bottom-text{
  position: absolute;
  left: 20px;
  bottom: 15px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  transition: opacity 0.3s ease;
}

.card:hover .bottom-text {
  visibility: hidden;
}
.card .overlay {
  position: absolute;
  bottom: -47%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #336699CC;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s ease;
  border-radius: 10px;
}

.card .overlay h3{
  margin: 0px;
  color:white;
  padding-bottom:20px;
 text-align: center;
	
}

.card-logo img {
   max-width: fit-content;
}

.card .overlay p{
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}



.card:hover .overlay {
  bottom: 0;
}


.liver-care-program{
  padding: 30px 60px;
  background: #E2F0FA;
}

.liver-care-program h2{
  text-align: center;
  color: #3A3A3A;
  font-size: 30px;
  margin-bottom:50px;
}

.liver-card-container{
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.liver-card-container .liver-card{
  width: 25%;
  padding: 15px 30px;
  box-shadow: 0px 4px 8px 0px #00000014;
  background: #FCFCFC;
  border-radius: 8px;
}

.liver-card h4{
  font-size: 22px;
  color: #000000;
  margin: 05px 0px;
  height: 65px;
}

.card-content{
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1.5rem;
}

.card-content p{
  color: #575757;
  font-size: 16px;
}

.liver-card .card-logo{
  width: 30%;
}

.btn-box{
  text-align: center;
}

.program-btn{
  padding: 12px 25px;
  background: #336699;
  border: none;
  border-radius: 5px;
  margin: 30px auto;
}

.program-btn a{
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 0px !important;
}



.swiper-button-next, 
.swiper-button-prev {
  background: none;
  border: none;
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
  display: none; /* hides Swiper's default arrow icons */
}


.testimonial-section {
  padding: 40px 20px;
  text-align: center;
}
.swiper{
  overflow: visible !important;
}
.testimonial-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0px 2px 8px 0px #33669947;
  max-width: 600px;
  margin: auto;
  transition: transform 0.3s ease;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  opacity: 0.6;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.swiper-button-next img,
.swiper-button-prev img {
  max-width: 80px; /* or whatever size you want */
  height: auto; /* keep image ratio */
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: auto;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: bold;
  color: #0072ff;
}

.testimonial-program {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}

.testimonial-stars {
  /* font-size: 1.1rem; */
  color: #336699;
}

.testimonial-stars i {
  color: #336699;
  font-size: 16px;
  margin: 0 2px;
}

/* Adjust navigation arrows */
.swiper-button-prev, .swiper-button-next {
  color: #aaa;
}

.testimonial-wrapper {
  position: relative;
  padding-top: 40px; /* space for floating avatar */
}

.testimonial-avatar-floating {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blogs-container{
  padding:30px 80px;
}

.blogs-container h2{
  text-align: center;
  margin-bottom: 50px;
  color: #3A3A3A;
  font-weight: 700;
  font-size: 30px;
}

.blogs-box{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.blogs-card{
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 12px 0px #00000014;
  margin-bottom: 20px;
}

.content-1{
  display: flex;
  gap: 1.5rem;
  font-size: 14px;
  color: #A1A1A1;
}

.blog-card > div{
  flex: 1;
}

.blogs-card h4{
  margin: 10px 0px;
  color: #575757;
  font-size: 16px;
}

.blogs-card p{
  font-size: 14px;
}


.blogs-card .blog-content{
  padding: 0px 20px;
}





/* tab and accordion */


.form-grid.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .form-grid.two-column {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 1rem;
  }
}

.success-message {
  background-color: #e6f9ea;
  color: #2a7f41;
  padding: 10px 15px;
  margin-top: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #2a7f41;
  border-radius: 4px;
  font-weight: 500;
}

input[type="radio"]{
width:auto!important;
}


.tab-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 10px;
}

.tab-wrapper h2{
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #3A3A3A;
}

.tab-wrapper h2 span{
  color: #003367;
}

.tab-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  padding: 20px 0px;
  box-shadow: 0px 2px 8px 0px #0000001F;
}

.tab-button {
  padding: 12px 20px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  background: #f1f1f1;
  color: #1f3e67;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;
  z-index: 1;
  position: relative;
  min-width: 250px;
  font-size: 20px;
}

.tab-button.active {
  background: #1f3e67;
  color: #fff;
}

.tab-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 5px;
  background: #ccc;
  z-index: 0;
  transform: translateY(-50%);
}

.tab-content {
  width: 100%;
  padding: 30px 20px;
  background: #fff;
  display: none;
  border-radius: 8px;
}

.tab-content.active {
  display: block;
}

.health-forms {
  width: 90%;
  margin: 0px auto;
  box-shadow: 0px 4px 8px 0px #0000001f;
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom:0px;
}

.form-label {
  font-weight: 600;
  margin-bottom: 5px;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-option {
  background: #e9f3fb;
  padding: 10px 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-option input {
  accent-color: #1f3e67;
  width: 20px;
  height: 20px;
}

.button-wrapper {
  text-align: right;
  margin-top: 20px;
}

.next-btn {
  background: #336699;
  color: #fff;
  padding: 10px 35px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.form-wrapper-measurement {
  width: 90%;
  margin: 30px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px 0px #0000001f;
}

.measurement-form {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.form-section {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-label {
  font-weight: bold;
  margin-bottom: 5px;
}

.form-input {
  padding: 12px 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 0.2px solid #336699;
  background-color: #e2f0fa; /* Light background color */
  width: 100%;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.btn-send {
  padding: 10px 15px;
  font-size: 14px;
  background-color: #336699;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.height-wrapper {
  display: flex;
  gap: 10px;
}

.waist-options label {
  display: block;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #e2f0fa;
  cursor: pointer;
}

.waist-options label:hover {
  background-color: #e8f0fe;
}

.form-buttons-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-nav {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #336699;
  color: white;
  cursor: pointer;
  flex: 1;
  margin: 0 10px;
  max-width: 150px;
}

/* faq */

.faq-wrapper {
  position: relative;
  padding: 40px;
  /* background: #f9f9f9; */
 margin-bottom:50px;
}

.faq-container {
  width: 100%;
   /*padding-right: 200px;*/ /* Space for overlap */
 margin-left:100px;
}

.accordion-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 4;
  width: 60%;
}

.accordion-section .accordion-item  {
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.accordion-header h3 {
  font-size: 1rem;
  font-weight: bold;
}

.icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.accordion-content {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

.accordion-item.active .accordion-content {
  display: block;
}

.question-box {
  position: absolute;
  top: 20px;
  right: 0;
  width: 40%;
  background: #e9f2fc;
  padding: 80px 40px 80px 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.question-container {
  width: 60%;
  margin: 0px auto;
}

.question-box h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #3A3A3A;
}

.question-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.question-box button {
  background: #336699;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  font-family: poppins;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .faq-container {
    padding-right: 0;
  }

  .question-box {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .measurement-form {
    flex-direction: column;
  }

  .form-buttons-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .btn-nav {
    margin: 0;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .tab-container {
    flex-direction: column;
    gap: 10px;
  }

  .tab-line {
    display: none;
  }

  .tab-button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}




/* Responsive */
@media (max-width: 992px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}



/*  new */
@media screen and (max-width: 1024px){


  .fatty-liver-banner{
    flex-direction: column;
  }

  .liver-banner-content h2{
    text-align: center;
  }

  .liver-banner-content p {
    text-align: center;
  }

  .liver-banner-content .banner-btn {
    justify-content: center;
  }

  .liver-health-count{
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .liver-health-count .doctor-img{
    width: 90%;
  }

  .liver-health-count .count-box-container{
    width: 100%;
  }

  .count-box-container .count-box{
    width: 40%;
  }

  .appointment-section{
    width: 90%;
  }

  .card-section{
    padding: 30px;
  }

  .card{
    width: 45%;
  }

  .liver-care-program{
    padding: 30px;
  }

  .liver-card-container .liver-card{
    width: 40%;
  }

  .blogs-card{
    width: 100%;
  }
}


/* Responsive Fix */
@media (max-width: 768px) {

  body{
    overflow-x: hidden;
  }

  .faq-container {
    padding-right: 0;
  }

  .question-box {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .tab-container{
    flex-direction: column;
    gap: 1rem;
  }

  .tab-line {
    display: none;
  }

  .liver-card-container .liver-card{
    width: 90%;
  }

  .accordion-section{
    width: 100%;
  }

  .question-box{
    padding: 30px;
    position: relative;
  }
}

@media (max-width: 768px) {
  .measurement-form {
    flex-direction: column;
  }

  .form-buttons-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .btn-nav {
    margin: 0;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .tab-container {
    flex-direction: column;
    gap: 10px;
  }

  .tab-line {
    display: none;
  }

  .tab-button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}




/* Responsive */
@media (max-width: 992px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .fatty-liver-banner{
    padding: 10px;
  }

  .liver-banner-content h2{
    font-size: 25px;
  }

  .liver-banner-content p{
    font-size: 16px;
  }

  .liver-banner-content .banner-btn{
    gap: 1rem;
  }

  .tab-container{
    padding: 30px;
  }

  .tab-content{
    padding: 10px;
  }

  .count-box-container .count-box{
    width: 90%;
  }

  .appointment-container{
    padding: 10px;
  }

  .appointment-form{
    flex-direction: column;
  }

  .appointment-section{
    padding: 10px;
  }

  select{
    width: 70%;
  }

  .book-btn{
    width: 50%;
  }

  .blogs-card{
    flex-direction: column;
    padding: 20px;
    align-items: baseline;
    width:80%;
  }

  .blogs-card .blog-content{
   margin-top:20px;
 }

  .blogs-container{
    padding: 10px;
  }

  .faq-wrapper{
    padding: 10px;
  }

  .accordion-section{
    padding: 0px;
  }

  .question-container{
    width: 100%;
  }
}
@media screen and (max-width: 480px){

html{
	overflow-x:hidden;
}

.faq-container{
   	margin-left: 0px

}
.book-btn{
margin-left:0px;
}

}








/*service  */
.service-container {
  padding: 20px 50px;
  margin-top: 20px;
}

.service {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.service .content{
flex-direction:column;
margin-bottom:0px;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 220px; /* responsive width */
  min-width: 220px;
}

.icon-circle {
  background-color: #336699; /* blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 34px;
  height: 34px;
  fill: white;
}

.content h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  color: #222;
}

.content p {
  margin: 0;
  font-size: 0.9rem;
  color: #575757;
}

.separator {
  width: 1px;
  background-color: #ccc;
  margin: 0 10px;
  align-self: center;
  height: 30px;
}




/*video */
.liver-video-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 50px;
  margin-top: 30px;
}

.video-box {
  flex: 1 1 50%;
  max-width: 700px;
}

.video-box video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-content {
  flex: 1 1 45%;
}

.video-content h2 {
  font-size: 1.8rem;
  color: #3a3a3a;
  margin: 0px 0px 10px 0px;
}

.video-content h4 {
  color: #336699;
  font-family: poppins;
  font-weight: 500;
  font-size: 25px;
  margin: 0px 0px 10px 0px;
}

.video-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.custom-list li::before {
  content: "\2713"; /* Unicode checkmark ✓ */
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  color: #3a3a3a; /* Checkmark color */
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
}


/* programs */
.program-section {
  padding: 50px 30px 80px 30px;
  background-color: #f9f9f9;
  text-align: center;
  background: linear-gradient(360deg, #E2F0FA 0%, #C9DCEC 0%, #B3CBE0 25.03%, #799DC0 71.16%, #507DA9 91.35%, #336699 100%);
  margin: auto;
}
.program-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #fff;
}
.program-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #fff;
}
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.image-box {
  position: relative;
  flex: 0 0 calc(30.333% - 20px);
  max-width: calc(30.333% - 20px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.image-box img {
  width: 100%;
  height: auto;
  display: block;
}
.image-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #336699CC;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

/* Mobile styles */
@media (max-width: 768px) {
  .image-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .liver-video-section {
    flex-direction: column;
    gap: 20px;
  }

  .video-content,
  .video-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .video-content h2 {
    font-size: 1.5rem;
  }
}


/*  stage */
.stage-container{
  margin: 0px auto;
  padding: 40px 50px;
}

.stage-container h2{
  text-align: center;
  font-size: 30px;
  color: #575757;
  margin: 0px 0px 10px 0px;
}

.stage-container p{
  text-align: center;
  font-size: 20px;
  color: #575757;
  margin: 0px;
}

.stage-container .liver-img img{
  width: 100%;
}

@media (max-width: 768px){
  .stage-container{
    padding: 20px;
  }
}