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

:root {
  /* Backgrounds */
  --color-bg-main: #f3f1eb; /* #f0f0f5 Light modern gray (overall background) */
  --color-bg-surface: #ffffff; /* Card/box background (white) */

  /* Text Colors */
  --color-text-primary: #1f2937; /* Dark gray-blue (on white background) */
  --color-text-on-bg: #111827; /* Text on gray background */
  --color-text-muted: #6b7280; /* Subtle text (labels, etc.) */
  --color-text-heading: #374151;

  /* Accent (primary brand color) */
  --color-primary: #009dff; /* Modern blue */
  --color-primary-hover: #2563eb;
  --color-primary-light: #dbeafe;
  --color-active: #c2d4f8;
  --color-healthcare: #21936a;

  /* Education color */

  --color-education-primary: #955eed;

  /* Border & Divider */
  --color-border: #e5e7eb;

  /* Radius & Shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);

  /* for the font size */
  --font-size-sm: 13px;
  --font-size-base: 15px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
}

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

html,
body {
  height: auto; /* Don't set fixed height */
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.mt-7 {
  margin-top: 75px;
}

body {
  background-color: var(--color-bg-main);         
  font-family: "Inter", system-ui, sans-serif;
}

.main_section {
  min-height: 100vh;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 15px;
  background-color: var(--color-bg-surface);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  width: 95%;
  z-index: 10000;
  height: 60px;
  transition: all 0.3s ease; /* smooth transition */
}

.bottom-nav.scrolled {
  bottom: 0;
  width: 100%;
  height: 80px;
  border-radius: 0;
}

.nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  /* padding: 0 20px; */
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #8e9aaf;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 15px;
  min-width: 60px;
  line-height: 1.1;
}

.nav-item:hover {
  color: #4a90e2;
  transform: translateY(-2px);
  text-decoration: none;
}

.nav-item.active {
  color: #4a90e2;
}

.nav-item i {
  font-size: 22px;
  /* margin-bottom: 4px; */
  transition: all 0.3s ease;
}

.nav-item span {
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.nav-item:hover span {
  opacity: 1;
}

.heart_container {
  position: relative;
}

/* Elevated heart button */
.heart-btn {
  background: #009dff;
  color: white !important;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  z-index: 1000;
  position: relative;
  bottom: 30px;
}

.heart_icon_bottom {
  font-size: 30px !important;
}

/* End of the bottom Nav */

/* sticky navbar */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  z-index: 1000;
  width: 100%;
}

.mob_navbar_cstm {
  height: 60px;
  background-color: var(--color-bg-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 10px;
  width: 95%;
  z-index: 1000;
  border-radius: 20px;
  transition: all 0.3s ease; /* smooth transition */
}

/* When scrolled */
.mob_navbar_cstm.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
}

.logo_img {
  width: 120px;
}

.menu_icon {
  font-size: 25px;
}

.mobile_nav_version {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-bg-surface);
  display: block;
  width: 80vw;
  height: 100vh;
  z-index: 1000;
  overflow-y: scroll;
  transform: translateX(-100%); /* hidden by default */
  transition: transform 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  box-shadow: var(--shadow-md);
}

.mobile_nav_version.active_sidebar {
  transform: translateX(0);
}

/* Prevent body scroll when menu is open */

/* Hide close menu initially */
.close-menu {
  display: none;
  cursor: pointer;
  font-size: 25px;
}

/* Show close menu when active */
.mobile_nav.active ~ .close-menu,
.menubar.active .close-menu {
  display: inline-block;
}

.dark_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.mob-logo {
  width: 130px;
}

.nav_links {
  padding: 20px;
  margin-bottom:100px;
}

.only-mob {
  list-style-type: none;
  padding: 5px 0px;
}

.sub_text {
  color: var(--color-text-muted);
  font-weight: 600;
}

.sub_links {
  padding: 0px;
}

.sub_link {
  list-style-type: none;
  padding: 10px 15px;
}

.sub_link a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-base);
}

