/* Font Family ***********************************************************************/
/* Poppins */
@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/Poppins/Poppins-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-display: swap;
}

/* Futura-Medium */
@font-face {
  font-family: "Futura-Medium";
  src: url("../fonts/Futura-Medium/Futura-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Futura-Md-BT-Medium";
  src: url("../fonts/Futura-Medium/Futura-Md-BT-Medium.ttf");
  font-display: swap;
}

/* Futura_Bk_Bt_Book */
@font-face {
  font-family: "Futura_Bk_Bt_Book";
  src: url("../fonts/Futura_Bk_Bt_Book/Futura_Bk_Bt_Book.ttf");
  font-display: swap;
}

/* Gilroy */
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy/Gilroy-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy/Gilroy-Medium.ttf");
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --black: #000000;
  --black-cat: #433d37;
  --black-cow: #4d4a4a;
  --cantaloupe: #fbaa28;
  --dark-midnight-blue: #013563;
  --dune: #343434;
  --golden-bell: #ea8220;
  --red-fox: #bd5b18;
  --vampire-grey: #505050;
  --vista-white: #fcf9f4;
  --light-yellow: #faf5ea;
  --white: #ffffff;
  --light-gray: #f7f7f7;
  --gray: #9d9d9d;
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}

.bg-white {
  background-color: var(--white);
}
.bg-vista-white {
  background-color: var(--vista-white);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}

body {
  font-family: "Futura_Bk_Bt_Book";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--black);
  font-weight: normal;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 46px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--black);
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
a:hover {
  color: var(--black-cat);
}
span {
  display: inline-block;
}
.cmn-btn {
  font-size: 18px;
  color: var(--black-cat);
  padding: 12px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins-Light";
}

.cmn-btn-orange {
  font-size: 18px;
  background-color: var(--golden-bell);
  font-family: "Futura-Md-BT-Medium";
  color: var(--white) !important;
  gap: 30px;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cmn-btn img {
  max-width: 20px;
  margin: 0;
}
.cmn-btn-orange img {
  max-width: 20px;
  margin: 0;
}
.white-btn {
}

section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  color: var(--dark-midnight-blue);
  text-transform: uppercase;
  font-family: "Futura-Md-BT-Medium";
}
/* .bg {
  padding: 100px 0;
} */
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.form-control-common {
  background: var(--white);
  border: none;
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black-cat);
  border-radius: 10px;
  box-shadow: none;
  resize: none;
  outline: none;
}

.input-group {
  padding-bottom: 20px;
}
::placeholder {
  color: var(--gray);
  text-transform: capitalize;
}
form .cmn-btn {
  background: var(--golden-bell);
  padding: 10px 30px;
  color: var(--white);
}

select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: url("../images/down-arrow.svg") no-repeat !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 14px !important;
  padding-right: 2.5rem !important;
  background-color: var(--white) !important;
}

/* header css start ******************************************************************************/
/* @keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
} */

/* #header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
} */

#header {
  padding: 10px 0;
  transition: 0.5s all;
  position: relative;
  z-index: 9;
}
.header-black {
  background-color: var(--black);
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 90px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--black-cat);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .click-menu span {
  background-color: var(--white) !important;
}

#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
}
#header .main-nav nav ul li:not(:last-child) {
  margin: 0 26px;
}
#header .main-nav nav ul li a {
  font-size: 20px;
  color: var(--light-gray);
  padding: 5px 5px;
  transition: all 0.5s;
  font-family: "Poppins-Regular";
  cursor: pointer;
}
#header .main-nav nav ul li a:hover,
#header .main-nav nav ul li a.active {
  color: var(--cantaloupe);
}

/* header new code */
#header .menu-item-has-children .sub-menu {
  /* display: none; */
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: 4px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.671));
  padding: 10px 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50%);
  transition: 0.5s;
  z-index: 9;
}
#header .menu-item-has-children .sub-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 30px;
  height: 20px;
  background: var(--white);
  left: 20px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#header .menu-item-has-children .sub-menu a {
  color: var(--dune) !important;
  font-size: 16px;
}
#header li.menu-item-has-children:hover > .sub-menu {
  display: block;
  opacity: 1;
  pointer-events: fill;
  transform: translateY(0%);
}

#header .menu-item-has-children .sub-menu.show {
  display: block !important;
  opacity: 1;
  pointer-events: fill;
  transform: translateY(0%);
}

#header .menu-item-has-children .sub-menu li {
  display: block;
  margin: 0 !important;
}

#header .menu-item-has-children .sub-menu .sub-menu {
  left: -112%;
  top: 0;
}

