@import url("https://fonts.googleapis.com/css2?family=Halant:wght@400;500;600&family=Parisienne&family=Poppins:wght@400;500;600;700&display=swap");
 :root
 { --primary: #f3ddcf;
 --secondary: #701505;
 --black: #212529;
 --white: #fff;
 --border: #e5e5e5; 
 --ghostColor: #f6f7fc;
 --gray: #5e627f; }

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

body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
}

body.rtl {
  direction: rtl;
  overflow-x: hidden;
}

body.rtl .form-select {
  background-position-x: 12px !important;
  padding: 12px !important;
}

body.rtl .form-switch {
  float: right;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Halant", serif;
  margin-bottom: 15px;
  color: var(--black);
}

h1 {
  font-size: 64px;
  font-family: "Parisienne", cursive;
}

h2 {
  font-size: 48px;
  font-family: "Parisienne", cursive;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--black);
}

a:hover {
  color: white;
}

p {
  margin-bottom: 15px;
}

.btn:focus {
  -webkit-box-shadow: 0 0 0 0rem var(--black);
          box-shadow: 0 0 0 0rem var(--black);
}

i {
  font-size: 24px;
  color: var(--black);
}

/* 
.btn-flower {
  background: var(--primary);
  display: inline-block;
  padding: 10px;
  color: #333;
  border: none;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  height: 52px;
  width: 162px;
  border: 6px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.btn-flower:hover {
  background: var(--secondary);
  -webkit-box-shadow: 0 0 0 1px var(--secondary);
          box-shadow: 0 0 0 1px var(--secondary);
  color: var(--white);
} */

/* .btn-flower2 {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 3px;
  height: 40px;
  width: 122px;
  -webkit-box-shadow: 0 0 0 1px var(--secondary);
          box-shadow: 0 0 0 1px var(--secondary);
  text-transform: capitalize;
} */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--gray);
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
          box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.container {
  z-index: 1;
  position: relative;
}

.header-text {
  text-align: center;
  margin-bottom: 100px;
}

.header-text h2 {
  font-size: 64px;
  text-transform: capitalize;
}

.header-text p {
  margin-bottom: 0;
}



/* --------------HOME-SECTION--------------- */

.home-section {
  background-repeat: no-repeat;
  background-position: top left;
}

.home-section .overlay {
  background: url(../img/Watercolor-Flower-PNG-HD-Image2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.home-section .text-box {
  text-align: center;
}

.home-section .text-box h1 {
  font-size: 100px;
  margin-bottom: 30px;
  text-transform: capitalize;

}

.home-section .text-box p {
  margin-bottom: 30px;
}

.search-modal {
  padding: 200px 0;
 
}

.search-modal .modal-content {
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2bsr9Jf7Ls3qdKXSJ9i1tWgcwDeLQeGi2HVIUmISmGg&s');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; /* Needed for the overlay */
  border-radius: 0.375rem; /* Matches Bootstrap modal */
  overflow: hidden;
}

/* Dark overlay + blur for better readability of form elements */
.search-modal .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Adjust opacity if needed (0.4-0.6 works well) */
  backdrop-filter: blur(4px); /* Blurs the background image slightly behind the overlay */
  z-index: 0;
}

.search-modal form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  position: relative; /* Brings form above the overlay */
  z-index: 1;
  background: rgba(255, 255, 255, 0.85); /* Optional: slight white tint on form for extra contrast */
  border-radius: 8px;
}

.search-modal form .form-select,
.search-modal form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.search-modal form .form-select:focus,
.search-modal form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.search-modal form .form-select::-webkit-input-placeholder,
.search-modal form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select:-ms-input-placeholder,
.search-modal form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select::-ms-input-placeholder,
.search-modal form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select::placeholder,
.search-modal form .form-control::placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.search-modal form .btn-flower {
  width: 100%;
  height: 44px;
}

.feature-section {
  background: var(--ghostColor);
  padding: 50px 0; 
  position: relative;
  overflow: hidden;
}

.feature-section .flower {
  position: absolute;
  width: 300px;
  left: 0;
  bottom: 0;
}

.feature-section .box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature-section .box .icon-box i {
  font-size: 28px;
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  padding-top: 20px;
  border: 8px solid var(--ghostColor);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
}

.feature-section .box .text-box {
  text-align: left;
  width: calc(100% - 80px);
  padding-left: 15px;
}

.feature-section .box .text-box h4 {
  text-transform: capitalize;
}

.feature-section .box .text-box p {
  margin-bottom: 0;
  max-width: 250px;
}

.rtl .feature-section .box .text-box {
  text-align: right;
  padding-left: 0;
  padding-right: 15px;
}

.about-section {
  padding: 100px 0;
}

.about-section .img-box {
  width: 500px;
  height: 500px;
  position: relative;
}

.about-section .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.about-section .img-box .about-img {
  left: 10px;
  width: 75%;
  height: 75%;
  border-radius: 100%;
}

.about-section .text-box h2 {
  font-size: 34px;
  text-transform: capitalize;
}

.about-section .text-box p {
  margin-bottom: 30px;
}

/* .happy-stories {
  padding: 100px 0;
  background: var(--ghostColor);
  position: relative;
  overflow: hidden;
}

.happy-stories .flower {
  position: absolute;
  width: 300px;
  right: -150px;
  top: 0;
}

.happy-stories .img-box {
  position: relative;
  overflow: hidden;
}

.happy-stories .img-box img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.happy-stories .img-box .hover-content {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  left: 4%;
  top: 4%;
  width: 92%;
  height: 92%;
  text-align: center;
  opacity: 0;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.happy-stories .img-box .hover-content .text-box {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.happy-stories .img-box .hover-content .text-box h5 {
  margin-bottom: 0;
}

.happy-stories .img-box .hover-content .text-box:hover {
  color: var(--secondary);
}

.happy-stories .img-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.happy-stories .img-box:hover .hover-content {
  opacity: 1;
}

.happy-stories #masonryContainer {
  width: 100%;
}

.happy-stories .cols {
  -moz-column-count: 3;
  -moz-column-gap: 15px;
  -moz-column-width: 30%;
  -webkit-column-count: 3;
  -webkit-column-gap: 15px;
  -webkit-column-width: 30%;
  column-count: 3;
  column-gap: 15px;
  column-width: 30%;
}

.happy-stories .img-box {
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.happy-stories .img-box img {
  min-width: 100%;
} */

