html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
   padding: 0;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  color: white;
  padding: 15px 30px;
  transition: all 0.4s ease-in-out;
  height: 120px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  animation: logoFadeIn 1.2s ease-in-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.logo img {
  width: 120px;
  height: 100px;
  margin-right: 40px;
  color: white;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: brightness(1.1);
}

/* Keyframe for logo fade-in */
@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.actions .btn {
  text-decoration: none;
  padding: 10px 20px;
  margin-left: 10px;
  font-weight: bold;
  border-radius: 5px;
  color: white;
}


.btn-subscribe {
  background-color: gold;
  color: black;
  transition: all 0.4s ease-in-out;
  animation: fadeInBtn 1s ease-in-out forwards;
  opacity: 0;
}

.btn-signin {
  background-color: green;
  transition: all 0.4s ease-in-out;
  animation: fadeInBtn 0.8s ease-in-out forwards;
  opacity: 0;
  padding: 10px 20px;
  font-size: 16px;
}

/* Mobile screens ke liye */
@media (max-width: 320px) {
  .btn-signin {
    font-size: 14px;
    padding: 8px 16px;
    display: inline-block;
    margin-left: 5px;

    .actions .btn {
    width: 80%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
}
}


/* Page load animation */
@keyframes fadeInBtn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover animation */
.btn-signin:hover,
.btn-subscribe:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-icon {
  font-size: 28px;
  cursor: pointer;
  margin-left: 50px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 20px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px white;
  padding: 25px;
  z-index: 1000;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  width: 200px;
}

.dropdown-menu li {
  padding: 12px 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  
}

.dropdown-menu li:hover {
  color: blue;
}

.logo-section {
  display: flex;
  align-items: center;
}

.hero {
  background-color: #ffffff;
  padding: 80px 20px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.growth {
  background-color: #f1f1f1;
  padding: 80px 20px;
  animation: fadeUp 1.2s ease-in-out;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.growth-content {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.growth-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.growth-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.growth-text .intro {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.article-snippet h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.article-snippet p {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.article-snippet small {
  font-size: 14px;
  color: #777;
}

.latest-list h4 {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
}

.latest-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.latest-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.growth-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: center;
}

.growth-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.search-bar {
  display: flex;
  align-items: center;
  background: white;
  overflow: hidden;
  max-width: 550px;
  flex: 1;
  margin: 0 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease-out forwards;
}

.search-bar input {
  border: none;
  padding: 8px 12px;
  flex: 1;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.search-bar input:focus {
  outline: none;
  background-color: #f3f3f3;
}

.search-bar button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-bar button:hover {
  background-color: green;
}

/* Animation Keyframe */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .search-bar {
    display: none;
  }
}
.our-story {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.our-story h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #222;
  animation: fadeDown 0.8s ease-in-out;
}

.story-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.story-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in-out;
}

.story-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.story-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.story-box .en {
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.story-box .hi {
  color: #555;
  font-style: italic;
  font-size: 15px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.strategies{
 padding: 60px 20px;
background-color: #f9f9f9;
font-family: 'Segoe UI', sans-serif;
}

.strategies-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.strategies-text h3 {
  margin-top: 20px;
  font-size: 24px;
  color: #444;
}

.strategies-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}


.strategies-text {
  flex: 1;
  min-width: 300px;
}


.strategies-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeSlide 1s ease-in-out;
  flex-wrap: wrap;
}

.strategies-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: center;
}

.strategies-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 500px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .strategies-container {
    flex-direction: column;
    text-align: center;
  }

  .strategies-image img {
    width: 100%;
    margin-bottom: 30px;
  }

  .strategies-text h2 {
    font-size: 28px;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer h3, .site-footer h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.site-footer p, .site-footer li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
#mindful-living ul.mindful-points {
  list-style-type: none;
  padding-left: 0;
}
#mindful-living ul.mindful-points li {
  margin-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.534);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
#mindful-living ul.mindful-points li:hover {
  transform: scale(1.02);
}
#mindful-living h5 {
  font-weight: bold;
  margin-bottom: 8px;
}

/* Healthcare Section Custom Styling */
section.container {
  background-color: #f7f9fc;
  border-radius: 10px;
  padding: 50px 20px;
  margin-top: 40px;
}

/* Card Styles */
.card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Newsletter input */
form input[type="email"] {
  border-radius: 8px;
  padding: 10px 15px;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Newsletter button */
form button {
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #28a745; /* Slightly darker green */
  color: white;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .card-img-top {
    height: 160px;
  }

  form input[type="email"] {
    width: 80%;
  }

  section.container {
    padding: 30px 10px;
  }
}

.guarantee-video-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.guarantee-video-section .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.guarantee-video-section .container {
  z-index: 2;
}

.video-control-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.video-control-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Already present styles (unchanged for reference)... */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: flex-start;  /* align at top for scroll */
  justify-content: center;
  padding: 20px 10px; /* Add padding */
  overflow-y: auto;   /* ✅ Enables vertical scroll */
  backdrop-filter: blur(5px);
}


.new-styled-modal {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #aaa;
  padding: 30px;
  border-radius: 20px;
  width: 95%;
  max-width: 900px;
  position: relative;
  background-image: url('https://www.transparenttextures.com/patterns/black-paper.png');
  background-repeat: repeat;
  box-shadow: 0 0 30px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.plan-features-new {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.feature-card-new {
  background: rgba(255, 255, 255, 0.308);
  border: 1px solid black;
  padding: 20px;
  border-radius: 15px;
  flex: 1 1 40%;
  min-height: 200px; 
  min-width: 260px;
  color: #fff;
  backdrop-filter: blur(3px);
  box-shadow: 0 0 10px gainsboro;
}

.bank-qr-combined-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  color: white;
  margin-top: 20px;
}

.qr-left, .bank-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.qr-img {
  max-width: 150px;
  margin: 0 auto 10px;
}

.qr-left p {
  margin: 0;
  font-size: 16px;
}

.bank-right h4 {
  margin-bottom: 10px;
}

.bank-right p {
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* ✅ Improved Responsive for Tablets and Mobiles */
@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-start;
    padding: 20px 10px;
    overflow-y: auto;
  }

  .new-styled-modal {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .plan-features-new {
    flex-direction: column;
    gap: 15px;
  }

  .feature-card-new {
    flex: 1 1 100%;
    min-width: unset;
    padding: 15px;
  }

  .bank-qr-combined-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .qr-left, .bank-right {
    width: 100%;
    align-items: center;
  }

  .qr-img {
    max-width: 120px;
  }

  .modal-close {
    font-size: 26px;
    top: 10px;
    right: 15px;
  }

  .modal-box h2 {
    font-size: 20px;
  }
}

/* ✅ Extra Safe for Very Small Screens (< 480px) */
@media (max-width: 480px) {
  .feature-card-new {
    font-size: 14px;
  }

  .qr-left p, .bank-right p {
    font-size: 14px;
  }

  .modal-box h2 {
    font-size: 18px;
  }

  .modal-close {
    font-size: 24px;
  }
}