#header .menu-item-has-children .sub-menu .sub-menu::after {
  top: 10px;
  right: -20px;
  left: unset;
  transform: rotate(90deg);
}

/* #header .menu-item > .sub-menu li:nth-child(5) a::after,
#header .menu-item > .sub-menu li:nth-child(6) a::after {
  display: none;
} */

#header .menu-item-has-children > a::after {
  display: inline-block;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-left: 10px;
  vertical-align: middle;
  border-radius: 10px;
}

#header .button-box {
  padding: 0;
  margin-left: 30px;
}
#header .button-box .cmn-btn {
  font-size: 16px;
  padding: 10px 12px;
}
/* homeBanner css ******************************************************************************/
#home-banner {
  /* padding: 0 0; */
  background: url("/wp-content/themes/rudram/assets/images/home-banner-bg.png")
    no-repeat;
  background-size: 100% 100%;
  height: 100vh;
  margin-top: -116px;
}
#home-banner .container {
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

#home-banner .banner-caption-box h1 {
  color: var(--white);
  letter-spacing: 7px;
  text-transform: uppercase;
  font-family: "Futura-Md-BT-Medium";
  text-align: center;
}

/* section css ******************************************************************************/
#about-us {
  background-color: var(--vista-white);
}

.small-title {
  margin-bottom: 40px;
}
.small-title span {
  font-size: 30px;
  color: var(--black);
  position: relative;
  text-transform: capitalize;
}
.small-title span:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  /* margin: 0 auto; */
  background-color: var(--red-fox);
  width: 52px;
  height: 3px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#about-us .text-box {
  /* max-width: 505px; */
  /* margin-left: 95px; */
}
#about-us .text-box p {
  font-size: 26px;
  color: var(--dune);
  text-transform: capitalize;
}

.about-us .section-heading {
  text-align: left;
}
.about-us .bg-img-box img {
  max-width: 100%;
  max-height: 700px;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}

.about-us .about-us-box {
  margin-top: -300px;
  position: relative;
}

/* certification css ******************************************************************************/
.certification-cmn .certification-slider .item img {
  width: 100%;
  max-width: 170px;
}

.certification-cmn .text-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}

.certification-cmn .text-box p {
  color: var(--dune);
  text-align: center;
  font-size: 28px;
}

/* our-product css ******************************************************************************/

#our-product .section-heading {
  text-align: left;
}

#our-product .main-box {
  display: grid;
  grid-template-columns: 60% 1fr;
  border-radius: 20px;
  background: var(--white);
  align-items: center;
  position: relative;
}
#our-product .main-box::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 8px;
  border-radius: 50px;
  height: 50%;
  background-color: #dabb69;
}

#our-product .main-box .text-box {
  padding: 20px 50px;
}

#our-product h5 {
  font-family: "Futura-Md-BT-Medium";
}

#our-product .box {
  transition: 0.5s;
  border-radius: 20px;
}
#our-product .box:hover .img-box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
#our-product .sub-boxes .img-box {
  max-width: 100%;
  max-height: 250px;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s;
}

#our-product .sub-boxes .img-box img {
  width: 100%;
  height: 100%;
}

#our-product .sub-boxes .text {
  text-align: center;
  padding: 20px 20px 10px;
}
#our-product .row {
  row-gap: 40px;
}

/* why-rudram css ******************************************************************************/
.why-rudram-cmn .row {
  row-gap: 30px;
}
.why-rudram-cmn .section-heading {
  text-align: left;
}

.why-rudram-cmn .box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 70px 20px 60px;
  text-align: center;
  transition: 0.5s;
  height: 100%;
}
.why-rudram-cmn .box:hover {
  background-color: var(--golden-bell);
}

.why-rudram-cmn .box:hover svg path {
  fill: var(--white);
}
.why-rudram-cmn .box svg {
  max-width: 120px;
  fill: var(--cantaloupe);
  transition: 0.5s;
}

.why-rudram-cmn .box:hover .text h5 {
  color: var(--white);
}

.why-rudram-cmn .box .text {
  padding-top: 30px;
  text-transform: capitalize;
}

/* partner css ******************************************************************************/

.partner .section-heading {
  text-align: left;
}

.partner .partner-box h4 {
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Poppins-Light";
  position: relative;
  z-index: 9;
}

.partner .partner-box {
  background: url("/wp-content/themes/rudram/assets/images/partner-bg.png")
    no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner .partner-box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black);
  opacity: 0.7;
}

#partner .content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
}

#partner .box-1 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
}

#partner .box-2 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 5;
}

#partner .box-3 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 1;
}