.sidenav_icon {
  background-color: #c2d4f8;
  height: 38px;
  width: 38px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.ri_heart {
  color: #e2206e;
  background-color: rgba(226, 32, 110, 0.1);
  box-shadow: 0 4px 8px rgba(226, 32, 110, 0.1);
}

.ri_team {
  color: #0091de;
  background-color: rgba(0, 145, 222, 0.1);
  box-shadow: 0 4px 8px rgba(0, 145, 222, 0.1);
}

.ri_hand {
  color: #e5b32d;
  background-color: rgba(229, 179, 45, 0.2);
  box-shadow: 0 4px 8px rgba(229, 179, 45, 0.1);
}

.ri_hospital {
  color: #19b48e;
  background-color: rgba(25, 180, 142, 0.1);
  box-shadow: 0 4px 8px rgba(25, 180, 142, 0.1);
}

.ri_mail {
  color: #9146da;
  background-color: rgba(145, 70, 218, 0.15);
  box-shadow: 0 4px 8px rgba(145, 70, 218, 0.1);
}

.logout_btn{
  margin-top: 30px;
  text-align: center;
  background-color: orangered;
  padding: 8px;
  border-radius: var(--radius-sm);
  outline: none;
  list-style-type: none;
}

.logout_btn a{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.login_btn{
  margin-top: 30px;
  text-align: center;
  background-color: var(--color-primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  outline: none;
  list-style-type: none;
}

.login_btn a{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/* end of sticky navbar */

.mob_video_container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mob_video_container video {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

.mob-collection-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 8px; /* spacing between the cards */
  padding: 10px;
}

.mob-container-data {
  background-color: var(--color-bg-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  /* border: 2px solid var(--color-border); */
  padding: 6px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}



.mob-collection-data img {
  width: 28px;
}

.mob-container-data h6 {
  font-size: var(--font-size-base);
  margin-top: 5px;
  margin-bottom: 0;
  color: var(--color-text-primary);
  text-align: center;
}



.mob-container-data span {
  margin: 0;
  font-size: var(--font-size-sm);
  text-align: center;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.mob_featured_products h5 {
  color: var(--color-text-on-bg);
}

.featured-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-content: center;
}

.featured_underline {
  position: relative;
  display: inline-block;
}

.featured_underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px; /* height of the underline */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 6"><path d="M0,3 Q50,6 100,3" stroke="%23ff6347" fill="transparent" stroke-width="2"/></svg>') no-repeat;
  background-size: 100% 100%;
}


.overlay-text h5 {
  font-size: var(--font-size-base);
  color: var(--color-bg-surface);
  line-height: 1.2;
  margin: 0;
}

.overlay-text p {
  font-size: 13px;
  color: var(--color-bg-surface);
  line-height: 1.2;
  margin: 0;
}

.feature-container {
  background-color: var(--color-bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.image-container {
  width: 100%;
  height: 230px;
  /* aspect-ratio: 1 / 1; */
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  flex-shrink: 0;
}

/* .image-container span{
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 3px;
    color: #fff;
    /* background-color: var(--color-primary-hover);
    background-color: orangered;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
} */

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' if you want full image with possible empty space */
  object-position: center;
  display: block;
}

.image-container div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    /* darkest at the bottom */ rgba(0, 0, 0, 0.5) 60%,
    /* still a bit dark in the middle */ rgba(0, 0, 0, 0) 100%
      /* slight darkness at the top edge */
  );
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.image-container div h6,
.image-container div span {
  line-height: 1.1; /* tighten vertical spacing (default ~1.5) */
  letter-spacing: -0.3px; /* tighten character spacing */
  word-spacing: -1px; /* tighten spacing between words */
  margin: 0; /* remove default extra margins */
}

.content_area h6 {
  font-weight: 600;
}

.content_area span {
  margin-top: 5px;
  font-size: var(--font-size-sm);
}

.content-container {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cause_detail {
  flex: 1;
}

.cause-detail h6 {
  font-size: 14px;
  color: var(--color-text-on-bg);
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 2px;
}

.cause-detail span {
  font-size: 14px;
  color: var(--color-text-muted);
  display: inline-block;
  margin-bottom: 10px;
}

.donate_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0px;
  margin-top: auto;
}

.donate_btn a {
  text-decoration: none;
  width: 100%;
  text-align: center;
  background-color: var(--color-primary);
  color: #fff;
  padding: 6px 5px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cause_section {
  margin-top: 80px;
  margin-bottom: 100px;
}

.our_causes_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our_causes_top h5 {
  color: var(--color-text-on-bg);
}

.our_causes_top span {
  background-color: var(--color-bg-surface);
  padding: 5px;
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-md);
}

.our_causes_top a {
  background-color: var(--color-bg-surface);
  padding: 5px;
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.search_div{
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  color: var(--color-bg-surface);
}

.search_div h5{
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.search_div p{
  font-size: var(--font-size-sm);
}

.search_container {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff; /* semi-transparent white over blue */
  border-radius: var(--radius-md);
  padding: 0 12px;
  height: 45px;

  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  backdrop-filter: blur(10px); /* glass blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* Depth / 3D effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  color: #fff; /* default text color for contrast */
}

.search_container input {
  background-color: transparent;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 10px;
  color: #fff; /* text should pop over blue */
  font-size: 16px;
  caret-color: #fff;
}

.search_container input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

    .google_sign{
        background-color: #fff;
        padding: 8px;
        border-radius: 40px;
        border: 1px solid gray;
        margin-bottom: 10px;
        font-size: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 600;
    }

.all_categories {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.all_categories::-webkit-scrollbar {
  display: none;
}

.all_categories {
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #888 transparent; /* Thumb and track colors */
}

/* For Chrome, Edge, and Safari */
.all_categories::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.all_categories::-webkit-scrollbar-track {
  background: transparent;
}

.all_categories::-webkit-scrollbar-thumb {
  background-color: rgba(136, 136, 136, 0.7);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.all_categories_data {
  background-color: var(--color-bg-surface);
  padding: 8px;
  border-radius: var(--radius-sm);
  width: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  color: var(--color-text-muted);
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.all_categories_data img {
  width: 35px;
}

.all_categories_data h6 {
  font-size: var(--font-size-base);
}

.categories_active {
  color: var(--color-text-primary);
  background-color: #c2d4f8;
}

.packages_container {
  margin-bottom: 100px;
}

.total_amount_data {
  position: fixed; /* fixed at top */
  top: 75px;
  left: 50%;
  transform: translateX(-50%); /* center horizontally */
  width: 90%;
  
  /* 🔹 Blue Glass Effect */
  background: linear-gradient(
    135deg,
    rgba(0, 157, 255, 0.15),
    rgba(0, 157, 255, 0.05)
  ); /* subtle blue gradient */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0, 157, 255, 0.25); /* blueish border */
  
  /* Padding & radius */
  padding: 12px 24px;
  border-radius: var(--radius-md);
  
  /* Shadow — bluish */
  box-shadow: 0 8px 20px rgba(0, 157, 255, 0.15);

  /* Smooth animation */
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.total_amount_data h5 {
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
  text-align: center;
}


.edu_content {
  margin-top: 70px;
}

.progress_outline {
  height: 12px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgb(221, 172, 48);
}

.progress_complete_outline {
  border: 1px solid green;
}

.progress_bar {
  height: 100%;
  width: 70%;
  background-color: rgb(221, 172, 48);
}

.complete-progress {
  background-color: green;
}

.edu_amount {
  font-size: var(--font-size-base);
  line-height: 0.9;
}

.pending-amount {
  color: red !important;
}

.completed-amount {
  color: green !important;
}

.image-container {
  position: relative;
}

.custom_badge {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
  font-size: var(--font-size-base);
}

/* Volunteer section */

.volunteer_profile{
  display: none;
}


        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-group:last-child {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .custom-input {
            width: 100%;
            padding: 14px 14px;
            font-size: 15px;
            color: #2d3748;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-family: inherit;
            cursor: not-allowed;
        }

        .custom-input:read-only {
            background: #f0f4f8;
            color: #4a5568;
            border-color: #cbd5e0;
        }

        .custom-input:read-only:active {
            border-color: #a0aec0;
            background: #f8fafc;
        }

.volunteer_section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;

  /* Safari fix */
  height: -webkit-fill-available;
}

.volunteer_content h5 {
  color: var(--color-text-on-bg);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 5px;
}

.volunteer_content p {
  margin: 0;
  color: var(--color-text-muted);
}

.volunteer_signup {
  margin-top: 25px;
  padding: 0px 25px;
}

.google_signIn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign_in {
  background-color: var(--color-bg-surface);
  height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  box-shadow: var(--shadow-md);
  gap: 20px;
  text-decoration: none;
  color: var(--color-text-primary);
}

.sign_in img {
  width: 20px;
}

.or_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.or {
  margin: 0 5px;
  color: var(--color-text-muted);
}

.line {
  height: 1px;
  width: 100%;
  background-color: var(--color-text-muted);
}

.form-container {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--color-bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input_box {
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text field */
  height: 50px; /* bigger so text is readable */
  width: 100%;
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  padding: 0 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgb(194, 194, 194);
}

.input_box i {
  font-size: 18px;
  color: var(--color-text-muted);
}

.input_box input {
  flex: 1; /* take remaining width */
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
}

.signup_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 15px;
  text-decoration: none;
  border-radius: 40px;
  width: 200px;
  border: none;
}

.a_link{
  text-decoration: none;
}


.back_icon{
  font-size:10px;
  color: var(--color-text-primary);
  font-weight: 500;
}


        .volunteer_greet {
            color: var(--color-text-muted);
            font-size: var(--font-size-sm);
            font-weight: 500;
            margin-bottom: 5px;
        }

        .volunteer_name {
            color: var(--color-text-primary);
            font-size: var(--font-size-lg);
            font-weight: 700;
            margin-bottom: 0;
        }

        .avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .avatar img{
          height: 50px;
          width: 50px;
          border-radius: 100%;

        }

        

        .volunteer_menu{
          position: relative;
        }

        /* Dropdown */
.volunteer_profile {
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  min-width: 200px;
}

.volunteer_profile.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;

}

.volunteer_profile ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  width: 100%;
}

.volunteer_profile ul li {
  margin: 8px 0;
}

.volunteer_profile ul li a {
  display: block;
  justify-content: space-between;
  text-decoration: none;
  color:var(--color-text-on-bg);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
  font-size: var(--font-size-base);
}

.volunteer_profile ul li a:hover {
  background: #f0f0f0;
}


        .volunteer_section_title {
            color: var(--color-text-primary);
            font-size: var(--font-size-lg);
            font-weight: 600;
        }

        .storage-card {
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 15px;
            border: none;
            height: 170px;
            transition: transform 0.2s ease;
            position: relative;
        }

        .store_content{
          width: 50%;
          margin-top: 20px;
        }

        .volunteer_join{
          border: none;
          background-color: var(--color-primary);
          color:var(--color-bg-surface);
          padding: 10px 20px;
          text-transform: uppercase;
          border-radius: var(--radius-md);
          box-shadow: var(--shadow-md);
          font-size: var(--font-size-base);
          font-weight: 600;
        }

        .storage-card:hover {
            transform: translateY(-2px);
        }

        .storage-card.dropbox {
            background-color: #e3f2fd;
        }

        .storage-card.google-drive {
            background-color: #f3e5f5;
        }

        .storage-card.mediafire {
            background-color: #fff3e0;
        }

        .storage-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .dropbox-icon {
            background-color: #0061ff;
            color: white;
            font-size: 24px;
        }

        .google-icon {
            background-color: white;
            font-size: 24px;
        }

        .mediafire-icon {
            background-color: #1299f3;
            color: white;
            font-size: 24px;
        }

        .storage-name {
            color: #212529;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .storage-expiry {
            color: #6c757d;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .storage-usage {
            color: #495057;
            font-size: 13px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .progress {
            height: 6px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .progress-bar {
            border-radius: 10px;
        }

        .dropbox .progress-bar {
            background-color: #0061ff;
        }

        .google-drive .progress-bar {
            background-color: #9c27b0;
        }

        .mediafire .progress-bar {
            background-color: #1299f3;
        }





/* Profile page */

.profile_container {
  height: 160px;
  background-color: var(--color-bg-surface);
  border-radius: 0px 0px 20px 20px;
  box-shadow: var(--shadow-md);
  padding: 10px;
}

.profile_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.profile_content p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

/* Our Team members */
.our_team {
  color: var(--color-text-primary);
  font-weight: 600;
}

.ceo_card{
  background-color: #6cc9ff;
  border-radius: var(--radius-md);
  height: 160px;
  width: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 8;
  padding: 12px;
}

.img-container{
  position: absolute;
  right: -10px;
  top: -55px;
  z-index: 10;
}

.content{
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-direction: column;
}

.content_description{
  width: 58%;
  letter-spacing: 0.1px;
  line-height: 1.2;
  color: #fff;
  font-size: 14px;
}

.content h5{
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-bg-surface);
}

.content h6{
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-bg-surface);
}

.img-container img{
  width: 195px;
}

.managing-director{
  background-color: #fdb577;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.managing-director img{
  height: 140px;
  width: 140px;
}

/* The main card container */
.linkedin-card {
  /* max-width: 380px; */
  width: 100%;
  background-color: var(--color-bg-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem; /* 24px */
  box-shadow: var(--shadow-md);
  margin-bottom: 100px;
}

/* Background for the LinkedIn icon */
.linkedin-icon-bg {
  background-color: var(--color-bg-main);
  border-radius: 0.625rem; /* 10px */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: var(--color-border);
  color: white;
  flex-shrink: 0; /* Prevents the icon from shrinking */
}

.linkedin-icon-bg img {
  width: 40px;
}

/* Style for the "Knows us Better" text */
.knows-us {
  color: #0a66c2;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Style for the "Follow our Linkedin" text */
.follow-linkedin {
  font-weight: 700;
  color: #212529;
  margin: 0;
}

/* Style for the description text */
.description-text {
  color: #6c757d;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mb-7 {
  margin-bottom: 100px;
}

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

.icon-s {
  font-size: 11px;
  height: 42px;
  line-height: 42px;
  width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-facebook {
  background-color: #3b5998;
  color: #fff;
  box-shadow: 0 4px 8px rgba(59, 89, 152, 0.4);
}

.bg-whatsapp {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.bg-twitter {
  background-color: #1da1f2;
  color: #fff;
  box-shadow: 0 4px 8px rgba(29, 161, 242, 0.4);
}

.bg-linkedin {
  background-color: #0077b5;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 119, 181, 0.4);
}

.bg-instagram {
  background-color: #e1306c;
  color: #fff;
  box-shadow: 0 4px 8px rgba(225, 48, 108, 0.4);
}

.bg-youtube {
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
}

.banner_section p {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.5px; /* Slight letter spacing */
  word-spacing: 1px; /* Slight word spacing */
}

.today_donations{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 15px;
  justify-content:space-between;
}

.today_card {
  height: 100px;
  width: 100%;
  border-radius: var(--radius-md);
  border-top-right-radius: 0px;
  /* box-shadow: var(--shadow-md); */
  padding: 16px;
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden; /* ensures the cut circle effect stays inside */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Circle cutout */
.today_card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-bg-main); /* page background color (acts like cutout) */
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.05);
}

/* Icon styling */
.today_card i {
  font-size: 24px;
  color: var(--color-primary);
}

.today_card h6 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.today_card span {
  font-size: 14px;
  color: var(--color-text-light);
}


.today_meal{
  background-color:#f95a63;
  color: #fff;
}

.today_donation{
  background-color: #3fd5dd;
  color: #fff;
}

.today_education{
  background-color: #4f51e5;
  color: #fff;
}

.today_orphanage{
background-color: #ff8e38;
color: #fff;
}






.vision_content{
  background-color: var(--color-bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--color-text-primary);
  padding: 10px;
  font-size: var(--font-size-base);
}


.vision_data_container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 15px;
  justify-content:space-between;
}

.mob-vision-data{
  background-color: #ff8e38;
}

.mob-vision-data img{
  width: 90px;
}

.annual_report {
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  height: 150px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative; /* important for ::before positioning */
  overflow: hidden;   /* clip the shine effect */
}

.meals_day{
  height: 200px;
}

/* Shine layer */
.annual_report::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg) translateX(-100%);
  animation: shine-sweep 4s infinite;
}

/* Animation */
@keyframes shine-sweep {
  0% {
    transform: rotate(25deg) translateX(-100%);
  }
  100% {
    transform: rotate(25deg) translateX(100%);
  }
}


.annual_report h5{
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: 700;
}



.report {
  display: inline-block;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  width: 100%; /* Full-width for mobile */
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;

  /* Glassmorphism core */
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  backdrop-filter: blur(10px); /* glass blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* Depth / 3D effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  color: #fff; /* default text color for contrast */
}

/* Hover effect */
.report:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* View Report (slight tint in blue glass) */
.view_report {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Download Report (slight white glass) */
.download_report {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* this is for the daily meal */
/* Parent flex */
.annual_report .d-flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

/* Both inner boxes (equal size glassmorphism) */
.annual_report .member,
.annual_report .meal_cost {
  flex: 1; /* equal width */
  text-align: center;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* Layout */
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

  /* Smooth animation */
  transition: all 0.3s ease;
}

.annual_report .member:hover,
.annual_report .meal_cost:hover {
  background: rgba(255, 255, 255, 0.25); /* slightly brighter on hover */
}

/* Headings inside the boxes */
.annual_report .member h5,
.annual_report .meal_cost h5 {
  font-size: var(--font-size-base);
  margin-bottom: 6px;
  color: #fff;
}

.annual_report .member span,
.annual_report .meal_cost span {
  font-size: var(--font-size-lg);
  font-weight: bold;
  color: #fff;
}


/* Education donation page */

.mob_round_img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  position: relative;
  z-index: 10;
  border: 10px solid #f4f5f7;
  object-fit: cover;
  vertical-align: middle;
}

.mob_profile_container {
  position: relative;
  overflow: hidden;
}

.mob_status {
  position: absolute;
  top: 0px;
  right: 20px;
  z-index: 11;
}

.mob_pending_status {
  display: none;
}

.mob_status img {
  width: 140px;
  opacity: 0.4;
  transform: rotate(-4deg);
}

.mob_student_details {
  position: absolute;
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  width: 80%;
  right: 0;
  height: 140px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.sub_mob_student_details {
  margin-left: 75px;
}

.default_details {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.default_details span {
  font-size: var(--font-size-base);
}

.default_details:first-child span {
  /* Labels */
  color: var(--color-text-muted); /* Subtle gray for labels */
  font-weight: 500;
}

.default_details:last-child span {
  /* Values */
  color: var(--color-text-primary); /* Dark text for values */
  font-weight: 600;
}

.mob_edu_progress_container {
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px 5px;
}

.mob_progress_outline {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #facc15;
  height: 13px;
}

.mob_progress_inline {
  height: 100%;
  background-color: #facc15;
}

.mob_progress_outline_completed {
  border: 1px solid green;
}

.mob_progress_completed {
  background-color: green;
  height: 100%;
}

.mob_amount_track {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.mob_amount_track {
  font-size: 15px;
  font-weight: 600;
}

.mob_goal_amount {
  color: var(--color-text-on-bg);
}

.mob_raised_amount {
  color: red;
  font-size: var(--font-size-lg);
}

.mob_raised_amount_completed {
  color: #19b48e;
  font-size: var(--font-size-lg);
}

.mob_share_section h6 {
  color: var(--color-text-heading);
}

.mob_share_section p {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
}

/* Tab-index */
.glass {
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  /* Smooth transitions for interactive elements */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-buttons {
  width: 100%;
}

.tab-btn {
  flex: 1;
  border: none;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-text-primary);
}

.tab-btn.active {
  background: var(--color-education-primary);
  color: #fff;
}

.tab-content-wrapper {
  width: 100%;
  position: relative;
  /* Remove fixed height and overflow hidden */
  transition: height 0.4s ease;
  overflow: hidden;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  padding: 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

.tab-content.active {
  left: 0;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.mob_tab_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob_tab_buttons {
  width: 50%;
}

.mob_basic_details span:first-child {
  color: var(--color-text-muted); /* Label color (Student Name, Student Age) */
  font-size: var(--font-size-sm); /* Smaller size for label */
  font-weight: 500; /* Medium weight */
  line-height: 1.2;
}

.mob_basic_details span:last-child {
  color: var(--color-text-primary); /* Value color (Irfan, 23) */
  font-size: var(--font-size-base); /* Regular size for value */
  font-weight: 600; /* Slightly bolder for emphasis */
  line-height: 1.2;
}

.mob_img {
  width: 100vw;
  height: 100vh;
}

.mob_update_content p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 5px;
}

.mob_story_update p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.tab_buttons {
  width: 100%;
}

.tab_btn {
  flex: 1;
  border: none;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-text-primary);
}

.tab_btn.active {
  background: var(--color-education-primary);
  color: #fff;
}

.tab_content_wrapper {
  width: 100%;
  position: relative;
  /* Remove fixed height and overflow hidden */
  transition: height 0.4s ease;
  overflow: hidden;
}

.tab-content-video {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  padding: 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

.tab-content-video.active {
  left: 0;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.mob-video-player {
  width: 100%;
  height: 200px;
}

.no_video {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  text-align: center;
}

.fixed_donate_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--color-education-primary);
  color: #fff;
  z-index: 1000;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  outline: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}

.video_category{
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px;
}

.video_category h6{
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  font-weight: 500;
}

.orph_wish_video{
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.modal-fullscreen-custom .modal-dialog {
  z-index: 10000 !important;
}

.modal-fullscreen-custom .modal-content {
  position: relative;
}

/* Top Right Gradient Blob */
.top-right {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at center, #ff6ec7, #8e44ff);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  animation: floatMove1 6s ease-in-out infinite alternate;
}

.top-right-healthcare {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at center, #4ade80, #059669);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  pointer-events: none;
  animation: floatMove1 6s ease-in-out infinite alternate;
}

/* Bottom Left Gradient Blob */
.bottom-left {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle at center, #f50000, #00bbf9);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: floatMove2 8s ease-in-out infinite alternate;
}

.top-right,
.bottom-left,
.center-accent {
  pointer-events: none !important;
}

/* Animations */
@keyframes floatMove1 {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-20px) translateX(15px);
  }
}

@keyframes floatMove2 {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(20px) translateX(-15px);
  }
}

/* Donation form */

.mob_donor_detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob_donor_detail label {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.mob_form {
  padding: 10px;
}

.mob_input {
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  width: 100%;
  outline: none;
  padding: 10px;
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mob_amt_sec {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.amount_btn {
  padding: 8px 5px;
  background-color: transparent;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  border: 2px solid #955eed;
}

.amount_btn.active_pick_amount {
  background-color: #955eed;
  color: #fff;
  border-color: #955eed;
}

/* .sticky_donation_button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 1000;
} */

.mob_common_btn {
  border: none;
  outline: none;
  background-color: #955eed;
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: 600;
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-md);
}

/* healthcare */
.tab-healthcare-btn.active {
  background: var(--color-healthcare);
  color: #fff;
}

.healthcare_fixed_btn {
  background: var(--color-healthcare);
  color: #fff;
}

.healthcare_amount_btn {
  padding: 8px 5px;
  background-color: transparent;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  border: 2px solid var(--color-healthcare);
}

.healthcare_amount_btn.healthcare_active_pick_amount {
  background-color: var(--color-healthcare);
  color: #fff;
  border-color: var(--color-healthcare);
}

.healthcare_sticky_btn {
  background-color: var(--color-healthcare);
}

/* orphanage pages */

.orph_img_container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.orph_img_container img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.orphanage_name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  box-sizing: border-box;
  margin: 0;
}

.orph_description_container {
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.orph_description {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
  padding: 10px;
}

.orph_title {
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.orph_types_donation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px; /* space between items */
}

.orph_type {
  width: 100%;
  height: 200px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.orph_type img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

.orph_donation_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  letter-spacing: 0.3px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  box-sizing: border-box;
  margin: 0;
}

/* grocery kit  */



.grocery-step h6 {
  font-size: var(--font-size-lg) !important;
  color: var(--color-text-on-bg);
  text-align: center;
}

/* .grocery_list {
  padding: 16px 0;
  overflow-y: auto;
} */

.grocery_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin-bottom: 5px;
  transition: all 0.2s ease;
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

#grocery-step-2{
  background-color: var(--color-bg-surface);
  padding: 10px;
  border-radius: var(--radius-md);
}

.grocery_item_info {
  flex: 1;
}

.grocery_item_name {
  font-weight: 600;
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 2px;
}

.grocery_item_price {
  font-size: 14px;
  color: #718096;
}

.quantity_controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity_btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity_btn.minus {
  background: #ff6b6b;
  color: white;
}

.quantity_btn.plus {
  background: #51cf66;
  color: white;
}

.orph_input_container label{
    font-size: var(--font-size-base);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.orph_input_container input{
    background-color: #ffffff;
  border-radius: var(--radius-sm);
  width: 100%;
  outline: none;
  padding: 10px;
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}


/* orphanages packages step indicator */

/* popup */
/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-content {
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: popIn 0.3s ease-out;
}

.popup-content p {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

/* Close button */
#popup-close-btn {
  padding: 8px 16px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

/* Simple animation */
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Utility to hide */
.d-none {
  display: none;
}


.orph_packages_container{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 8px; /* spacing between the cards */
}

.packages-step {
  position: relative;
  text-align: center;
  font-weight: 500;
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all;
}

.packages-step img{
  width: 35px;
}

.packages-step p{
  margin: 0;
  font-weight: 600;
  font-size: var(--font-size-base);
}
.packages-step.active {
  background-color: var(--color-active);
  color: var(--color-text-primary);
}

.heading{
  font-size: var(--font-size-lg) !important;
  color: var(--color-text-on-bg);
  font-weight: 600;
}

.food_container{
  background-color: var(--color-bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
}

.food_heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.food_heading h6{
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
  font-weight: 500;
  margin: 0;
}

.food_list{
  padding-left: 10px;
}

.food_list li{
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  font-weight: 500;
  list-style-type: none;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;

}

.food_list img{
  width: 15px;
}

.food_pricing{
  padding: 10px 5px;
  font-weight: 600;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal_form_container{
  background-color: var(--color-bg-surface);
  padding: 10px;
  border-radius: var(--radius-md);
}

/* orphanage customize food  */

.form-gro-box{
  padding: 10px;
}

.form_check{
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  margin-bottom: 5px;
}



    .form_check_input {
    border:1px solid #197fdf !important;
    margin-right: 20px;
  }
  .form-gro-box h4 span{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #007bff;
    padding: 10px;
    color: #fff;
  }
  .form_check_label{
    color: #111827 !important;
  }

  .wizard-step{
    margin-bottom: 80px;
  }

  .form-gro-box-1{
    background-color: var(--color-bg-surface);
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .form-group label{
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    font-weight: 600;
  }

  .form-group input{
    outline: none;
    border:1px solid var(--color-border);
    background-color: transparent;
    border-radius: var(--radius-md);
  }




/* trackpage */
.tracking_heading{
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.order_summary{
  background-color:var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px;
}

.order_data_1{
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.order_data_img{
  width: 70px;
  height: 70px;
  border-top-right-radius: 30px;
  background-color: var(--color-bg-main);
  padding: 10px;
}

.order_data_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius:10px;
}

.order_name h6{
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1;
}

.order_name span{
  margin-bottom: 0;
  line-height: 1;
  color:rgb(6, 110, 6);
  font-weight: 500;
}

.order_summary_2{
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-text-muted);
}

.order_names{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-base);
}

.order_data_2{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-on-bg);
}

/* track page order */

.new_timeline_container{
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.prefix-timeline_menu h4{
  font-size: var(--font-size-lg);
  color: var(--color-text-on-bg);
  font-weight: 600;
}

.prefix-timeline_menu_container {
   position: relative;
}

.prefix-timeline_menu_container::before {
   content: '';
   position: absolute;
   top: 5px;
   left: 10px;
   background-color: transparent;
   height: 90%;
   width: 2px;
   border-left: 2px dashed rgb(168, 168, 168);
}

.prefix-timeline_menu_container li {
   list-style-type: none;
}

.prefix-timeline_container {
   position: relative;
}

.prefix-timeline_badge {
   border-radius: 50%;
   height: 1.375rem;
   left: -32px;
   position: absolute;
   top: 3px;
   width: 1.375rem;
   border-width: 0.125rem;
   border-style: solid;
   padding: 0.25rem;
   background-color: #fff;
}

.prefix-option_color_before {
   border: 2px solid #ff5031;
}

.prefix-option_color_after {
   border: 2px solid #31a56d;
}

.prefix-option_color_before::after {
   content: "";
   width: 0.625rem;
   height: 0.625rem;
   border-radius: 100%;
   display: block;
   background: #ff5031;
}

.prefix-option_color_after::after {
   content: "";
   width: 0.625rem;
   height: 0.625rem;
   border-radius: 100%;
   display: block;
   background: #31a56d;
}

.prefix-timeline_box {
   margin-left: 25px;
}

.prefix-timeline_box h6{
  color:var(--color-text-on-bg);
   margin-bottom: 5px;
   font-weight: 600;
   font-size: var(--font-size-base);
}

.prefix-timeline_box span{
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.prefix-timeline_panel {
   
   text-decoration: none;
  
}

.prefix-timeline_panel span {
   font-size: 14px;
}

.given_container{
  background-color: var(--color-bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* .given_content{
  flex: 1;
} */

.given_content p{
  color: var(--color-text-muted);
}

.food_location_description{
  height: 150px;
  overflow-y: auto;
}

.heading_1{
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.heading_sub{
  font-size: var(--font-size-base);
  font-weight: 600;
}

.food_varities{
  padding: 10px 15px;
  font-size: var(--font-size-base);
  font-weight: 700;
  background-color: orangered;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: #ffff;
  outline: none;
  border: none;
}

.bottom_container{
  background-color:#fecc00;
  color: #000;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.all_images {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 equal-width columns */
  gap: 15px; /* space between images */
  justify-content: center; /* center the grid horizontally */
  justify-items: center;
}


.all_images img {
  width: 150px;     /* makes images fill their grid cell */
  height: 150px;  
  object-fit: cover;  /* keeps aspect ratio */ /* optional for rounded corners */
  border-radius: var(--radius-md);
}

/* desktop version */
.desk_version {
  display: none;
}

footer {
  display: none;
}

/* otp section css */

/* --- MODIFIED: Added styles for disabled button --- */
.verify-btn:disabled {
  background-color: #a5b4fc; /* A lighter, muted blue */
  cursor: not-allowed;
}
.verify-btn:disabled:hover {
  background-color: #a5b4fc; /* Prevent hover effect when disabled */
}


/* New CSS for the styled error box */
.error-box {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #d40030;
  border-left: 5px solid #d40030;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
}
.error-box .error-icon {
  color: #d40030;
  font-size: 24px;
  margin-right: 12px;
  line-height: 1;
}
.error-box .error-text strong {
  font-weight: bold;
  color: #111;
  display: block;
}
.error-box .error-text p {
  margin: 0;
  padding-top: 4px;
  color: #555;
  font-size: 0.9rem;
}

/* === NEW MODAL STYLES === */
.modal-pho-emi {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #ffffff; /* Solid white background */
}
.modal-pho-emi-content {
  background-color: #f4f5f7;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.modal-pho-emi-header {
  padding: 80px 20px 10px;
  flex-shrink: 0;
}
.back-arrow {
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
.modal-pho-emi-body {
  flex-grow: 1;
  padding: 40px 25px;
  text-align: center;
}
.modal-pho-emi-body h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.otp-destination-text {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 30px;
}
.otp-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}
.otp-box {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  border: none;
  background-color: #ffffff;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s;
  caret-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.otp-box:focus {
  border: 2px solid #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}
.resend-options {
  margin-top: 40px;
}
.resend-options p {
  color: #888;
  margin-bottom: 15px;
}
.resend-options a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}
.resend-options a:hover {
  text-decoration: underline;
}
.modal-pho-emi-footer {
  flex-shrink: 0;
  padding: 20px 25px 40px 25px;
  border-top: none;
  background-color: #f4f5f7;
}
.verify-btn {
  width: 100%;
  padding: 15px;
  background-color: #3b82f6;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.verify-btn:hover {
  background-color: #2563eb;
}
.error-message {
  margin-top: 0.25rem;
}
.input_box {
  position: relative;
}


/* causes category pages */
.given_banner{
  background-color: #f9d3717d;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 8px;
  min-height:150px;
}

.content_banner{
  display: flex;
  align-items: center;
  gap: 20px;
}

.given_badge{
  font-size: 11px;
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 3px 5px;
}

.content_banner img{
  width: 80px;
}

.first_banner_content{
  width: 55%;
}

.first_banner_content p{
  font-size: var(--font-size-base);
  color: #040049;
  font-weight: 450;
}

.given_banner{
  position: relative;
}

.lottie_container{
  position: absolute;
  top: 0;
  top: -29px;
  right: -22px;
}







/* success page css */

.mob-success{
   display: block;
}

.main-container {
   width: 100%;
   display: flex;
   flex-flow: column;
   justify-content: center;
   align-items: center;
  padding: 100px 0 0;
 }
 
 .check-container {
   width: 6.25rem;
   height: 7.5rem;
   display: flex;
   flex-flow: column;
   align-items: center;
   justify-content: space-between;
 }
 .check-container .check-background {
   width: 100%;
   height: calc(100% - 1.25rem);
   background: linear-gradient(to bottom right, #5de593, #41d67c);
   box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
   transform: scale(0.84);
   border-radius: 50%;
   animation: animateContainer 0.75s ease-out forwards 0.75s;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
 }
 .check-container .check-background svg {
   width: 65%;
   transform: translateY(0.25rem);
   stroke-dasharray: 80;
   stroke-dashoffset: 80;
   animation: animateCheck 0.35s forwards 1.25s ease-out;
 }
 .check-container .check-shadow {
   bottom: calc(-15% - 5px);
   left: 0;
   border-radius: 50%;
   background: radial-gradient(closest-side, #49da83, transparent);
   animation: animateShadow 0.75s ease-out forwards 0.75s;
 }
 
 @keyframes animateContainer {
   0% {
     opacity: 0;
     transform: scale(0);
     box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
   }
   25% {
     opacity: 1;
     transform: scale(0.9);
     box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
   }
   43.75% {
     transform: scale(1.15);
     box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
   }
   62.5% {
     transform: scale(1);
     box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
   }
   81.25% {
     box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
   }
   100% {
     opacity: 1;
     box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
   }
 }
 @keyframes animateCheck {
   from {
     stroke-dashoffset: 80;
   }
   to {
     stroke-dashoffset: 0;
   }
 }
 @keyframes animateShadow {
   0% {
     opacity: 0;
     width: 100%;
     height: 15%;
   }
   25% {
     opacity: 0.25;
   }
   43.75% {
     width: 40%;
     height: 7%;
     opacity: 0.35;
   }
   100% {
     width: 85%;
     height: 15%;
     opacity: 0.25;
   }
 }

 .fail-container {
   width: 6.25rem;
   height: 7.5rem;
   display: flex;
   flex-flow: column;
   align-items: center;
   justify-content: space-between;
}

 .fail-container .fail-background {
   width: 100%;
   height: calc(100% - 1.25rem);
   background: linear-gradient(to bottom right, #e05d5d, #d44141);
   box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
   transform: scale(0.84);
   border-radius: 50%;
   animation: animateContainer 0.75s ease-out forwards 0.75s;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
}
.fail-container .fail-background svg {
   width: 65%;
   transform: translateY(0.25rem);
   stroke-dasharray: 80;
   stroke-dashoffset: 80;
   animation: animateCross 0.35s forwards 1.25s ease-out;
}
.fail-container .fail-shadow {
   bottom: calc(-15% - 5px);
   left: 0;
   border-radius: 50%;
   background: radial-gradient(closest-side, #da4949, transparent);
   animation: animateShadow 0.75s ease-out forwards 0.75s;
}

 @keyframes animateCross {
   from {
     stroke-dashoffset: 80;
   }
   to {
     stroke-dashoffset: 0;
   }
}
.success_reciept img{
    width: 100%;
    height: auto;
}

.success_buttons{
   margin-top: 20px;
   display: flex;
   margin-bottom: 50px;
   gap: 20px;

       }
    .all_btn {
        background-color: #009dff;
        font-size: 12px;
        width: 100%;
        height: 50px;
        padding: 15px;
        border-radius: 12px;
        text-transform: uppercase;
        color: #fff;
        outline: none;
        font-weight: 500;
        border: none;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        z-index: 1;
        text-decoration: none;
    }
        .track_btn {
        font-size: 12px;
        width: 100%;
        height: 50px;
       
        border: 1px solid red;
        border-radius: 10px;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #cc0d39;
        color: #fff;
        gap: 5px;
    }
    .success_container{
        margin-top: 40px;
    }
    


    /* profile page */

       /* Profile page */


.profile_content p{
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

    /* --- Your existing styles --- */
    
.profile_container1{
    height: 190px;
    background: linear-gradient(60deg, #f5f5ff 0%, #dcdcfb 100%);
    border-radius: 0px 0px 20px 20px;
    box-shadow: var(--shadow-md);
    padding: 15px 10px;
}

.profile_container1{
    display: flex;
    flex-direction: column;
 align-items: flex-start; 
  justify-content: flex-end;
}
    .profile_one {
        width: 100%;
        height: 80px;
        /* Use min-height for flexibility */
        border-radius: 20px;
        background-color: #c2d4f8;
        margin: 20px 0;
        padding: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    /* --- UPDATED .profile_cat styles for Tabs --- */
    .profile_cat, .profile_catt {
        width: 100%;
        height: 100px;
        border-radius: 15px;
        background-color: #ffffff;
        padding: 8px 0;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid #eee;
        color: #555;
        /* Default color */
    }

    /* This is the key style for the ACTIVE tab */
    .profile_cat.active {
        background-color: #c2d4f8;
        /* Bootstrap primary blue */
        color: #000000;
        
    }

    .profile_cat.active i {
        color: #ffffff;
    }

    .img-icons{
      margin-bottom: 10px;
      width: 30px;
    }
    .vol-icons{
       width: 35px;
        border: none;
        background-color: rgba(226, 32, 95, .1);
        border-radius: 10px;
        padding: 8px;
   
    }
       .bg-vol{
        background-color:rgba(226, 32, 95, .1);
       }
       .bg-faq{
          background-color:rgba(0, 145, 222, .1) ;
       }
       .bg-about{
          background-color:rgba(229, 179, 45, .2) ;
       }
       .bg-member{
          background-color:rgba(0, 145, 222, .1);
       }
       .bg-work{
          background-color:rgba(25, 180, 142, .1);
       }
       .bg-start_c{
          background-color:rgba(229, 179, 45, .2) ;
       }
       .bg-what{
          background-color:rgba(25, 180, 142, .1) ;
       }
       .bg-mail{
          background-color:rgba(0, 145, 222, .1) ;
       }
       .bg-call{
          background-color:rgba(145, 70, 218, .15) ;
       }

    /* --- NEW CSS for the Tab Content Panel and Animation --- */
    /* .tab-content {
        margin-top: 25px;
        padding: 25px;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        min-height: 200px;
       
        /* Give it some default height 
    } */

    /* This creates the "slide in from left" animation */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Apply the animation to the tab pane when it becomes active */
    .tab-pane.fade.show {
        animation: slideInLeft 0.5s ease-out;
    }

.profile_cat h6,
.profile_catt h6 {
  font-size: 0.8rem !important;
  color: #111827 !important;

}

    .profile_one a {
        display: flex;
        justify-content: space-between;
        padding: 20px 15px;
        text-decoration: none;
        align-items: center;
        color: #1f2937;
    }

    .profile_one h6 {
        font-weight: 600;
        color: #111827 !important;
    }

    .tab-index-page {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    /* --- NEW STYLES FOR PROFILE MENU SECTION --- */

    .donation_item{
      background-color: var(--color-bg-surface);
      box-shadow: var(--shadow-md);
      border-radius: var(--radius-md);
      padding: 10px;
    }

    .donation_item strong {
    color: #667eea;
    font-weight: 700;
    font-size: var(--font-size-lg);
    
}

.normal_text{
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  font-weight: 500;
}

.muted_text{
  font-size: var(--font-size-sm) !important;
  color: var(--color-text-muted);
  font-weight: 500;
}

    .profile-menu-group {
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        padding: 8px 0;
    }

    .profile-menu-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        text-decoration: none;
        color: #1f2937;
        font-weight: 500;
        transition: background-color 0.2s ease-in-out;
    }
    .per-det{
         padding: 16px 20px;
        text-decoration: none;
        color: #1f2937;
        font-weight: 500;
        transition: background-color 0.2s ease-in-out;
    }

    .profile-menu-item:hover {
        background-color: #f8f9fa; /* Light grey on hover */
    }

    .profile-menu-item-content {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    

    .profile-menu-icon {
        color: #3b82f6;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }

    .profile-menu-arrow {
        color: #0d6efd;
    }
    .extra{
        margin-bottom: 100px;
    }
    .profile-menu-item p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}
.profile_content h2{
    width: 80px;
    height: 80px;
    border-radius: 80px;
    margin-bottom: 10px;
    background-color: #fff;
    padding: 10px 23px;
    font-size: 50px;
}
