
:root {
  --primary-color2: #ba1245;
  --footer-color: #075edb;
  --background-color: #000000;
}


:root {
  --primary-color2: #ba1245;
  --footer-color: #075edb;
  --background-color: #000000;
}

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}



html,
body {
  font-size: 16px;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 3.875rem;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3.125rem;
}

h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.875rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
}

h5 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25rem;
}

h6 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875rem;
}

a,
a:active,
a:focus,
a:hover,
button {
  text-decoration: none;
  outline: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

embed,
iframe,
img,
object {
  max-width: 100%;
}

li a {
  color: #ffffff;
}

a:hover,
button:hover {
  transition: all 0.3s ease-in;
}

/*--------margin and padding global------*/
.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.my-6 {
  margin: 6rem 0rem;
}

.mx-6 {
  margin: 0rem 6rem;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.py-6 {
  padding: 6rem 0rem;
}

.px-6 {
  padding: 0rem 6rem;
}

.primary__btn {
  position: relative;
  font-size: 18px;
  padding: 0.7rem 3rem;
  background: var(--primary-color2);
  border: 1px solid var(--primary-color2);
  z-index: 1;
  color: var(--primary-color2);
  border-radius: 10px;
  cursor: pointer;
  text-transform: capitalize;
  overflow: hidden;
  font-weight: 400;
}
.primary__btn:hover {
  background: transparent;
  border: 1px solid var(--primary-color2);
  color: var(--primary-color2);
}

.heading-section {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.375rem;
  text-align: center;
  text-transform: uppercase;
}

.topbar-wrapper {
  background-color: var(--primary-color2);
}
.topbar-wrapper .topbar {
  background-color: var(--primary-color2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
  font-family: sans-serif;
  height: 45px;
}
.topbar-wrapper .topbar .left-icons {
  display: flex;
  gap: 10px;
}
.topbar-wrapper .topbar .left-icons a {
  background: #fff;
  border-radius: 50%;
  color: var(--primary-color2);
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topbar-wrapper .topbar .left-icons a img {
  width: 14px;
  height: 14px;
}
.topbar-wrapper .topbar .center-news {
  display: flex;
  align-items: center;
  background: white;
  padding-left: 0;
  border-radius: 2px;
}
.topbar-wrapper .topbar .center-news .news-box {
  background-color: var(--primary-color2);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 6px 10px;
}
.topbar-wrapper .topbar .center-news .news-box .icon {
  margin-right: 5px;
}
.topbar-wrapper .topbar .center-news .news-box .text {
  font-weight: bold;
  font-size: 14px;
}
.topbar-wrapper .topbar .center-news .news-text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 500px;
  height: 100%;
}
.topbar-wrapper .topbar .center-news .news-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 14s linear infinite;
  font-size: 16px;
  color: #333;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.topbar-wrapper .topbar .right-contact {
  font-size: 14px;
  color: #222;
  display: flex;
  align-items: center;
}
.topbar-wrapper .topbar .right-contact .phone-icon {
  color: #b71c1c;
  margin-right: 5px;
}

.top-header {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
  position: relative;
  height: 120px;
}
.top-header button.btn {
  font-size: 1.25rem;
  background: none;
  border: none;
}
.top-header .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-header .logo-wrapper img {
  width: 105px;
  height: 105px;
}
.top-header .logo-wrapper .logo-heading {
  font-weight: 800;
  font-size: 25px;
  display: inline-block;
}
.top-header .logo-wrapper .logo-slogan {
  color: var(--primary-color2);
  font-weight: 600;
}
.top-header .buttons {
  display: flex;
  gap: 20px;
}
.top-header .buttons .view__btn {
  background-color: var(--primary-color2);
  color: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 50px;
}

.bottom-nav {
  background-color: var(--primary-color2);
  color: #ffffff;
}
.bottom-nav .nav-link {
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.bottom-nav .nav-link:hover {
  text-decoration: underline;
}
.bottom-nav .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.offcanvas-body .nav-link {
  color: #000;
  padding: 0.5rem 0;
  font-weight: 500;
}

.celebrity .celebrity__heading {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.celebrity .saree-card {
  border-radius: 8px;
  background: #f9f9f9;
  transition: box-shadow 0.3s;
}
.celebrity .saree-card .saree__card__data {
  padding: 10px;
}
.celebrity .saree-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.celebrity .saree-card img {
  width: 100%;
  border-radius: 6px;
  height: 435px;
  -o-object-fit: cover;
     object-fit: cover;
}
.celebrity .saree-card .name {
  font-size: 0.95rem;
  margin: 10px 0;
  font-weight: 500;
}
.celebrity .saree-card .price {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.celebrity .saree-card .price .old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}
.celebrity .saree-card .price .discount {
  color: var(--primary-color2);
  margin-left: 5px;
  font-size: 0.9rem;
}
.celebrity .saree-card .rating {
  font-size: 0.9rem;
}
.celebrity .saree-card .rating .badge {
  font-size: 0.8rem;
  background-color: var(--primary-color2);
  border-radius: 50px;
  font-weight: 500;
}
.celebrity .saree-card button {
  font-weight: 500;
}
.celebrity .saree-card .product__btn {
  border: 1px solid var(--primary-color2);
  color: var(--primary-color2);
  padding: 0.5rem 1rem;
  transition: all ease 0.2s;
}
.celebrity .saree-card .product__btn:hover {
  border: 1px solid var(--primary-color2);
  background-color: var(--primary-color2);
  color: #ffffff;
}
.celebrity .view__all__btn {
  padding: 2rem 0rem;
  text-align: center;
}
.celebrity .view__all__btn .view__btn {
  border: 1px solid var(--primary-color2);
  color: #ffffff;
  background-color: var(--primary-color2);
  border-radius: 25px;
  padding: 0.7rem 4rem;
  transition: all ease 0.2s;
}
.celebrity .view__all__btn .view__btn:hover {
  border: 1px solid var(--primary-color2);
  background-color: transparent;
  color: var(--primary-color2);
}

.money .money__heading h3 {
  font-weight: 600;
  font-size: 35px;
  line-height: 65px;
}
.money .money-card .money__card__data .idcard-box {
  background: linear-gradient(135deg, var(--primary-color2), #9d174d);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.money .money-card .money__card__data .idcard-box .icon-circle {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.money .money-card .money__card__data .idcard-box .icon-circle span {
  color: var(--primary-color2);
  font-size: 22px;
  font-weight: 700;
}
.money .money-card .money__card__data .idcard-box .icon-circle i {
  color: var(--primary-color2);
  font-size: 28px;
}
.money .money-card .money__card__data .idcard-box .card-label {
  font-size: 18px;
  font-weight: 600;
}
.money .money-card .money__card__data .idcard-box img {
  border-radius: 15px;
  margin-top: -70px;
}
.money .money-card .money__card__data .idcard-box h5 {
  padding-top: 20px;
  padding-bottom: 10px;
}
.money .view__all__btn {
  padding: 2rem 0rem;
  text-align: center;
}
.money .view__all__btn .view__btn {
  border: 1px solid var(--primary-color2);
  color: #ffffff;
  background-color: var(--primary-color2);
  border-radius: 25px;
  padding: 0.7rem 4rem;
  transition: all ease 0.2s;
}
.money .view__all__btn .view__btn:hover {
  border: 1px solid var(--primary-color2);
  background-color: transparent;
  color: var(--primary-color2);
}




.money .management__team .management__wrapper {
  background: linear-gradient(135deg, var(--primary-color2), #9d174d);
  display: flex;
  justify-content: space-between;
  padding: 40px 50px;
  border-radius: 20px;
}

.money .management__team .management__wrapper .management__image img {
  border-radius: 20px;
}
.money .management__team .management__wrapper .mangement__conten {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.money .management__team .management__wrapper .mangement__conten h2 {
  font-size: 35px;
  line-height: 30px;
}
.money .management__team .management__wrapper .mangement__conten h5 {
  font-size: 18px;
  line-height: 28px;
}
.money .management__team .management__wrapper .mangement__conten p {
  font-size: 16px;
  max-width: 80%;
  line-height: 26px;
}
.money .management__team .management__wrapper .mangement__conten .social__media a {
  color: var(--primary-color2);
  background-color: #ffffff;
  padding: 5px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
}

footer {
  border-top: 1px solid #bfbfbf;
  background-color: #F5F5F5;
  padding: 4rem 0rem 0rem 0rem;
}
footer .border-container {
  border-bottom: 1px solid #666666;
  padding-bottom: 2rem;
}
footer .footer__logo img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer__logo p {
  color: #666666;
  font-weight: 500;
}
footer .links h4 {
  color: #666666;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
footer .links ul {
  list-style: none;
  color: #666666;
}
footer .links ul li {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
footer .links ul li a {
  color: #999999;
}
footer .links ul li:nth-child(1) {
  margin-top: 1rem;
}
footer .links p {
  color: #666666;
}
footer .links .social-icon-footer i {
  background-color: #666666;
  padding: 0.4rem;
  color: #1a202c;
  border-radius: 25px;
  font-size: 13px;
  margin-right: 4px;
}
footer .copyright {
  text-align: center;
  color: #666666;
  font-weight: 300;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: var(--primary-color2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 18px;
  transition: 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: var(--primary-color2);
  transform: scale(1.1);
}

.owl-nav i {
  font-size: 16px;
  color: #999999;
}

.about__banner {
  position: relative;
  background-color: var(--primary-color2);
  padding: 5rem 0;
}
.about__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(203, 30, 26, 0.6);
  z-index: 1;
}
.about__banner .about__banner__heading {
  position: relative;
  z-index: 2;
}
.about__banner .about__banner__heading h2 {
  text-align: center;
  color: #999999;
}

.about__main__wrapper .left_about_image img {
  height: 600px;
  width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 20px;
}
.about__main__wrapper .right_about__data h6 {
  font-weight: 600;
  color: #000;
  font-size: 18px;
}
.about__main__wrapper .right_about__data h3 {
  font-weight: 700;
  font-size: 35px;
}
.about__main__wrapper .right_about__data h3 span {
  color: var(--primary-color2);
}
.about__main__wrapper .right_about__data p {
  font-size: 15px;
  line-height: 25px;
}

.contact-info-area {
  padding: 6rem 0rem;
}
.contact-info-area .contact-info .item {
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  padding: 50px 30px;
  text-align: center;
  background: var(--white) none repeat scroll 0 0;
  border-radius: 20px;
}
.contact-info-area .contact-info .item .icon i {
  font-size: 20px;
  background-color: var(--primary-color2);
  color: #999999;
  padding: 20px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-area .contact-info .item .info h4 {
  font-size: 20px;
  padding-top: 10px;
}

.map-form-wrapper {
  padding: 0rem 0rem 6rem 0rem;
}
.map-form-wrapper .maps-form form {
  background-color: var(--primary-color2);
  padding: 50px 30px 30px 30px;
  border-radius: 15px;
}
.map-form-wrapper .maps-form form h2 {
  color: #999999;
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 35px;
}
.map-form-wrapper .maps-form form .form-group {
  margin-bottom: 15px;
}
.map-form-wrapper .maps-form form .form-group .form-control {
  border-radius: 5px;
  border: 1px solid #999999;
  background: transparent;
  box-shadow: none;
  color: #999999;
}
.map-form-wrapper .maps-form form .form-group .form-control::-moz-placeholder {
  color: #ffffff;
  font-size: 15px;
}
.map-form-wrapper .maps-form form .form-group .form-control::placeholder {
  color: #ffffff;
  font-size: 15px;
}
.map-form-wrapper .maps-form form .form-group .form-control:focus {
  box-shadow: none;
}
.map-form-wrapper .maps-form form button {
  background: #ffffff;
  color: var(--primary-color2);
  padding: 10px 40px;
  border: none;
  border-radius: 25px;
}
.map-form-wrapper .maps-form .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-form-wrapper .maps-form .social-icon i {
  background-color: var(--primary-color2);
  padding: 0.4rem;
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  height: 32px;
  width: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow__us {
  background-image: url(../images/download.webp);
  height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: center center;
  position: sticky;
}
.follow__us h3 {
  text-align: center;
  font-weight: 800;
  color: #ffffff;
}
.follow__us p {
  color: #ffffff;
  text-align: center;
  width: 70%;
  font-size: 1rem;
  font-weight: 500;
  align-self: center;
}/*# sourceMappingURL=style.css.map */

.achievements-section {
  background-color: var(--primary-color2);
  padding: 60px 0;
  color: #333;
}

.achievements-section h2,
.achievements-section h3 {
  color: #2c3e50;
}

.achievements-section hr {
  border-top: 1px solid #ccc;
  margin: 2rem 0;
}

.achievements-section p {
  line-height: 1.7;
}

.achievements-section .category-title {
  margin-top: 40px;
  font-weight: 600;
  font-size: 1.5rem;
}