#partner .box-4 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 4;
}

#partner .box-5 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 6;
  grid-row-start: 1;
}

#partner .box-6 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
  grid-column-start: 6;
  grid-row-start: 3;
}

#partner .box {
  position: relative;
  z-index: 9;
}
#partner .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.562);
}

#partner .box .img-box {
  height: 100%;
}

#partner .box .img-box img {
  width: 100%;
  height: 100%;
}

#partner .box .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

#partner .box .text-box h4 {
  font-family: "Poppins-Light";
  color: var(--white);
  text-align: center;
}

#partner .spice-img-box-1 {
  position: absolute;
  top: 0;
  left: 2%;
  transform: translateX(-50%);
}
#testimonial-home .spice-img-box-2 {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -50%);
}

/* testimonial css ******************************************************************************/

.testimonials .item {
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 50px 40px 40px;
  height: 100%;
  opacity: 0.5;
}

.testimonials .owl-item.active .item {
  opacity: 1;
}

.testimonials .text p {
  font-family: "Futura_Bk_Bt_Book";
  width: 80%;
  line-height: 1.6;
}
.testimonials .profile {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 50px;
}

.testimonials .profile .img-dp-box {
  max-width: 50px;
  max-height: 50px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonials .profile-info h6 {
  font-family: "Gilroy-Medium";
  margin-bottom: 5px;
}

.testimonials .profile-info p {
  font-family: "Gilroy-Regular";
  font-size: 14px;
}

.testimonials .owl-stage {
  display: flex;
  padding: 15px 0;
}

/* Catalogue css ******************************************************************************/
.Catalogue {
  background: url("../images/catalogue-bg.png") no-repeat;
  background-size: 100% 100%;
}

.Catalogue .button-box {
  padding-top: 0;
  display: flex;
  justify-content: center;
}

/* section css ******************************************************************************/

/* footer css 
******************************************************************************/

#footer .footer-part {
  padding-top: 50px;
  background-color: var(--black);
}

#footer .top-box .logo-box img {
  max-width: 140px;
  margin-bottom: 30px;
}

#footer .top-box h5 {
  margin-bottom: 30px;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .list-box li {
  color: var(--white);
}
#footer .top-box .list-box li a {
  transition: 0.5s;
}
#footer .top-box .list-box li a:hover {
  color: var(--white);
}
#footer .box3 ul span {
  color: var(--golden-bell);
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
}
#footer .top-box .link-box ul li a {
  border: 1px solid var(--gray);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
#footer .top-box .link-box ul li i {
  color: var(--gray);
  transition: 0.5s;
}
#footer .top-box .link-box ul li a:hover i {
  color: var(--white);
}
#footer .top-box .link-box ul img {
  max-width: 40px;
}

#footer .top-box .box.box4 {
  height: 100%;
  display: flex;
  align-items: end;
}
#footer .end-box {
  margin-top: 30px;
  padding: 10px 0;
  border-top: 1px solid var(--black-cat);
}
#footer .end-box p {
  text-align: center;
  font-family: "Futura-Bk-BT-Book";
  color: var(--white);
}

.form-part .input-group span {
  width: 100%;
}
.form-part .input-group input.wpcf7-form-control {
  border-radius: 10px !important;
}
.wpcf7-spinner {
  border-radius: 0px !important;
}

form.wpcf7-form.failed .wpcf7-response-output {
  border-color: green;
}

/* inner pages css start  15-09-2025*/

.inner-banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100dvh;
  margin-top: -120px;
  display: flex;
  align-items: center;
  z-index: 0;
}

.inner-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgb(0 0 0 / 0.5) 100%
  );
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.inner-banner h1 {
  color: var(--white);
  text-align: center;
  font-size: 166px;
  letter-spacing: 15px;
}

.inner-details .box:not(:last-child) {
  margin-bottom: 60px;
}

.inner-details .box h2 {
  font-family: "Futura-Md-BT-Medium";
  text-transform: uppercase;
  color: var(--dune);
  margin-bottom: 30px;
}

.inner-details .box p {
  font-family: "Futura_Bk_Bt_Book";
  color: var(--dune);
  font-size: 24px;
}

.inner-details .box span {
  font-family: "Futura-Md-BT-Medium";
}

.inner-details .box h5 span {
  font-weight: 600;
}

.inner-details .box p:not(:last-child) {
  margin-bottom: 20px;
}

.inner-details .box ul li {
  list-style: disc;
  list-style-position: inside;
  color: var(--dune);
  font-size: 24px;
}

.inner-details .box ul li span {
  display: inline;
}