.premium-members {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.premium-members .flower {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 0;
}

.premium-members .box {
  text-align: center;
  padding: 0 30px;
}

.premium-members .box .img-box {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  margin: auto;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.premium-members .box .img-box img {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.premium-members .box .img-box .hover-content {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  left: 7%;
  top: 7%;
  width: 86%;
  height: 86%;
  padding-top: 80px;
  border-radius: 100%;
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.premium-members .box .img-box .hover-content:hover {
  color: var(--secondary);
}

.premium-members .box .text-box h4 {
  text-transform: capitalize;
}

.premium-members .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}

.premium-members .box:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.premium-members .box:hover .img-box .hover-content {
  opacity: 1;
}

.pricing-section {
  padding: 100px 0;
  background: var(--ghostColor);
  position: relative;
  overflow: hidden;
}

.pricing-section .flower {
  position: absolute;
  width: 300px;
  right: -150px;
  top: 0;
}

.pricing-section .box {
  text-align: center;
  padding: 30px 0;
  background: var(--white);
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.pricing-section .box .icon-box {
  margin-bottom: 30px;
}

.pricing-section .box .icon-box i {
  font-size: 28px;
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  padding-top: 20px;
  border: 8px solid var(--white);
  outline: 1px solid var(--primary);
}

.pricing-section .box .text-box h4 {
  text-transform: capitalize;
}

.pricing-section .box .text-box h2 {
  font-family: "Halant", serif;
  margin-bottom: 0;
}

.pricing-section .box .text-box h2 span {
  font-size: 32px;
}

.pricing-section .box .text-box ul {
  padding-left: 0;
  display: inline-block;
  text-align: left;
  margin: 15px auto;
  list-style: none;
  text-transform: capitalize;
}

.pricing-section .box .text-box ul li {
  margin-bottom: 15px;
}

.pricing-section .box .text-box ul li i {
  font-size: 16px;
  margin-right: 5px;
}

.pricing-section .box .text-box button {
  display: block;
  text-align: center;
  margin: auto;
}

.rtl .pricing-section .box .text-box ul {
  text-align: right;
}

.rtl .pricing-section .box .text-box ul li i {
  margin-right: 0;
  margin-left: 5px;
}

.testimonial-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.testimonial-section .flower {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 0;
}

.testimonial-section .box {
  text-align: center;
  padding: 0 30px;
}

.testimonial-section .box .img-box {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-section .box .img-box img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-section .box .img-box i {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding-top: 10px;
  border: 4px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
}

.testimonial-section .box .text-box h4 {
  text-transform: capitalize;
}

.testimonial-section .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}

.counter-section {
  background: var(--ghostColor);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.counter-section .flower {
  position: absolute;
  width: 300px;
  right: 0;
  bottom: 0;
}

.counter-section .box {
  text-align: center;
}

.counter-section .box h4 {
  text-transform: capitalize;
}

.blog-section {
  padding: 100px 0;
}

.blog-section .box .img-box {
  margin-bottom: 15px;
  height: 240px;
  overflow: hidden;
}

.blog-section .box .img-box img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog-section .box .text-box h4 {
  text-transform: capitalize;
}

.blog-section .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}

.blog-section .box .text-box .read-more {
  font-style: italic;
  text-transform: capitalize;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 13px;
}

.blog-section .box .text-box .read-more:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.blog-section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#preloader {
  background: var(--white);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1100;
}

#preloader .loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.scroll-up {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 5;
}

.scroll-up i {
  color: var(--white);
  font-size: 16px;
  height: 38px;
  width: 48px;
  background: var(--black);
  text-align: center;
  padding-top: 11px;
}

/* .banner {
  background: url(../img/banner.jpg);
  background-size: cover;
} */

.banner .overlay {
  background: rgba(255, 255, 255, 0.4);
}

.banner .header-text {
  padding: 100px 0;
  padding-top: 178px;
  margin-bottom: 0;
}

.banner .header-text h2 {
  margin-bottom: 0;
}

.nav-2 {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.nav-2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.nav-2 a {
  color: var(--gray);
  font-weight: 500;
  padding: 15px 0;
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-2 a i {
  font-size: 16px;
  margin-right: 5px;
  position: relative;
  color: var(--gray);
  top: 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-2 a:hover {
  color: var(--secondary);
}

.nav-2 a:hover i {
  color: var(--secondary);
}

.nav-2 a.active {
  border-bottom: 2px solid var(--secondary);
  background: var(--ghostColor);
  color: var(--secondary);
}

.nav-2 a.active i {
  color: var(--secondary);
}

.blog-details {
  padding: 100px 0;
}

.blog-details .img-box {
  margin-bottom: 15px;
}

.blog-details .blog-box {
  margin-bottom: 50px;
}

.blog-details .blog-box:last-child {
  margin-bottom: 0;
}

.blog-details .blog-box .text-box .date-author {
  margin-bottom: 15px;
}

.blog-details .blog-box .text-box p {
  color: var(--gray);
}

.blog-details .blog-box .text-box h2 {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.blog-details .blog-box .text-box .continue-reading {
  text-transform: lowercase;
  color: var(--secondary);
}

.blog-details .side-box {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.blog-details .side-box h4 {
  text-transform: capitalize;
}

.blog-details .side-box .post-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-details .side-box .post-box .img {
  width: 35%;
}

.blog-details .side-box .post-box .text {
  width: 65%;
  padding-left: 15px;
}

.blog-details .side-box .post-box .text h5 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.blog-details .side-box .post-box .text p {
  margin-bottom: 0;
}

.blog-details .side-box .links {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.blog-details .side-box .links li {
  margin-bottom: 10px;
}

.blog-details .side-box .links li a {
  color: var(--gray);
  text-transform: capitalize;
  font-weight: 500;
}

.blog-details .side-box .links li a:hover {
  color: var(--secondary);
}

.blog-details .side-box .links li:last-child {
  margin-bottom: 0;
}

.blog-details .input-group .form-control {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.blog-details .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.blog-details .input-group .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.blog-details .input-group .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.blog-details .input-group .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.blog-details .input-group .form-control::placeholder {
  text-transform: capitalize;
}

.blog-details .input-group button {
  width: 50px;
  border: none;
  background: var(--black);
  border: 1px solid var(--black);
}

.blog-details .input-group button i {
  color: var(--white);
  font-size: 16px;
}

.pagination {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

.pagination .page-link {
  color: var(--gray);
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 9px;
}

.pagination .page-link i {
  font-size: 16px;
  padding-top: 2px;
}

.pagination .page-item.active .page-link {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.pagination .page-link:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
          box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-radius: 0;
}

.related-posts .header-text {
  margin-bottom: 0;
}

.related-posts .header-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.story-section {
  padding: 100px 0;
}

.story-section .img-box {
  margin-bottom: 15px;
}

.story-section .date-author {
  margin-bottom: 30px;
}

.story-section .date-author a {
  color: var(--secondary);
}

.story-section .more-stories h4 {
  text-transform: capitalize;
}

.story-section .more-stories .story-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.story-section .more-stories .story-box .img {
  margin-right: 10px;
  width: 30%;
}

.story-section .more-stories .story-box .text {
  width: 70%;
}

.story-section .more-stories .story-box .text p {
  margin-bottom: 0;
  color: var(--black);
}

.story-section .more-stories .story-box .text span {
  text-transform: capitalize;
  font-size: 18px;
  font-style: italic;
}

.photo-gallery {
  padding: 100px 0;
}

.photo-gallery .header-text {
  margin-bottom: 0;
}

.photo-gallery .header-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.login-section {
  padding: 100px 0;
}

.login-section form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  max-width: 560px;
  margin: auto;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.login-section form .form-select,
.login-section form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.login-section form .form-select:focus,
.login-section form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.login-section form .form-select::-webkit-input-placeholder,
.login-section form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.login-section form .form-select:-ms-input-placeholder,
.login-section form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.login-section form .form-select::-ms-input-placeholder,
.login-section form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.login-section form .form-select::placeholder,
.login-section form .form-control::placeholder {
  text-transform: capitalize;
}

.login-section form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.login-section form .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.login-section form .links .form-check label {
  cursor: pointer;
}

.login-section form .links .form-check .form-check-input {
  border-radius: 0;
  border: 1px solid var(--primary);
  cursor: pointer;
}

.login-section form .links .form-check .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.login-section form .links .form-check .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 0rem var(--black);
          box-shadow: 0 0 0 0rem var(--black);
}

.login-section form .links a {
  color: var(--gray);
}

.login-section form .links a:hover {
  color: var(--secondary);
}

.login-section form .btn-flower {
  width: 100%;
}

.login-section form .bottom {
  margin-top: 20px;
  text-align: center;
}

.login-section form .bottom a {
  color: var(--gray);
}

.login-section form .bottom a:hover {
  color: var(--secondary);
}

.faq-section {
  padding: 100px 0;
}

.faq-section .accordion-item {
  background: none;
  border: none;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  background: var(--white);
  border-radius: 0px;
}
span.badge.bg-info {
    background-color: #f7d1d0 !important;
}
.faq-section .accordion-button {
  background: var(--white);
  border-radius: 0px !important;
  padding-left: 0px;
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
  padding-right: 40px;
  
  color: var(--black);
}

.faq-section .accordion-button:focus {
  z-index: 3;
  border-color: var(--primary);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .accordion-button::after {
    background-image: url(../images/icon/down-arrow2.png);
  background-size: cover;
  position: absolute;
  right: 15px;
  height: 16px;
  width: 16px;
  background-position: center;
}

.faq-section .accordion-body {
  padding: 15px;
  padding-top: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--secondary);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) i {
  color: var(--secondary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/down-arrow2.png);
}

.rtl .faq-section .accordion-button {
  padding-right: 15px;
  padding-left: 40px;
  text-align: right;
}

.rtl .faq-section .accordion-button::after {
  right: auto;
  left: 15px;
}

.contact-info {
  padding: 100px 0;
}

.contact-info .box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
}

.contact-info .box .icon-box i {
  font-size: 20px;
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  padding-top: 23px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
  color: var(--black);
}

.contact-info .box .text-box {
  text-align: left;
  width: calc(100% - 80px);
  padding-left: 15px;
}

.contact-info .box .text-box h4 {
  text-transform: capitalize;
}

.contact-info .box .text-box p {
  margin-bottom: 0;
  font-weight: 500;
}

.rtl .contact-info .box .text-box {
  text-align: right;
  padding-left: 0;
  padding-right: 15px;
}

.contact-form {
  padding-bottom: 100px;
}

.contact-form .text-box img {
  max-width: 440px;
}

.contact-form .text-box h2 {
  font-size: 64px;
  text-transform: capitalize;
}

.contact-form .text-box p {
  margin-bottom: 30px;
}

.contact-form form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.contact-form form .form-select,
.contact-form form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0px;
}

.contact-form form .form-select:focus,
.contact-form form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.contact-form form .form-select::-webkit-input-placeholder,
.contact-form form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.contact-form form .form-select:-ms-input-placeholder,
.contact-form form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-form form .form-select::-ms-input-placeholder,
.contact-form form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-form form .form-select::placeholder,
.contact-form form .form-control::placeholder {
  text-transform: capitalize;
}

.contact-form form textarea.form-control {
  height: 90px;
}

.contact-form form .btn-flower {
  width: 100%;
}

.rtl .contact-form .text-box {
  text-align: right;
}

.members-section {
  padding: 100px 0;
}

.members-section form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  border-radius: 0px;
}

.members-section form label {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.members-section form .form-select,
.members-section form .form-control {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 0px;
}

.members-section form .form-select:focus,
.members-section form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.members-section form .form-select::-webkit-input-placeholder,
.members-section form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select:-ms-input-placeholder,
.members-section form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select::-ms-input-placeholder,
.members-section form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select::placeholder,
.members-section form .form-control::placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.members-section form .btn-flower {
  width: 100%;
  margin-bottom: 12px;     /* dono buttons ke beech gap */
  /* ya fir yeh bhi chalega: */
  /* margin: 0 0 12px 0; */
}

/* Agar last button ke neeche extra space nahi chahiye to yeh add kar do */
.members-section form .btn-flower:last-child {
  margin-bottom: 0;
}
.members-section .member-box {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
}

.members-section .member-box .img-box {
  margin-right: 15px;
}

.members-section .member-box .img-box img {
  width: 194px;
}

.members-section .member-box .member-info {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section .member-box .name {
  margin-bottom: 5px;
}

.members-section .member-box .member-id {
  color: var(--gray);
}

.members-section .member-box .member-id span {
  color: var(--secondary);
}

.members-section .member-box .button-group {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.members-section .member-box .button-group a {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.members-section .member-box .button-group a i {
  font-size: 14px;
  color: var(--secondary);
}

.members-section .member-box .button-group a:hover {
  color: var(--secondary);
}

.members-section .member-box .tag {
  background: #daf6ea;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 2px 10px;
}

.members-section .pagination {
  margin-top: 50px;
  margin-bottom: 0;
}

.profile-section {
  padding: 100px 0;
}

.profile-section .member-box {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
}

.profile-section .member-box .img-box {
  margin-right: 20px;
}

.profile-section .member-box .img-box img {
  width: 200px;
}

.profile-section .member-box .member-info {
  text-transform: capitalize;
  color: var(--gray);
}

.profile-section .member-box .name {
  margin-bottom: 5px;
}

.profile-section .member-box .member-id {
  color: var(--gray);
}

.profile-section .member-box .member-id span {
  color: var(--secondary);
}

.profile-section .member-box .button-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.profile-section .member-box .button-group a {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.profile-section .member-box .button-group a i {
  font-size: 14px;
  color: var(--secondary);
}

.profile-section .member-box .button-group a:hover {
  color: var(--secondary);
}

.profile-section .member-box .tag {
  background: #daf6ea;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 2px 10px;
  border-radius: 5px;
}

.profile-details {
  padding-bottom: 100px;
}

.profile-details .navigator {
  border-bottom: 1px solid var(--border);
}

.profile-details .navigator .tab {
  background: none;
  border: none;
  padding: 0 10px 10px 10px;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  position: relative;
  bottom: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.profile-details .navigator .tab.active {
  border-bottom: 2px solid var(--secondary);
}

.profile-details .navigator .tab:hover {
  color: var(--secondary);
}

.profile-details .content {
  display: none;
}

.profile-details .content.active {
  display: block;
}

.profile-details .accordion-item {
  border: none;
}

.profile-details .accordion-item .accordion-button {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  font-size: 18px;
}

.profile-details .accordion-item .accordion-button i {
  color: var(--secondary);
  font-size: 18px;
  border: 1px solid var(--border);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  padding-top: 15px;
  margin-right: 15px;
  text-align: center;
}

.profile-details .accordion-item .accordion-body {
  padding-left: 85px;
  padding-top: 0;
}

.profile-details .accordion-item .accordion-button::after {
  background: none;
}

.profile-details .accordion-item .accordion-button:not(.collapsed) {
  color: var(--secondary);
}

.profile-details .accordion-item .accordion-button:not(.collapsed) i {
  border: 1px solid var(--secondary);
}

.profile-details .partner-exceptation .col-md-6 {
  border-bottom: 1px solid var(--border);
  padding-top: 15px;
}

.profile-details .partner-exceptation .col-md-6 p {
  color: var(--black);
  font-weight: 500;
}

.profile-details .partner-exceptation .col-md-6 p span {
  color: var(--gray);
  font-weight: 400;
  text-align: right;
  float: right;
}

.profile-details .profile-photo-gallery #masonryContainer {
  width: 100%;
}

.profile-details .profile-photo-gallery .cols {
  -moz-column-count: 3;
  -moz-column-gap: 15px;
  -moz-column-width: 30%;
  -webkit-column-count: 3;
  -webkit-column-gap: 15px;
  -webkit-column-width: 30%;
  column-count: 3;
  column-gap: 15px;
  column-width: 30%;
}

.profile-details .profile-photo-gallery .img-box {
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.profile-details .profile-photo-gallery .img-box img {
  min-width: 100%;
}

.modal-with-form .modal-content {
  border-radius: 0;
  border: none;
}

.modal-with-form .modal-header {
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

.modal-with-form .modal-header .btn-close {
  font-size: 10px;
  color: var(--border);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modal-with-form .modal-header .btn-close:hover {
  color: var(--secondary);
}

.modal-with-form .modal-footer {
  border-top: 1px solid var(--border);
}

.modal-with-form .modal-footer .btn-flower {
    width: 130px;
    height: 49px;
}

.modal-with-form .modal-footer .btn-flower.btn1 {
  background: var(--border);
  outline: 1px solid var(--border);
}

.modal-with-form .modal-footer .btn-flower.btn1:hover {
  background: var(--secondary);
  outline: 1px solid var(--secondary);
}

.modal-with-form .modal-body {
  padding: 15px;
}

.modal-with-form form {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.modal-with-form form label {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.modal-with-form form .form-group {
  margin-bottom: 15px;
}

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

.modal-with-form form .form-select,
.modal-with-form form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.modal-with-form form .form-select:focus,
.modal-with-form form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.modal-with-form form .form-select::-webkit-input-placeholder,
.modal-with-form form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select:-ms-input-placeholder,
.modal-with-form form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select::-ms-input-placeholder,
.modal-with-form form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select::placeholder,
.modal-with-form form .form-control::placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.modal-with-form form textarea.form-control {
  height: 120px;
}

.modal-with-form form .btn-flower {
  width: 100%;
  height: 44px;
}

.sidebar {
  padding: 30px 0;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.sidebar .profile {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar .profile img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-bottom: 15px;
}

.sidebar ul {
  margin-bottom: 0;
  padding-left: 0;
}

.sidebar ul li {
  list-style: none;
  padding: 12px 20px;
  border-left: 3px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sidebar ul li:last-child {
  margin-bottom: 0;
}

.sidebar ul li a {
  color: var(--gray);
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sidebar ul li a i {
  color: var(--gray);
  font-size: 16px;
  margin-right: 7px;
  position: relative;
  top: 2px;
}

.sidebar ul li.active, .sidebar ul li:hover {
  background: var(--ghostColor);
  border-left: 3px solid var(--secondary);
}

.sidebar ul li.active a, .sidebar ul li:hover a {
  color: var(--secondary);
}

.sidebar ul li.active a i, .sidebar ul li:hover a i {
  color: var(--secondary);
}

.rtl .sidebar ul li {
  border-right: 3px solid transparent;
}

.rtl .sidebar ul li.active, .rtl .sidebar ul li:hover {
  border-left: none;
  border-right: 3px solid #fb846f;
}

.rtl .sidebar ul li a i {
  margin-right: 0;
  margin-left: 7px;
}

.dashboard-section {
  padding: 100px 0;
}

.dashboard-section .dashboard-content .box {
  text-align: center;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
}

.dashboard-section .dashboard-content .box .icon-box {
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .box .icon-box i {
  font-size: 22px;
  background: var(--primary);
  width: 62px;
  height: 62px;
  border-radius: 100px;
  font-size: 18px;
  padding-top: 18px;
  border: 6px solid var(--white);
  outline: 1px solid var(--primary);
}

.dashboard-section .dashboard-content .pricing-box {
  text-align: center;
  padding: 30px 0;
  background: var(--white);
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.dashboard-section .dashboard-content .pricing-box .icon-box {
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .pricing-box .icon-box i {
  font-size: 22px;
  background: var(--primary);
  width: 62px;
  height: 62px;
  border-radius: 100px;
  font-size: 18px;
  padding-top: 18px;
  border: 6px solid var(--white);
  outline: 1px solid var(--primary);
}

.dashboard-section .dashboard-content .pricing-box .text-box h4 {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content .pricing-box .text-box h2 {
  font-family: "Halant", serif;
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .pricing-box .text-box h2 span {
  font-size: 32px;
}

.dashboard-section .dashboard-content .pricing-box .text-box ul {
  padding-left: 0;
  display: inline-block;
  text-align: left;
  margin: 15px auto;
  list-style: none;
  text-transform: capitalize;
}

.dashboard-section .dashboard-content .pricing-box .text-box ul li {
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .pricing-box .text-box ul li i {
  font-size: 16px;
  margin-right: 5px;
}

.dashboard-section .dashboard-content .pricing-box .text-box button {
  display: block;
  text-align: center;
  margin: auto;
}

.dashboard-section .dashboard-content .dashboard-title {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard-section .dashboard-content .dashboard-title h5 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .matched-profile-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.dashboard-section .dashboard-content .matched-profile-box .img-box {
  margin-right: 15px;
}

.dashboard-section .dashboard-content .matched-profile-box .img-box img {
  width: 100px;
  height: 100px;
}

.dashboard-section .dashboard-content .matched-profile-box .text-box {
  width: calc(100% - 100px);
  padding-right: 15px;
}

.dashboard-section .dashboard-content .matched-profile-box .text-box p {
  margin-bottom: 5px;
}

.dashboard-section .dashboard-content .notifications-box {
  padding: 15px 0;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.dashboard-section .dashboard-content .notifications-box .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1px;
  padding: 15px 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dashboard-section .dashboard-content .notifications-box .notification:last-child {
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .notifications-box .notification:hover {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .notifications-box .notification.new {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .notifications-box .notification.new::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--secondary);
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}

.dashboard-section .dashboard-content .notifications-box .notification .img-box {
  margin-right: 20px;
  position: relative;
}

.dashboard-section .dashboard-content .notifications-box .notification .img-box img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}

.dashboard-section .dashboard-content .notifications-box .notification .img-box i {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  font-size: 16px;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 100px;
  padding-top: 8px;
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box {
  width: calc(100% - 100px);
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box a {
  color: var(--gray);
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box .name {
  color: var(--secondary);
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box .time {
  margin-bottom: 0;
  margin-top: 10px;
}

.dashboard-section .dashboard-content .message-wrapper {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  overflow: hidden;
}

.dashboard-section .dashboard-content .messages-box {
  padding: 15px 0;
  max-height: 661px;
  background: var(--white);
  overflow-y: auto;
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar {
  width: 4px;
  height: 100%;
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar-track {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.dashboard-section .dashboard-content .messages-box .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1px;
  padding: 15px;
  padding-right: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dashboard-section .dashboard-content .messages-box .message:last-child {
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .messages-box .message:hover {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .messages-box .message.new {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .messages-box .message.new::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--secondary);
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

.dashboard-section .dashboard-content .messages-box .message.active .img-box::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #09bb75;
  border: 4px solid var(--white);
  bottom: -3px;
  right: 10px;
  margin: auto;
}

.dashboard-section .dashboard-content .messages-box .message .img-box {
  margin-right: 10px;
  position: relative;
}

.dashboard-section .dashboard-content .messages-box .message .img-box img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.dashboard-section .dashboard-content .messages-box .message .text-box {
  width: calc(100% - 90px);
}

.dashboard-section .dashboard-content .messages-box .message .text-box a {
  color: var(--gray);
}

.dashboard-section .dashboard-content .messages-box .message .text-box a .name {
  color: var(--secondary);
  font-weight: 500;
}

.dashboard-section .dashboard-content .messages-box .message .text-box a .name .time {
  text-align: right;
  float: right;
  color: var(--gray);
  font-size: 12px;
}

.dashboard-section .dashboard-content .messages-box .message .text-box a p {
  margin-bottom: 5px;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.dashboard-section .dashboard-content .inbox-wrapper {
  border-left: 1px solid var(--border);
  background: var(--white);
  position: relative;
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border);
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .user {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-right: 10px;
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .name {
  font-weight: 500;
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .info-btn {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #ffe1ec;
  border: none;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .info-btn i {
  font-size: 14px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats {
  padding: 30px 15px 10px 15px;
  height: 500px;
  overflow-y: auto;
  position: relative;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar {
  width: 4px;
  height: 100%;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar-track {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 20px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .img {
  margin-left: 10px;
  width: 30px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .img img {
  width: 30px;
  height: 30px;
  border-radius: 100px;
}

.dashboard-section .dashboard-content .typing-show img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 100px !important;
  -webkit-border-radius: 100px !important;
  -moz-border-radius: 100px !important;
  -ms-border-radius: 100px !important;
  -o-border-radius: 100px !important;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper {
  width: calc(100% - 80px);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .text {
  padding: 10px;
  background: var(--ghostColor);
  border-radius: 3px;
  float: right;
  margin-bottom: 5px;
  max-width: 300px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .text p {
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .time {
  font-size: 10px;
  display: inline-block;
  width: 100%;
  text-align: right;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .attachment {
  display: inline-block;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .attachment img {
  max-width: 100px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .img {
  margin-left: 0;
  margin-right: 10px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .text-wrapper .text {
  float: left;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .text-wrapper .time {
  text-align: left;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile {
  position: absolute;
  padding-top: 30px;
  width: 250px;
  height: 500px;
  text-align: center;
  background: var(--ghostColor);
  border-left: 1px solid var(--border);
  top: 81px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -260px;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile.active {
  right: 0;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile .img-box img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile p {
  margin-bottom: 5px;
  font-weight: 500;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile button#closeProfile {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #ffe1ec;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  border: none;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile button#closeProfile i {
  font-size: 16px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview {
  background: var(--ghostColor);
  display: inline-block;
  position: relative;
  left: 0px;
  bottom: 5px;
  max-width: 100px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview img {
  width: 100%;
  height: auto;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info {
  padding: 0 5px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info span {
  font-size: 12px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info span.size {
  color: rgb(207 35 35);
  font-size: 10px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview button.delete {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #ffe1ec;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  border: none;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview button.delete i {
  font-size: 16px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group {
  border-radius: 3px;
  overflow: hidden;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .form-control {
  height: 47px;
  background: var(--ghostColor);
  border-radius: 0;
  border: none;
  font-size: 13px;
  color: var(--gray);
  padding: 7px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: none;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn {
  position: relative;
  background: var(--ghostColor);
  border: none;
  width: 40px;
  height: 100%;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn i {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  left: 5px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn:hover i {
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn .form-control {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group button {
  width: 50px;
  border: none;
  background: maroon;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group button i {
  color: var(--white);
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dashboard-section .dashboard-content .table-wrapper {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
}

.dashboard-section .dashboard-content .table-wrapper .table {
  color: var(--gray);
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .table-wrapper .table tbody > tr:nth-of-type(even) > * {
  --bs-table-accent-bg: var(--ghostColor) !important;
}

.dashboard-section .dashboard-content .table-wrapper .table tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: transparent;
}

.dashboard-section .dashboard-content .table-wrapper .table thead {
  background: var(--ghostColor);
  color: var(--black);
  text-transform: capitalize;
}

.dashboard-section .dashboard-content .table-wrapper .table tbody {
  border: none;
}

.dashboard-section .dashboard-content .table-wrapper .table tr {
  border: none;
  border-top: 1px solid var(--ghostColor);
}

.dashboard-section .dashboard-content .table-wrapper .table tr th {
  font-weight: 500;
  border: none !important;
  padding: 15px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr th:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr th:last-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td {
  padding: 15px;
  color: var(--gray);
  border: none !important;
  text-transform: capitalize;
  margin: 5px !important;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td img {
  width: 60px;
  height: 60px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status,
.dashboard-section .dashboard-content .inbox-wrapper .status {
  background: #c0cdc7;
  color: white;
  padding: 2px 10px;
  min-width: 90px;
  text-align: center;
  border-radius: 100px;
  display: inline-block;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status.danger,
.dashboard-section .dashboard-content .inbox-wrapper .status.danger {
  background: #adff81;
  color: #554141;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status.primary,
.dashboard-section .dashboard-content .inbox-wrapper .status.primary {
  background: #bba0ff;
  color: white;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status.dark,
.dashboard-section .dashboard-content .inbox-wrapper .status.dark {
  background: #595959;
  color: white;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn {
  background: #daf6ea;
  border: none;
  height: 35px;
  width: 35px;
  border-radius: 50px;
  padding-top: 2px;
  text-align: center;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn i {
  font-size: 12px;
  color: #09bb75;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn.danger {
  background: #ffe1ec;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn.danger i {
  color: var(--secondary);
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .form-check-input {
  border-color: var(--border);
  cursor: pointer;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.dashboard-section .dashboard-content form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  margin: auto;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.dashboard-section .dashboard-content form label {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select,
.dashboard-section .dashboard-content form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.dashboard-section .dashboard-content form .form-select:focus,
.dashboard-section .dashboard-content form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.dashboard-section .dashboard-content form .form-select::-webkit-input-placeholder,
.dashboard-section .dashboard-content form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select:-ms-input-placeholder,
.dashboard-section .dashboard-content form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select::-ms-input-placeholder,
.dashboard-section .dashboard-content form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select::placeholder,
.dashboard-section .dashboard-content form .form-control::placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form textarea.form-control {
  height: 120px;
}

.dashboard-section .dashboard-content form .form-select {
  background-image: url(../images/icon/down-arrow.png);
}

.dashboard-section .dashboard-content form .form-control[type="file"] {
  height: 35px;
}

.dashboard-section .dashboard-content form .btn-flower {
  width: 100%;
}

.dashboard-section .dashboard-content form .img-preview {
  background: var(--ghostColor);
  display: inline-block;
  position: relative;
  left: 0px;
  bottom: -15px;
  max-width: 100px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content form .img-preview img {
  width: 100%;
  height: auto;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dashboard-section .dashboard-content form .img-preview .img-info {
  padding: 0 5px;
}

.dashboard-section .dashboard-content form .img-preview .img-info span {
  font-size: 12px;
}

.dashboard-section .dashboard-content form .img-preview .img-info span.size {
  color: var(--secondary);
  font-size: 10px;
}

.dashboard-section .dashboard-content form .img-preview button.delete {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #ffe1ec;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  border: none;
}

.dashboard-section .dashboard-content form .img-preview button.delete i {
  font-size: 16px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content form .typing-area {
  background: var(--white);
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  width: 100%;
  height: 100%;
  text-align: left;
  height: 45px;
  padding-left: 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn i {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  left: 5px;
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn:hover i {
  color: var(--secondary);
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn .form-control {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dashboard-section .dashboard-content form .typing-area button {
  width: 50px;
  border: none;
  background: var(--secondary);
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dashboard-section .dashboard-content form .typing-area button i {
  color: var(--white);
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rtl .dashboard-section .dashboard-content .pricing-box .text-box ul {
  text-align: right;
}

.rtl .dashboard-section .dashboard-content .pricing-box .text-box ul li i {
  margin-right: 0;
  margin-left: 5px;
}

.rtl .dashboard-section .dashboard-content .matched-profile-box .img-box {
  margin-right: 0;
}

.rtl .dashboard-section .dashboard-content .notifications-box .notification .img-box {
  margin-right: 0;
  margin-left: 20px;
}

.rtl .dashboard-section .dashboard-content .notifications-box .notification.new::after {
  right: auto;
  left: 30px;
}

.rtl .dashboard-section .dashboard-content .inbox-wrapper .side-profile {
  right: auto;
  left: -260px;
}

.rtl .dashboard-section .dashboard-content .inbox-wrapper .side-profile.active {
  left: 0;
}

.rtl .dashboard-section .dashboard-content .messages-box .message {
  padding-right: 15px;
}

.rtl .dashboard-section .dashboard-content .messages-box .message .img-box {
  margin-right: 0;
  margin-left: 10px;
}

.rtl .dashboard-section .dashboard-content .messages-box .message.new::after {
  right: auto;
  left: 15px;
}

.rtl .dashboard-section .dashboard-content .messages-box .message .text-box a .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .home-section .text-box h1 {
    font-size: 48px;
    margin-bottom: 30px;
    text-transform: capitalize;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 48px !important;
  }
  .home-section {
    background: none;
  }
  .home-section .overlay {
    background: none;
  }
  .home-section .text-box h1 {
    font-size: 48px;
  }
  .about-section .img-box {
    width: 300px;
    height: 300px;
    margin: auto;
  }
  .navbar {
    padding: 15px 0px;
  }
  .header-text {
    margin-bottom: 50px;
  }
  .header-text h2 {
    font-size: 48px;
  }
  .login-section form {
    padding: 15px;
  }
  .contact-form form {
    padding: 15px;
  }
  .members-section .member-box {
    text-align: center;
  }
  .members-section .member-box .img-box {
    margin-bottom: 15px;
  }
  .members-section .member-box .img-box img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
  }
  .members-section .member-box .member-info {
    text-align: left;
  }
  .members-section .member-box .button-group a span {
    display: block;
    font-size: 10px;
  }
  .profile-section .member-box {
    text-align: center;
  }
  .profile-section .member-box .img-box {
    margin-bottom: 15px;
  }
  .profile-section .member-box .img-box img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
  }
  .profile-section .member-box .member-info {
    text-align: left;
  }
  .profile-section .member-box .button-group a span {
    display: block;
    font-size: 11px;
  }
  .profile-details .profile-photo-gallery #masonryContainer {
    width: 100%;
  }
  .profile-details .profile-photo-gallery .cols {
    -moz-column-count: 2;
    -moz-column-gap: 15px;
    -moz-column-width: 50%;
    -webkit-column-count: 2;
    -webkit-column-gap: 15px;
    -webkit-column-width: 50%;
    column-count: 2;
    column-gap: 15px;
    column-width: 50%;
  }
  .happy-stories #masonryContainer {
    width: 100%;
  }
  .happy-stories .cols {
    -moz-column-count: 2;
    -moz-column-gap: 15px;
    -moz-column-width: 50%;
    -webkit-column-count: 2;
    -webkit-column-gap: 15px;
    -webkit-column-width: 50%;
    column-count: 2;
    column-gap: 15px;
    column-width: 50%;
  }
  .dashboard-section .dashboard-content .notifications-box .notification,
  .dashboard-section .dashboard-content .table-wrapper,
  .dashboard-section .dashboard-content form {
    padding: 15px;
  }
  .dashboard-section .dashboard-content .message-wrapper {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .dashboard-section .dashboard-content .message-wrapper .messages-box,
  .dashboard-section .dashboard-content .message-wrapper .inbox-wrapper {
    border: 1px solid var(--border);
    margin-bottom: 15px;
  }


    /*table search*/
    .dashboard-section .dashboard-content .table-search {
        margin-bottom: 15px;
    }
    .dashboard-section .dashboard-content .table-search .btn-flower2 {
        height: 42px;
    }
    .dashboard-section .dashboard-content .table-search form {
        padding: 20px 30px;
    }
    @media (max-width: 767px) {
        .dashboard-section .dashboard-content .table-search form{
            padding: 15px;
        }
    }

  .rtl .navbar .navbar-text {
    right: auto;
    left: 35px;
  }
  .rtl .navbar .notification-panel .notification-dropdown {
    right: auto;
    left: -65px;
  }
}



/*---------------------------------- Start extra CSS added by me -----------------------------*/

/*------------ for notiflix ------------*/
#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
   fill: #fff !important;
}
[v-cloak] {
   display: none;
}

/* user button hover */
.navbar .notification-panel .notification-dropdown.userprofile{
    width: 290px;
    height: auto;
    padding-bottom: 0px;
}

.fa, .fas, .far, .fal {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300 !important;
}

.customShadow{
    box-shadow: 0px 2px 16.8px 3.2px rgb(0 38 66 / 8%);
}

.borderLess{
    border: none;
}

.font22{
    font-size: 22px;
}
.font14{
    font-size: 14px;
}

.w-150px {
    width: 150px;
}
.wh-200-150 {
    width: 200px;
    height: 150px;
}
.w-15{
    width: 15%;
}

.w-45{
    width: 45%;
}

.w-65 {
    width: 65%;
}

.w-150px {
    width: 150px;
}

.fw-900 {
    font-weight: 900 !important;
}

.btn-full{
    width: 100% !important;
}

.btn-green {
    color: #fff;
    background-color: #22ca80;
    border-color: #22ca80;
}
.btn-green:hover {
    color: #fff;
    background-color: #12bd73;
    border-color: #22ca80;
}
.btn-green i{
    font-size: 14px;
    color: white;
}

.btn-red {
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}
.btn-red:hover {
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}

.closeBtn{
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}

.closeBtn:hover{
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}

.btn-flower.planPurchaseButton {
    width: 172px !important;
}

.btn-flower2.planPurchaseButton {
    width: 147px !important;
}

.progressBarColor{
    background: var(--secondary);
}

.dashboard-section.noBoxShadowInForm .profile-setting .accordion .accordion-body form{
    box-shadow: none;
}

.borderTableOutline{
    border: 1px solid rgb(232, 232, 232);
    padding: 18px;
}
.borderTableOutline .list-group .list-group-item .lebel {
    color: #6c6c6c;
    font-weight: 550;
}
.list-group-item {
    border: none !important;
}

.borderTableOutline .list-group .list-group-item.listStriped {
    background-color: #f8f9fa;
}

.tableHeaderColorGray {
    background-color: #f1f1f1;
}
.memberProfile .table>:not(:first-child) {
    border-top: 1px solid #cdcdcd;
}

.dashboard-section .image-input.userGalleryImage {
    min-height: 220px !important;
}

.dashboard-section .galleryBox {
    min-height: 350px !important;
}

.theme-color {
    background: white !important;
    box-shadow: 0px 2px 16.8px 3.2px rgb(0 38 66 / 8%) !important;
}


.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/*-------- for gateway image ---------*/
.gatewayImage{
    width: 100%;
    height: auto;
}
.bgGreen{
    background-color: #f3ddcf;
}


/*-------- support ---------*/
.dashboard-section .dashboard-content .inbox-wrapper .chats .this-side .text-wrapper .fileimg {
    display: inline-block;
    width: 100%;
    text-align: right;
}
.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .text-wrapper .fileimg {
    display: inline-block;
    width: 100%;
    text-align: left;
}


/*-------- messenger ---------*/
.dashboard-section .message-wrapper .inbox-wrapper .chat-box .fileShow{
    font-size: 11px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.dashboard-section .dashboard-content .messages-box .message .img-box.active::after{
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 100%;
    background: #09bb75;
    border: 4px solid var(--white);
    bottom: -3px;
    right: 10px;
    margin: auto;
}


/*-------- for story gallery image ---------*/
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.image-input {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #f0f8ff;
}
.image-input #image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 100px;
    z-index: 5;
    opacity: 0.3;
    cursor: pointer;
    background-color: #fff;
    font-size: 25px;
    border: 2px dashed #000;
    margin: auto;
    text-align: center;
}
.image-input #gallery {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
.image-input #image {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}
.input-group-btn i{
    color: white;
    font-size: 15px;
}

.removeFile i{
    color: white;
    font-size: 15px;
}

.storyDetailImageSize {
    width: 100%;
    height: 200px;
    padding: 12px;
    background: #ededed;
}

.removeFile {
    position: absolute !important;
    top: -10px;
    right: -15px;
    width: 35px;
    z-index: 1;
}

.z0 {
    z-index: 0!important;
}

.image-input.height100 {
    min-height: 265px;
}

.iconHoverBg{
    background-color: rgb(255, 173, 173);
    width: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.iconHoverBg i{
    font-size: 20px;
}

.cursorDefault{
    cursor: default;
}


.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group button.upload-img {
    width: 50px;
    border: none;
    background: maroon;
    columns: white;
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }


/*------------ Select 2 plugin selectBox reDesign --------------*/
.select2-container .select2-selection--single {
    height: 44px !important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #646464;
    line-height: 42px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: 5px !important;
    position: absolute;
    top: 50%;
    width: 0;
}

/*-------------- for multi select ----------------*/
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 4px 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--secondary);
    border: 1px solid #aaa;
    color: white;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d3d3d3;
}

/*-------------- for tagsinput ----------------*/
.bootstrap-tagsinput .badge {
    margin: 2px 4px;
    padding: 5px 8px;
    background-color: var(--secondary);
}
.bootstrap-tagsinput {
    border: 1px solid var(--border);
    line-height: 35px;
}
.bootstrap-tagsinput .badge{
    font-size: 0.85em;
}

/*------------- Accordion > Table --------------------*/
.dashboard-section.faq-section.noBoxShadowInForm .dashboard-content .table-wrapper {
    box-shadow: none;
    padding: 14px;
}

.dashboard-section.faq-section.noBoxShadowInForm .dashboard-content .accordion-item .accordion-header button i {
    font-size: 21px;
    margin-right: 7px;
}


/*------------- Notification badge --------------------*/
.notification-panel .dropdown-toggle .count {
    background: rgb(133, 1, 1);
    color: white;
    text-align: center;
    min-width: 18px;
    height: 18px;
    font-size: 12px;
    border-radius: 24px;
    padding: 3px;
    line-height: 1;
    position: absolute;
    top: -15px;
    right: -10px;
 }



/*------------- Typing Indicator --------------------*/
 .dashboard-section .dashboard-content .typing {
    display: none;
    padding: 10px;
    font-size: 0;
    -webkit-animation: fadeInUp 200ms linear 1 both;
            animation: fadeInUp 200ms linear 1 both;
    /* States */
  }
  .dashboard-section .dashboard-content .typing__bullet {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 300ms linear;
  }
  .dashboard-section .dashboard-content .typing__bullet:not(:last-child) {
    margin-right: 3px;
  }
  .dashboard-section .dashboard-content .typing.is-typing-init {
    display: inline-block;
  }
  .dashboard-section .dashboard-content .typing.is-typing-active .typing__bullet {
    background-color: #000;
    -webkit-animation: bounce 600ms linear infinite both;
            animation: bounce 600ms linear infinite both;
  }
  .dashboard-section .dashboard-content .typing.is-typing-active .typing__bullet:nth-child(2) {
    -webkit-animation-delay: 150ms;
            animation-delay: 150ms;
  }
  .dashboard-section .dashboard-content .typing.is-typing-active .typing__bullet:nth-child(3) {
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms;
  }
  /**
   * Animations
   */
  @-webkit-keyframes bounce {
    0%,
    80%,
    100% {
      opacity: 1;
      transform: translateY(0);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-100%);
    }
  }
  @keyframes bounce {
    0%,
    80%,
    100% {
      opacity: 1;
      transform: translateY(0);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-100%);
    }
  }
  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
/*---------------------------------- End extra CSS added by me -----------------------------*/





@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}
/*# sourceMappingURL=style.css.map */


/* --------------------NAVBAR------------------------- */

        .navbar {
            padding: 10px 30px;
            background: var(--white);
            height: 90px;
        }

        .navbar.active {
            -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
            box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
        }
    @media (max-width: 991.98px) {
        .navbar .navbar-collapse {
            background-color: var(--white);
            padding: 20px 15px;
            margin-top: 15px;
            border-radius: 8px;
            box-shadow: 0px 4px 20px rgba(67, 5, 49, 0.32);
        }

      
      
.navbar .navbar-nav .nav-item {
  margin: 0 15px;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    padding: 0.5rem 1rem;          /* fixed padding - kabhi change nahi hoga */
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover effect (optional - agar chahte ho) */
.navbar .navbar-nav .nav-item .nav-link:hover {
    color: maroon;
}

/* Active link ka style - sirf rang badlega, size bilkul same rahega */
.navbar .navbar-nav .nav-item .nav-link.active {
    color: rgb(0, 0, 0) !important;
    background-color: rgba(128, 0, 0, 0.1);
    border-radius: 6px;
}

/* Extra safety: layout shift bilkul zero rahega */
.navbar .navbar-nav .nav-item {
    margin: 0 15px;                /* spacing fixed */
}

.navbar .navbar-nav .nav-item .nav-link {
    display: inline-block;         /* yeh line important hai */
    min-width: fit-content;        /* text ke hisaab se width fixed */
    box-sizing: border-box;
}
        
        .navbar .navbar-brand {
            font-family: "Parisienne", cursive;
            color: var(--black);
            font-size: 32px;
            padding: 0;
            margin: 0;
            height: 90px;
        }

        .navbar .navbar-brand img {
            height: 100px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            display: block;
            margin-top: -10px !important;
        }

    }

    .navbar .navbar-brand {
        font-family: "Parisienne", cursive;
        color: var(--black);
        font-size: 32px;
        padding: 0;
        margin: 0;
        height: 90px;
    }

    .navbar .navbar-brand img {
        height: 100px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
        display: block;
        margin-top: -10px !important;
    }

    .navbar .navbar-toggler {
        -webkit-box-shadow: 0 0 0 0rem;
        box-shadow: 0 0 0 0rem;
        position: absolute;
        right: 15px;
        top: 25px;
        background-color: white;
    }

    .navbar .navbar-toggler:focus {
        -webkit-box-shadow: 0 0 0 0rem;
        box-shadow: 0 0 0 0rem;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0 15px;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        text-transform: none;
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #000;
    }

    .navbar .navbar-nav .nav-item .nav-link:hover {
        color: var(--secondary);
    }

    .navbar .navbar-text {
        position: absolute;
        right: 60px;
        padding-top: 12px;
        top: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar .navbar-text .profile {
        padding: 0 15px;
        text-align: center;
    }

    .navbar .navbar-text i {
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

    .navbar .navbar-text button {
        border: none;
        padding: 0;
        background: none;
        padding-bottom: 25px;
    }

    .navbar .navbar-text button:hover i {
        color: var(--secondary);
    }

    .navbar .notification-panel {
        position: relative;
        display: inline-block;
        width: auto;
        padding: 0px 0;
    }

    .navbar .notification-panel:hover .notification-dropdown {
        visibility: visible;
        opacity: 1;
        top: 50px;
    }

    .navbar .notification-panel .dropdown-toggle::after {
        display: none;
    }

    .navbar .notification-panel .dropdown-box {
        overflow-y: scroll;
        width: 100%;
        height: 100%;
        max-height: 285px;
    }

    .navbar .notification-panel .dropdown-box::-webkit-scrollbar {
        width: 4px;
        height: 100%;
    }

    .navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
        background: var(--ghostColor);
    }

    .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 5px;
    }

    .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
        background: var(--secondary);
    }

    .navbar .notification-panel .notification-dropdown {
        background: var(--white);
        -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
        box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
        width: 380px;
        max-height: 324px;
        overflow: hidden;
        padding-bottom: 40px;
        padding-top: 0px;
        padding-left: 0;
        position: absolute;
        right: -40px;
        top: 60px;
        border-radius: 5px;
        visibility: hidden;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        opacity: 0;
    }

    .navbar .notification-panel .notification-dropdown li {
        border-bottom: 1px solid var(--border);
    }

    .navbar .notification-panel .notification-dropdown li a {
        padding: 15px 10px 15px 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        white-space: normal;
    }

    .navbar .notification-panel .notification-dropdown li a:active,
    .navbar .notification-panel .notification-dropdown li a:focus,
    .navbar .notification-panel .notification-dropdown li a:hover {
        background: var(--ghostColor);
    }

    .navbar .notification-panel .notification-dropdown li a i {
        border: 4px solid var(--white);
        -webkit-box-shadow: 0 0 0 1px var(--primary);
        box-shadow: 0 0 0 1px var(--primary);
        background: maroon;
        border-radius: 100px;
        padding: 8px;
        width: 40px;
        height: 40px;
        text-align: center;
        margin-right: 10px;
        color: white;
        font-size: 16px;
        padding-top: 9px;
    }

    .navbar .notification-panel .notification-dropdown li a p {
        margin-bottom: 0;
        text-transform: uppercase;
        font-weight: 500;
    }

    .navbar .notification-panel .notification-dropdown .clear-all {
        background: var(--white);
        font-weight: 500;
        text-transform: uppercase;
        border-top: 1px solid var(--border);
        text-align: center;
        padding: 10px 10px 11px 15px;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .rtl .navbar .navbar-text {
        right: auto;
        left: 60px;
    }

    .rtl .navbar .navbar-toggler {
        right: auto;
        left: 15px;
    }

    .rtl .navbar .notification-panel .notification-dropdown {
        right: auto;
        left: -100px;
    }

    @media (min-width: 992px) and (max-width: 1330.98px) {
        .navbar .navbar-nav .nav-item .nav-link {
            text-transform: none;
            font-family: "Poppins", sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #000;

        }

    }



    /* Mobile view (toggler khulne par) */
    @media (max-width: 991.98px) and (max-width:0) {

        /* Menu ka background white karo jab toggler khule */
        .navbar .navbar-collapse {
            background-color: #ffffff !important;
            /* solid white background */
            margin-top: 15px;
            padding: 20px 15px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 38, 66, 0.15);
            /* thoda shadow for nice look */
        }

        /* Nav items ko thoda space do aur hover effect do */
        .navbar .navbar-nav .nav-item {
            margin: 10px 0;
        }

        .navbar .navbar-nav .nav-link {
            padding: 12px 15px !important;
            display: block;
            border-radius: 5px;
            color: #000 !important;
        }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            background-color: #f8f9fa !important;
            color: var(--secondary) !important;
        }

        /* Logo ko upper side le jao */
        .navbar .navbar-brand {
            height: 80px;
            /* thoda chhota kar do */
            display: flex;
            align-items: center;
            /* vertically center */
        }

        .navbar .navbar-brand img {
            height: 70px !important;
            /* logo ko chhota aur upper karo */
            margin-top: 0 !important;
            max-width: 180px !important;
        }

        /* Navbar height thodi kam kar do mobile pe */
        .navbar {
            height: 80px !important;
            padding: 10px 20px !important;
        }

        /* Toggler button ko bhi adjust karo */
        .navbar .navbar-toggler {
            top: 20px;
        }
    }

    /* Sirf 1024px se 1216px tak – links ke beech gap kam karo */
    @media (min-width: 1024px) and (max-width: 1216px) {
        .navbar .navbar-nav .nav-item {
            margin: 0 6px;
            /* ← Pehle 10-15px tha, ab 6px – total 12px space beech mein */
        }

        /* Optional: Font size bhi thoda kam kar sakte ho agar zyada tight chahiye */
        .navbar .navbar-nav .nav-link {
            font-size: 14px;
            /* Pehle 15px tha, ab 14px – better fit */
        }

        /* Agar logo thoda chhota karna ho is range mein */
        .navbar .navbar-brand img {
            height: 75px !important;
            /* Optional – thoda adjust */
        }
    }

    /* 992px se 1216px tak – links ka gap AUR KAM karo */
    @media (min-width: 992px) and (max-width: 1216px) {
        .navbar .navbar-nav .nav-item {
            margin: 0 4px;
            /* ← Ab sirf 4px left-right → total 8px space beech mein (bahut tight) */
        }

        .navbar .navbar-nav .nav-link {
            font-size: 13.5px;
            /* Font aur chhota – better fitting */
            padding: 6px 8px;
            /* Padding bhi kam kiya – compact look */
        }

        /* Logo ko bhi thoda chhota rakho is range mein (optional but recommended) */
        .navbar .navbar-brand img {
            height: 72px !important;
            max-width: 180px !important;
        }


    }

    .modal-backdrop.show {
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        background-color: rgba(0, 0, 0, 0.7);
    }


    /* ===== LOGIN POPUP CARD ===== */
    .login-section {
        background: transparent;
    }

    .login-section form {
        background: #fff;
        padding: 45px 40px;
        border-radius: 14px;
        box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
        border: 1px solid #f3dbe3;
    }

    .login-section .form-control {
        height: 54px;
        border-radius: 6px;
        border: 1.5px solid #f0cfd8;
        padding: 0 18px;
        font-size: 15px;
        color: #6a4a57;
        background: #fff;
    }

    .login-section .form-control::placeholder {
        color: #b89aaa;
        font-weight: 500;
    }

    .login-section .form-control:focus {
        border-color: #a00030;
        box-shadow: none;
    }

    .toggle-password {
        position: absolute;
        top: 50%;
        right: 18px;
        transform: translateY(-50%);
        cursor: pointer;
        color: #111;
        font-size: 18px;
    }

    .login-section .links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 22px 0 30px;
        font-size: 14.5px;
    }

    .login-section .form-check-input {
        width: 18px;
        height: 18px;
        border: 2px solid #ff4d4d;
        border-radius: 2px;
    }

    .login-section .form-check-label {
        margin-left: 8px;
        color: #9c7c8c;
        font-weight: 500;
    }

    .login-section .links a {
        color: #e91e63;
        font-weight: 600;
        text-decoration: none;
    }

    .btn-flower {
    width: 100%;
    height: 56px;
    border-radius: 8px;
    border: none;
    background: #6a001d;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(139, 0, 36, 0.45);
    
    display: inline-flex;      
    align-items: center;
    justify-content: center;
    cursor: pointer;            
    transition: all 0.2s ease;  
}

.btn-flower:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(139, 0, 36, 0.55);
}

    .login-section .bottom {
        text-align: center;
        margin-top: 28px;
        color: #9c7c8c;
        font-size: 15px;
    }

    #termsModal .modal-body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #2c2c2c;
  }


  #termsModal h1 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #800020;
  }

  #termsModal h2 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
    color: #800020;
  }

  #termsModal p {
    margin-bottom: 12px;
    text-align: justify;
  }


  #termsModal ul {
    padding-left: 20px;
    margin-bottom: 14px;
  }

  #termsModal ul li {
    margin-bottom: 6px;
  }


  #termsModal strong {
    color: #800020;

  }

  /* Make disabled checkbox clickable via wrapper */
  #termsWrapper {
    cursor: pointer;
  }

  #acceptTermsBtn {
    background: linear-gradient(135deg, #800020, #a00030);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.3);
  }


       /* -----------------HOME-SECTION-------------------- */

     .home-section {
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

   .home-section .overlay {
    min-height: 100vh;
    background-image: url("https://static.vecteezy.com/system/resources/previews/036/043/683/large_2x/ai-generated-wedding-background-design-for-your-project-free-photo.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    margin-top:20px;
}

.home-section .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.home-section .text-box {
    text-align: center;
    margin-top: 110px;
    position: relative; 
    padding: 40px 30px; 
    margin-bottom: 20px; 
}

.home-section .text-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(113, 83, 83, 0.5); 
    border-radius: 20px;
    backdrop-filter: blur(8px); 
    z-index: 1;
   
}


@media (max-width: 400px) {
    .home-section .text-box h1 {
        font-size: 38px !important;  
        line-height: 1.2;
    }
    
    .home-section .text-box p {
        font-size: 16px !important;  
        margin-bottom: 40px;
    }
    
    .home-section .text-box {
        padding: 40px 15px 50px 15px !important; 
        margin-top: 60px !important;  
        margin-bottom: 30px !important;
    }
    
    .home-section .text-backdrop {
      
        border-radius: 15px; 
    }
}


@media (max-width: 350px) {
    .home-section .text-box h1 {
        font-size: 35px !important;
    }
    .home-section .text-box {
        padding: 35px 10px 45px 10px !important;
    }
}
.home-section .text-content {
    position: relative;
    z-index: 2; 
}

.home-section .text-box h1 {
    font-size: 100px;
    margin-bottom: 13px;
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(135, 26, 26, 0.9);
    letter-spacing: 1px;
    font-weight: 900;
}

.home-section .text-box p {
    margin-bottom: 80px;
    font-size: 22px;
    font-weight: 500;
    color: #f0ffc8ff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}
        .home-section .search-modal {
            max-width: 1100px;
            width: 90%;
            margin: 0 auto !important;
            margin-top: 0 !important;         
            padding-top: 0 !important;
        }

        
        .home-section .modal-content {
            background: rgba(117, 8, 8, 0.82);
            border: none;
            border-radius: 16px;
            width: 1500px;
        }
        .home-section .form-select:focus {
    border-color: #ff69b4 !important; /* Hot pink border */
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25) !important; /* Light pink glow */
}

        .home-section .form-select {
          font-family: 'Roboto', 'Arial', sans-serif !important;  
          font-weight: 500; 
           font-size: 16px;  
           border-color: #d5277eff !important;
            }
        
        .home-section .modal-body {
            padding: 20px 30px !important; 
        }


        .search-modal .btn-flower {
    height: 60px;
    width: auto;
    background: linear-gradient(135deg, #800020, #a0002a);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.5s ease;
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.3);
    position: relative;
    overflow: hidden;
    padding: 0 30px;
}

.search-modal .btn-flower::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.search-modal .btn-flower:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #900030, #b00030);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.4);
}

.search-modal .btn-flower:hover::before {
    left: 100%;
}

          /* RESPONSIVE */
        @media (max-width: 1400px) {
            .home-section .text-box h1 { font-size: 90px; }
        }

        @media (max-width: 1200px) {
            .home-section .text-box h1 { font-size: 80px; }
        }

        @media (max-width: 992px) {
            .home-section .overlay { padding: 50px 0; }
            .home-section .text-box h1 { font-size: 70px; }
            .home-section .text-box { margin-bottom: 40px; }
            .home-section .modal-body { padding: 18px 25px !important; }
        }

        @media (max-width: 768px) {
            .home-section .text-box h1 { font-size: 60px; }
            .home-section .text-box p { font-size: 20px; }
            .home-section .text-box { margin-bottom: 15px; }
            .home-section .modal-body { padding: 16px 20px !important; }
            .home-section .search-modal {margin-top: -10px !important;}
        }

        @media (max-width: 576px) {
            .home-section .overlay { padding: 40px 0; }
            .home-section .text-box h1 { font-size: 48px; }
            .home-section .text-box p { font-size: 18px; }
            .home-section .text-box { 
                margin-top: 80px;
                margin-bottom: 10px; 
                padding: 50px 20px 60px 20px;
            }
            .home-section .text-backdrop {
                height: 100%;
                top: 0;
                bottom: 0;
            }
            .home-section .search-modal { width: 95%;  margin-top: 0 !important;}
            .home-section .modal-body { padding: 14px 18px !important; }
        }

        @media (max-width: 400px) {
            .home-section .text-box {
                padding: 50px 15px 70px 15px;
                margin-bottom: 50px;
            }
            .home-section .text-box h1 { font-size: 42px; }
            .home-section .text-box p { font-size: 17px; }
            .home-section .text-backdrop {
                height: 350px;
            }
        }


       /* -----------------ABOUT-US-------------------- */
    

            .about-section {
                padding: 120px 0;
                background: linear-gradient(135deg, #fff8fb 0%, #ffffff 100%);
                position: relative;
                overflow: hidden;
            }

            .about-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 10% 90%, rgba(128, 0, 32, 0.05) 0%, transparent 50%);
                pointer-events: none;
            }

            /* Image box ko medium size banaya - ab zyada badi nahi lagegi */
            .about-section .img-box {
                width: 100%;
                max-width: 480px;
                height: 550px; /* Overall height reduce */
                position: relative;
                margin: 0 auto;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: 
                    0 0 0 5px rgba(255, 215, 0, 0.4),
                    0 0 35px rgba(255, 215, 0, 0.2),
                    0 25px 60px rgba(128, 0, 32, 0.15);
                border: 2px solid #ffd700;
                transition: all 0.8s ease;
            }

            .about-section .img-box:hover {
                transform: translateY(-12px);
                box-shadow: 
                    0 0 0 7px rgba(255, 215, 0, 0.6),
                    0 0 50px rgba(255, 215, 0, 0.4),
                    0 40px 80px rgba(128, 0, 32, 0.25);
            }

            .about-section .img-box .main-photo {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 1s ease;
            }

            .about-section .img-box:hover .main-photo {
                transform: scale(1.08);
            }

           
            .about-section .text-box h2 {
                font-size: clamp(34px, 5.5vw, 54px);
                font-weight: 700;
                text-transform: capitalize;
                background: linear-gradient(135deg, #800020, #a00030);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 24px;
                position: relative;
                display: inline-block;
                line-height: 1.2;
                letter-spacing: 1px;
                text-shadow: 0 2px 10px rgba(128, 0, 32, 0.1);
            }

            .about-section .text-box h2::after {
                content: '';
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: -12px;
                width: 90px;
                height: 4px;
                background: linear-gradient(to right, transparent, #800020, transparent);
                border-radius: 2px;
            }

            .about-section .text-box p {
                margin-bottom: 45px;
                font-size: clamp(14px, 2.5vw, 16px);
                line-height: 1.9;
                color: #555;
            }

            .about-section .btn-flower {
                height: 60px;
                width: auto;
                padding: 0 30px;
                border-radius: 30px;
                background: linear-gradient(135deg, #800020, #a00030);
                color: #ffffff !important;
                font-weight: 700;
                font-size: 16px;
                /* font-size: clamp(12px, 2vw, 13px); */
                text-transform: uppercase;
                /* letter-spacing: 1px; */
                border: none;
                transition: all 0.5s ease;
                box-shadow: 0 12px 30px rgba(128, 0, 32, 0.3);
                position: relative;
                overflow: hidden;
            }

            /* Button effects same */

             .about-section .btn-flower::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.7s;
            }

            .about-section .btn-flower:hover {
                transform: translateY(-6px);
                background: linear-gradient(135deg, #900030, #b00030);
                box-shadow: 0 20px 40px rgba(128, 0, 32, 0.4);
            }

             .about-section .btn-flower:hover::before {
                left: 100%;
            }

            /* Responsive adjustments - tablet aur mobile ke liye height aur thoda adjust */
            @media (max-width: 1199px) {
                .about-section {
                    padding: 100px 0;
                }
                .about-section .img-box {
                    height: 520px;
                    max-width: 460px;
                }
            }

            @media (max-width: 991px) {
                .about-section {
                    padding: 90px 0;
                }
                .about-section .img-box {
                    max-width: 440px;
                    height: 500px;
                    margin-bottom: 40px;
                }
            }

            @media (max-width: 767px) {
                .about-section {
                    padding: 80px 0;
                }
                .about-section .img-box {
                    height: 480px;
                    max-width: 420px;
                }
            }

            @media (max-width: 576px) {
                .about-section {
                    padding: 70px 0;
                }
                .about-section .img-box {
                    height: 420px;
                    max-width: 380px;
                    border-radius: 20px;
                }
                .about-section .text-box h2::after {
                    width: 70px;
                    height: 3px;
                }
                .btn-flower {
                    padding: 0 35px;
                    height: 48px;
                }
            }

            @media (max-width: 480px) {
                .about-section .img-box {
                    height: 280px;
                    max-width: 240px;
                }
                .about-section .text-box h2::after {
                    width: 70px;
                    height: 3px;
                }

            }


            /* -----------------STORIES------------------ */

                          .happy-stories {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom, #fdf2f8, #fce7f3);
    overflow: hidden;
}

.happy-stories .header-text {
    text-align: center;
    margin-bottom: 80px;
}

   
            .happy-stories .header-text h2 {
                font-size: clamp(34px, 5.5vw, 54px);
                font-weight: 700;
                text-transform: capitalize;
                background: linear-gradient(135deg, #800020, #a00030);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 24px;
                position: relative;
                display: inline-block;
                line-height: 1.2;
                letter-spacing: 1px;
                text-shadow: 0 2px 10px rgba(128, 0, 32, 0.1);
            }

            .happy-stories .header-text h2::after {
                content: '';
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: -12px;
                width: 90px;
                height: 4px;
                background: linear-gradient(to right, transparent, #800020, transparent);
                border-radius: 2px;
            }

            .happy-stories .header-text p {
                margin-bottom: 45px;
                font-size: clamp(14px, 2.5vw, 16px);
                line-height: 1.9;
                color: #555;
            }
.happy-stories .img-box {
    position: relative;
    background: white;
    padding: 20px 20px 60px 20px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    /* transform: rotate(calc(var(--rotation) * 1deg)); */
    max-width: 380px;
    margin: 0 auto;
}

.happy-stories .img-box:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(194, 24, 91, 0.3);
    z-index: 10;
}

.happy-stories .img-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.6s ease;
}

.happy-stories .img-box:hover img {
    transform: scale(1.08);
}

.happy-stories .text-box {
    text-align: center;
    margin-top: 25px;
    color: #333;
}

.happy-stories .text-box h4 {
    font-size: 26px;
    font-family: 'Dancing Script', cursive;
    color: #c2185b;
    margin-bottom: 8px;
}

.happy-stories .text-box h5 {
    font-size: 17px;
    color: #555;
    font-style: italic;
}

/* Full card clickable */
.happy-stories .card-link {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5;
}

/* Hearts on Hover */
.happy-stories .img-box::after {
    content: '💕 ❤️ 💕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.happy-stories .img-box:hover::after {
    opacity: 1;
    animation: heartFloat 1.8s ease-out forwards;
}

@keyframes heartFloat {
    0% { transform: translate(-50%, -50%) translateY(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) translateY(-120px); opacity: 0; }
}

/* Show More Button */
.happy-stories .btn-flower {
    background: linear-gradient(45deg, #720111, #670123);
    color: white;
    padding: 18px 55px;
    border-radius: 50px;
    font-size: 13px;
    border: none;
    box-shadow: 0 8px 25px rgba(185, 10, 80, 0.4);
    transition: all 0.3s ease;
    width: 20px;
}

.happy-stories .btn-flower:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgb(81, 1, 1);
}

/* Decorative Flowers */
.happy-stories .flower {
    position: absolute;
    width: 450px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.happy-stories .flower-left {
    bottom: -120px;
    left: -80px;
    transform: rotate(20deg);
}

.happy-stories .flower-right {
    top: -80px;
    right: -100px;
    transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .happy-stories .header-text h2 { font-size: 42px; }
    .happy-stories .img-box { transform: none !important; padding: 15px 15px 50px; }
    .happy-stories .img-box:hover { transform: translateY(-10px) scale(1.05); }
    .happy-stories .flower { width: 250px; }
}


/* ------------------PREMIUM-MEMBERS---------------------------- */

 .premium-members {
            padding: 120px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2aa 100%); 
            position: relative;
            overflow: hidden;
        }

        .premium-members::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Floral corners - responsive size with clamp + animation */
        .premium-members .floral-corner {
            position: absolute;
            width: clamp(100px, 20vw, 280px); /* Auto adjust all screens */
            opacity: 0;
            pointer-events: none;
            z-index: 1;
            transition: opacity 1.4s ease, transform 1.4s ease;
        }

        .premium-members.active .floral-corner {
            opacity: 0.65;
        }

        .premium-members .floral-corner.top-left {
            top: clamp(-40px, -8vw, -80px);
            left: clamp(-40px, -8vw, -80px);
            transform: translate(clamp(-60px, -10vw, -100px), clamp(-60px, -10vw, -100px)) rotate(0deg) scale(0.8);
        }

        .premium-members.active .floral-corner.top-left {
            transform: translate(0, 0) rotate(0deg) scale(1);
        }

        .premium-members .floral-corner.top-right {
            top: clamp(-40px, -8vw, -80px);
            right: clamp(-40px, -8vw, -80px);
            transform: translate(clamp(60px, 10vw, 100px), clamp(-60px, -10vw, -100px)) rotate(90deg) scale(0.8);
        }

        .premium-members.active .floral-corner.top-right {
            transform: translate(0, 0) rotate(90deg) scale(1);
        }

        .premium-members .floral-corner.bottom-left {
            bottom: clamp(-40px, -8vw, -80px);
            left: clamp(-40px, -8vw, -80px);
            transform: translate(clamp(-60px, -10vw, -100px), clamp(60px, 10vw, 100px)) rotate(-90deg) scale(0.8);
        }

        .premium-members.active .floral-corner.bottom-left {
            transform: translate(0, 0) rotate(-90deg) scale(1);
        }

        .premium-members .floral-corner.bottom-right {
            bottom: clamp(-40px, -8vw, -80px);
            right: clamp(-40px, -8vw, -80px);
            transform: translate(clamp(60px, 10vw, 100px), clamp(60px, 10vw, 100px)) rotate(180deg) scale(0.8);
        }

        .premium-members.active .floral-corner.bottom-right {
            transform: translate(0, 0) rotate(180deg) scale(1);
        }

        /* Baaki styles same (header, box, hover etc.) */
        .premium-members .header-text {
            text-align: center;
            margin-bottom: 60px;
        }

        .premium-members .header-text h2 {
            font-size: clamp(40px, 6vw, 60px);
            text-transform: capitalize;
            background: linear-gradient(135deg, #800020, #a00030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .premium-members .header-text h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -12px;
            width: 120px;
            height: 5px;
            background: #800020;
            border-radius: 3px;
        }

        .premium-members .header-text p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .premium-members .box {
            text-align: center;
            padding: 20px;
            transition: all 0.5s ease;
        }

        .premium-members .box .img-box {
            width: clamp(160px, 25vw, 220px);
            height: clamp(160px, 25vw, 220px);
            border-radius: 50%;
            margin: 0 auto 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(128, 0, 32, 0.15);
            border: 5px solid #ffd700;
            transition: all 0.6s ease;
        }

        .premium-members .box .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .premium-members .box:hover .img-box {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(128, 0, 32, 0.25);
            border-color: #b8860b;
        }

        .premium-members .box:hover .img-box img {
            transform: scale(1.12);
        }

        .premium-members .box .text-box h4 {
            font-size: clamp(18px, 3vw, 22px);
            text-transform: capitalize;
            margin-bottom: 8px;
            color: #333;
            transition: color 0.4s ease;
        }

        .premium-members .box:hover .text-box h4 {
            color: #800020;
        }

        .premium-members .box .text-box h5 {
            font-size: clamp(14px, 2.5vw, 16px);
            text-transform: lowercase;
            font-style: italic;
            color: #800020;
        }

        .premium-members .box .text-box h5 span {
            color: #999;
        }



        /* ---------------PACKAGES----------------- */

           .subscription-plans-wrapper {
            padding: 100px 0 60px 0;
            background: linear-gradient(135deg, #fff8f8 0%, #fdf2f2 100%);
            position: relative;
            overflow: hidden;
        }

        .subscription-plans-wrapper .title-area {
            text-align: center;
        }

        .subscription-plans-wrapper .title-area h2 {
            font-size: 52px !important;
            text-transform: capitalize;
            background: linear-gradient(135deg, #800020, #800020);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            line-height: 1.1;
        }

        .subscription-plans-wrapper .title-area h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -8px;
            width: 120px;
            height: 5px;
            background: #800020;
            border-radius: 3px;
        }

        .subscription-plans-wrapper .title-area p {
            margin-bottom: 40px;
            font-size: 17px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Plan Card */
        .subscription-plans-wrapper .plan-item {
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(128, 0, 32, 0.08);
            transition: all 0.4s ease;
            height: auto;
            max-width: 360px;
            margin: 0 auto;
            text-align: center;
        }

        .subscription-plans-wrapper .plan-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(128, 0, 32, 0.15);
        }

        .subscription-plans-wrapper .plan-icon-holder {
            height: 80px;
            background: linear-gradient(135deg, #F7D1D0, #ffe5e5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subscription-plans-wrapper .plan-icon-holder i {
            font-size: 2.6rem;
            color: #62011a;
            
        }

        .subscription-plans-wrapper .plan-details-section {
            padding: 20px 20px 25px;
        }

        .subscription-plans-wrapper .plan-details-section h4 {
            font-size: 20px;
            margin-bottom: 10px;
            margin-top: 5px;
            color: #333;
        }

        .subscription-plans-wrapper .plan-details-section h2 {
            font-size: 38px;
            margin: 10px 0;
            color: #800020;
            font-weight: 800;
        }

        .subscription-plans-wrapper .plan-details-section h2 span {
            font-size: 26px;
            font-weight: 600;
        }

        .subscription-plans-wrapper .plan-details-section ul {
            margin: 18px 0 20px 0;
            padding: 0;
        }

        .subscription-plans-wrapper .plan-details-section ul li {
            padding: 8px 0;
            font-size: 14.5px;
            gap: 8px;
            color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subscription-plans-wrapper .plan-details-section ul li i {
            font-size: 15px;
            width: 22px;
            text-align: center;
        }

        /* Tick (check) ko green kar diya, cross (times) ko red */
        .subscription-plans-wrapper .plan-details-section ul li .fa-check {
            color: #28a745; /* Bootstrap style success green */
        }

        .subscription-plans-wrapper .plan-details-section ul li .fa-times {
            color: #dc3545; /* Bootstrap style danger red */
        }

        /* Button - Original Colors & Shine */
        .btn-subscribe-now {
            display: inline-block;
            min-width: 200px;
            height: 50px;
            line-height: 50px;
            padding: 0 25px;
            font-size: 16px;
            border-radius: 50px;
            background: linear-gradient(135deg, #800020, #a0002a);
            color: #ffffff !important;
            font-weight: 700;
            border: none;
            transition: all 0.5s ease;
            box-shadow: 0 10px 25px rgba(128, 0, 32, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-subscribe-now::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .btn-subscribe-now:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #900030, #b00030);
            box-shadow: 0 18px 35px rgba(128, 0, 32, 0.4);
        }

        .btn-subscribe-now:hover::before {
            left: 100%;
        }

        .btn-subscribe-now.unavailable {
            background: #ccc !important;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }

        .btn-subscribe-now.unavailable:hover {
            transform: none;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .subscription-plans-wrapper {
                padding: 80px 0 50px 0;
            }
            .plan-item {
                max-width: 340px;
            }
        }

        @media (max-width: 767px) {
            .subscription-plans-wrapper {
                padding: 70px 0 40px 0;
            }
            .subscription-plans-wrapper .title-area h2 {
                font-size: 38px !important;
            }
            .plan-icon-holder {
                height: 70px;
            }
            .plan-icon-holder i {
                font-size: 2.4rem;
            }
        }



        /* -------------------------TESTIMONIALS--------------------- */


                
.testimonial-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  direction: ltr;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2aa 100%); 
}

          .testimonial-section .header-text h2 {
     font-size: 60px !important;
    text-transform: capitalize;
    background: linear-gradient(135deg, #800020, #800020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;         
    position: relative;
    display: inline-block;        
    line-height: 1.1;             
}

 .testimonial-section .header-text h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;                  
                              
    width: 120px;                 
    height: 5px;                  
    background: #800020;           
    border-radius: 3px;
    margin-top:20px;
}

.testimonial-section .header-text p {
                margin-bottom: 40px;
                font-size: 18px;
                line-height: 1.8;
                color: #444;
            }

.testimonial-section .flower {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 0;
}

.testimonial-section .box {
  text-align: center;
  padding: 0 30px;
}

.testimonial-section .box .img-box {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-section .box .img-box img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-section .box .img-box i {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding-top: 10px;
  border: 4px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
}

.testimonial-section .box .text-box h4 {
  text-transform: capitalize;
}

.testimonial-section .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}




/* ---------------------COUNTER-------------------------- */

  .counter-section {
            background: linear-gradient(135deg, #fffafa 0%, #fdf4f4 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(128, 0, 32, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .counter-section .box {
            text-align: center;
            padding: 25px 15px;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(128, 0, 32, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .counter-section .box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #800020, #a0002a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .counter-section .box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(128, 0, 32, 0.12);
        }

        .counter-section .box:hover::after {
            transform: scaleX(1);
        }

        /* Icon Circle */
        .counter-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 22px;
            background: linear-gradient(135deg, #F7D1D0, #ffe8e8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(247, 209, 208, 0.5);
        }

        .counter-icon i {
            font-size: 2.3rem;
            color: #800020;
        }

        .counter-section .box h2 {
            font-size: 48px;
            font-weight: 800;
            color: #800020;
            margin-bottom: 10px;
            line-height: 1;
        }

        .counter-section .box h4 {
            font-size: 20px;
            color: #333;
            margin-top: 0;
            text-transform: capitalize;
            font-weight: 600;
        }

        /* Desktop aur Tablet pe 4 columns (normal) */
        @media (min-width: 992px) {
            .counter-section .counter-col {
                flex: 0 0 25%;
                max-width: 25%;
            }
        }

        /* Small screens (mobile) pe 2 columns per row */
        @media (max-width: 767px) {
            .counter-section {
                padding: 70px 0;
            }
            .counter-section .counter-col {
                flex: 0 0 50%;
                max-width: 50%;
                padding-left: 15px;
                padding-right: 15px;
            }
            .counter-section .box {
                padding: 20px 10px;
                border-radius: 14px;
            }
            .counter-section .box h2 {
                font-size: 34px;
            }
            .counter-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 18px;
            }
            .counter-icon i {
                font-size: 1.8rem;
            }
            .counter-section .box h4 {
                font-size: 17px;
            }
        }

        /* Extra small mobile pe aur thoda compact */
        @media (max-width: 480px) {
            .counter-section .box h2 {
                font-size: 30px;
            }
            .counter-icon {
                width: 55px;
                height: 55px;
            }
            .counter-icon i {
                font-size: 1.6rem;
            }
            .counter-section .box h4 {
                font-size: 16.5px;
            }
        }

        @media (max-width: 360px) {
            .counter-section .box h2 {
                font-size: 28px;
            }
            .counter-icon {
                width: 50px;
                height: 50px;
            }
            .counter-icon i {
                font-size: 1.5rem;
            }
            .counter-section .box h4 {
                font-size: 16px;
            }
        }



    /* -----------------------BLOG (POST)-------------------------- */

    .blog-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2aa 100%); 
}

.blog-section .header-text {
  text-align: center;
  margin-bottom: 60px;
}

.blog-section .header-text h2 {
  font-size: 60px;
  text-transform: capitalize;
  background: linear-gradient(135deg, #800020, #800020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;         
  position: relative;
  display: inline-block;        
  line-height: 1.1;             
  /* left: 50%;
  transform: translateX(-50%); */
}

.blog-section .header-text h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;                  
  width: 120px;                 
  height: 5px;                  
  background: #800020;           
  border-radius: 3px;
}

.blog-section .header-text p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-section .box .img-box {
  margin-bottom: 20px;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-section .box .text-box h4 {
  font-family:Roboto Slab ;
  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 12px;
  color: #333;
}

.blog-section .box .text-box p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-section .box .text-box .read-more {
  /* font-style: italic; */
  text-transform: capitalize;
  color: #800020;
  border-bottom: 1px solid #800020;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-section .box .text-box .read-more:hover {
  color: #600018;
  border-bottom: 1px solid #600018;
  letter-spacing: 1px;
}

.blog-section .box:hover .img-box img {
  transform: scale(1.12);
}

/* Responsive Media Queries - All screen sizes ke liye perfectly attractive aur clean look */
@media (max-width: 1399px) {
  .blog-section .header-text h2 {
    font-size: 54px;
  }
}

@media (max-width: 1199px) {
  .blog-section {
    padding: 80px 0;
  }
  .blog-section .header-text h2 {
    font-size: 48px;
  }
  .blog-section .header-text h2::after {
    width: 100px;
    height: 4px;
    bottom: -10px;
  }
  .blog-section .box .img-box {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .blog-section {
    padding: 70px 0;
  }
  .blog-section .header-text {
    margin-bottom: 50px;
  }
  .blog-section .header-text h2 {
    font-size: 42px;
  }
  .blog-section .header-text p {
    font-size: 17px;
  }
  .blog-section .box .text-box h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 60px 0;
  }
  .blog-section .header-text h2 {
    font-size: 38px;
  }
  .blog-section .header-text h2::after {
    width: 80px;
    height: 4px;
  }
  .blog-section .box .img-box {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .blog-section {
    padding: 50px 0;
  }
  .blog-section .header-text {
    margin-bottom: 40px;
  }
  .blog-section .header-text h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .blog-section .header-text p {
    font-size: 16px;
  }
  .blog-section .box .img-box {
    height: 200px;
  }
  .blog-section .box .text-box h4 {
    font-size: 19px;
  }
}




/* -------------------WHY CHOOSE US------------------------ */

 .container-section {
        background: var(--ghostColor);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .container .heading {
        font-size: 60px !important;
        text-transform: capitalize;
        background: linear-gradient(135deg, #800020, #800020);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        line-height: 1.1;
    }

    .container .heading::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -8px;
        width: 120px;
        height: 5px;
        background: #800020;
        border-radius: 3px;
    }

   
    #why-wordthy {
        padding: 100px 0;
        background: linear-gradient(to bottom, #ffffff, #fdf6f6);
    }

    #why-wordthy .card {
        border: none !important;
        border-radius: 16px !important;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 8px 25px rgba(128, 0, 32, 0.07);
    }

    #why-wordthy .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #800020, #a0002a);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    #why-wordthy .card:hover::before {
        transform: scaleX(1);
    }

    #why-wordthy .card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(128, 0, 32, 0.12);
    }

    /* Icon Circle */
    .icon-circle {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.8rem;
        margin: 0 auto 25px auto;
        background: linear-gradient(135deg, #F7D1D0, #ffe0e0) !important;
        color: #800020;
        box-shadow: 0 6px 20px rgba(247, 209, 208, 0.4);
    }

    #why-wordthy .card h4 {
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    #why-wordthy .card p {
        color: #666;
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 767px) {
        #why-wordthy {
            padding: 70px 0;
        }

        .container .heading {
            font-size: 42px !important;
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            font-size: 1.5rem;
        }

        #why-wordthy .card {
            padding: 30px 20px;
        }
    }


    /* ------------ADVERTISMENT-------------------- */

    .advertisement-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: white;
}

.advertisement-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M0 0h100v100H0z"/%3E%3C/g%3E%3C/svg%3E');
    pointer-events: none;
}

.advertisement-section .section-heading {
    font-size: 60px !important;
    text-transform: capitalize;
    background: linear-gradient(135deg, #800020, #800020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px !important;   
    position: relative;
    display: inline-block;        
    line-height: 1.1;    
}

.advertisement-section .section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;                  
    width: 140px;                 
    height: 6px;                  
    background: #800020;           
    border-radius: 3px;
}

/* Responsive adjustments for heading */
@media (max-width: 992px) {
    .advertisement-section .section-heading {
        font-size: 48px !important;
    }
}

@media (max-width: 768px) {
    .advertisement-section .section-heading {
        font-size: 40px !important;
    }
}

@media (max-width: 576px) {
    .advertisement-section .section-heading {
        font-size: 36px !important;
    }
}

/* Card */
.advertisement-section .ad-box {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.advertisement-section .ad-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.25);
}

/* Icon */
.advertisement-section .ad-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #800020;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.advertisement-section .ad-box:hover .ad-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #fad0c4 0%, #ff9a9e 100%);
}

/* Title & Text */
.advertisement-section .ad-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000000ff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.advertisement-section .ad-text {
    font-size: 17px;
    color: #696262ff;
    line-height: 1.7;
    opacity: 0.9;
}

/* CTA Button */
.advertisement-section .btn-flower {
    display: inline-block;
    min-width: 200px;
    height: 52px;
    padding: 0 25px;
    line-height: 52px;
    text-align: center;
    white-space: nowrap;
    border-radius: 50px;
    background: linear-gradient(135deg, #800020, #a0002a);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.5s ease;
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.advertisement-section .btn-flower::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.advertisement-section .btn-flower:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #900030, #b00030);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.4);
}

.advertisement-section .btn-flower:hover::before {
    left: 100%;
}


/* ------------------FOOTER------------------- */
.footer-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #e0e0e0 !important;
    padding: 60px 0 40px;           /* height kam */
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgb(68, 10, 0) 0%, transparent 60%);
    pointer-events: none;
}

.footer-section .logo img {
    height: 80px;                   
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.footer-section .logo:hover img {
    transform: scale(1.08);
}

.footer-section h5 {
    font-size: 20px !important;
    font-weight: 700;
    color: #fb846f !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;           
    position: relative;
}

.footer-section h5::after {
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: #fb846f;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(251, 132, 111, 0.6);
}

/* Contact paragraphs - same classes, bas spacing tight */
.footer-section .box p,
.footer-section .box > p,
.footer-section .col-lg-3 .box p {
    color: #bbbbbb !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 10px !important;    /* yeh gap sabse zyada tha */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: color 0.4s ease !important;
}

.footer-section .box p:hover,
.footer-section .col-lg-3 .box p:hover {
    color: #fb846f !important;
}

.footer-section .newsletter-form p {
    color: #bbbbbb !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important;
}

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

.footer-section .links li {
    margin-bottom: 10px;               /* links spacing kam */
}

.footer-section .links li a {
    color: #bbbbbb !important;
    font-size: 15.5px !important;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.footer-section .links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #fb846f;
    transition: width 0.5s ease;
}

.footer-section .links li a:hover {
    color: #fb846f !important;
    transform: translateX(12px);
}

.footer-section .links li a:hover::before {
    width: 100%;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-section .social-links a {
    width: 50px;
    height: 50px;
    background: rgba(163, 164, 255, 0.18);
    color: #ffffff !important;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-section .social-links a:hover {
    background: #fb846f;
    transform: translateY(-12px) scale(1.1);
    box-shadow: 0 20px 35px rgba(251, 132, 111, 0.4);
}

.footer-section .newsletter-form .input-group {
    position: relative;
    max-width: 350px;
}

.footer-section .newsletter-form .form-control {
    height: 62px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(251, 132, 111, 0.4);
    border-radius: 50px;
    padding: 0 80px 0 30px;
    color: #ffffff !important;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.footer-section .newsletter-form .form-control::placeholder {
    color: #999999 !important;
}

.footer-section .newsletter-form .form-control:focus {
    border-color: #fb846f;
    box-shadow: 0 0 0 5px rgba(251, 132, 111, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.footer-section .newsletter-form button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 46px;
    height: 46px;
    background: #fb846f;
    border: none;
    border-radius: 50%;
    color: white !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(251, 132, 111, 0.5);
}

.footer-section .newsletter-form button:hover {
    background: #e06a55;
    transform: scale(1.2) rotate(15deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    font-size: 15px !important;
    color: #888888 !important;
    margin: 0 !important;
}

.footer-bottom a {
    color: #fb846f !important;
    text-decoration: none;
    transition: color 0.4s ease;
}

.footer-bottom a:hover {
    color: #ffffff !important;
}

.footer-section .text-danger {
    color: #ff6b6b !important;
    font-size: 13px !important;
    margin-top: 8px !important;
}

/* Responsive - classes same, bas values adjust */
@media (max-width: 991px) {
    .footer-section .col-lg-3 {
        margin-bottom: 40px;
    }
    .footer-section .social-links {
        justify-content: flex-start;
    }
    .footer-section .newsletter-form .input-group {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 50px 0 30px;
    }
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section .social-links {
        justify-content: center;
    }
    .footer-section .box p {
        font-size: 14px !important;
        text-align: center !important;
    }
}

/* Modal blur aur button wala part bhi same */
body.modal-blur-active > *:not(.modal):not(.modal-backdrop) {
    filter: blur(6px);
    transition: filter 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.modal {
    filter: none !important;
    pointer-events: auto;
}

.btn-flower2 {
    background: maroon;
    display: inline-block;
    padding: 10px;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 52px;
    width: 162px;
    border: 6px solid var(--white);
    -webkit-box-shadow: 0 0 0 1px var(--primary);
            box-shadow: 0 0 0 1px var(--primary);
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn-flower2:hover,
.btn-flower2:focus,
.btn-flower2:active {
    background-color: #ac0000 !important;  
    border-color: #ffffff !important;
    color: white !important;
}
 

/* ====================== */
/*       SIDEBAR          */
/* ====================== */

@media (max-width: 768px) {
    .sidebar-sections {
        order: 2;
        margin-top: 1.5rem;
    }
}

.sidebar-sections {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(230, 230, 255, 0.7);
    transition: all 0.3s ease;
}

.sidebar:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.profile {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fff4f5ff 0%, #fff4f9ff 100%);
    border-color:10px solid #3e0000ff;
    color: white;
    position: relative;
}

.profile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.profile img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.35);
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
}

.profile img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.profile h5 {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Menu Items */
.sidebar ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.sidebar ul li {
    margin: 0.35rem 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.25rem;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar ul li a i {
    width: 32px;
    font-size: 1.2rem;
    margin-right: 12px;
    color: #777;
    transition: all 0.3s ease;
}

/* Active / Hover State */
.sidebar ul li.active,
.sidebar ul li:hover {
    background: rgba(234, 102, 199, 0.105);
}

.sidebar ul li.active a,
.sidebar ul li:hover a {
    color: #4f46e5;
    font-weight: 600;
}

.sidebar ul li.active a i,
.sidebar ul li:hover a i {
    color: #4f46e5;
    transform: scale(1.15);
}

/* Logout item special */
.sidebar ul li:last-child a {
    color: #e53e3e;
}

.sidebar ul li:last-child:hover {
    background: rgba(229, 62, 62, 0.12);
}

.sidebar ul li:last-child a i {
    color: #e53e3e;
}

/* ====================== */
/*     LOGOUT MODAL       */
/* ====================== */

#logoutModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    background: white;
    animation: zoomIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#logoutModal .modal-header {
     background: linear-gradient(145deg, #ffffff, #f8f9ff);
    color: white;
    border-bottom: none;
    padding: 1.5rem 1.75rem;
}

#logoutModal .modal-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

#logoutModal .modal-body {
    padding: 2rem 1.75rem;
}

#logoutModal .modal-body i {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    color: #f56565;
    filter: drop-shadow(0 6px 12px rgba(245, 101, 101, 0.35));
}

#logoutModal .modal-body h5 {
    font-weight: 700;
    color: #2d3748;
}

#logoutModal .modal-body p {
    color: #718096;
    font-size: 1.05rem;
}

#logoutModal .modal-footer {
    border-top: none;
    background: #f8f9fa;
    display: flex;
    flex-wrap: nowrap;          /* buttons ko ek line mein force karega */
    justify-content: center;    /* center mein laayega */
    gap: 1.5rem;               /* dono buttons ke beech space */
    padding: 1rem 1.5rem;
}

.btn-flower.btn-logout {
    min-width: 110px;
    height: 38px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-flower.btn-logout:first-child {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-flower.btn-logout:first-child:hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.btn-flower.btn-logout:last-child {
    background: linear-gradient(90deg, rgb(98, 1, 1), #850404ff);
    color: white;
}

.btn-flower.btn-logout:last-child:hover {
    background: linear-gradient(90deg, #470303, #7f0404);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

/* Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Remove default backdrop opacity */
.modal-backdrop.show {
    opacity: 0.65;
    background: rgba(0,0,0,0.65);
}