.inner-details .box .table-wrap {
  border: 1px solid #cbc5b7;
  border-radius: 10px;
}

.inner-details .box .table-wrap table {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
}

.inner-details .box .table-wrap table th,
.inner-details .box .table-wrap table td {
  padding: 20px 20px 20px 40px;
  font-size: 24px;
  border-style: solid;
  border-color: #cbc5b7;
  border-width: 0 1px 1px 0;
}

.inner-details .box .table-wrap table tr:last-child th,
.inner-details .box .table-wrap table tr:last-child td {
  border-bottom: 0;
}

.inner-details .box .table-wrap table th:last-child,
.inner-details .box .table-wrap table td:last-child {
  border-width: 0 0 1px 0;
}

.inner-details .box .table-wrap table th:first-child,
.inner-details .box .table-wrap table td:first-child {
  width: 30%;
}

.pdp-form .spice-img-box-1,
.pdp-form .spice-img-box-2 {
  display: none;
}

.certification-section .certification-wrap {
  margin: 50px 0;
}

.certification-section .certification-wrap .row {
  justify-content: center;
  gap: 20px;
}

.certification-section .certification-wrap .image-box {
  height: 100%;
  text-align: center;
}

.certification-section .certification-wrap .image-box img {
    height: 100%;
    max-width: 110px;
}

.certification-section .text-box {
  text-align: center;
  max-width: 65%;
  margin: 0 auto;
}

.certification-section .text-box p {
  color: var(--dune);
  font-size: 24px;
}

/* new form css */

.form {
  position: relative;
}

.form .form-box {
  background-color: var(--light-yellow);
  padding: 150px 200px;
  border-radius: 20px;
  position: relative;
}

.form .form-box .section-heading {
  text-align: left;
}

.form .form-box .section-heading h2 {
  font-size: 30px;
}

.form .spice-img-box-2 {
  position: absolute;
  top: 10%;
  right: 0;
  transform: translate(50%, 0%);
}
.form .spice-img-box-2 img {
  max-width: 75%;
}

.form .spice-img-box-1 {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  bottom: 70px;
}

/* About Us Page Start */
.about-section {
  background-color: var(--vista-white);
}

.about-section .section-heading {
  text-align: left;
}

.about-section .text-box p {
  color: var(--dune);
  font-size: 24px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.about-section .about-wrap .box:hover .text-box p {
  color: var(--white);
}

.about-section .about-wrap {
  margin-top: 60px;
}

.about-section .about-wrap .box {
  background-color: var(--white);
  padding: 75px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.about-section .about-wrap .box:hover {
  background-color: var(--golden-bell);
}

.about-section .about-wrap .box .image-box {
  text-align: right;
}

.about-section .about-wrap .box .image-box svg path,
.about-section .about-wrap .box .content-box .small-title span {
  transition: all 0.3s ease-in-out;
}

.about-section .about-wrap .box:hover .image-box svg path {
  fill: var(--white);
}

.about-section .about-wrap .box:hover .content-box .small-title span {
  color: var(--white);
}

.about-section .about-wrap .box:hover .content-box .small-title span::after {
  background-color: var(--white);
}

.about-section .about-wrap .box .text-box {
  max-width: 85%;
}

.values-section {
  background-color: var(--vista-white);
  padding-top: 0;
}

.values-section .section-heading {
  text-align: left;
}

.values-section .values-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.values-section .values-wrap .values-item {
  flex: 0 0 calc(20% - 20px);
}

.values-section .values-wrap .values-item .box {
  background-color: var(--white);
  padding: 70px 35px;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.values-section .values-wrap .values-item .box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.values-section .values-wrap .values-item .box .text-box {
  text-align: center;
}

.values-section .values-wrap .values-item .box .text-box h6 {
  font-weight: 800;
  margin-bottom: 30px;
}

#why-rudram-about {
  padding: 0;
}

/* About Us Page Start */

.wpcf7-form-control-wrap {
  width: 100%;
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-radius: 10px;
}

.wpcf7-spinner {
  display: none;
}

.wp-icon {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Thank You Page Start */
.thank-you {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 20px;
}

.thank-you .thank-you-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 70px 40px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px var(--red-fox);

  animation: fadeInUp 0.8s ease;
}

.thank-you h4 {
  font-weight: bold;
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.thank-you p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.thank-you .button-bx {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.thank-you .cmn-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid var(--red-fox);
  color: var(--black-cat);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thank-you .cmn-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--red-fox);
  box-shadow: 0 6px 18px rgb(0 0 0 / 37%);
  color: var(--white);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Thank You Page End */