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

:root {
  --green: #00AB8E;
  --orange: #FF9036;
  --pink: #8f169b;
  --heading-color: #150359;
  --text-grey: #333;
  --text-white: #ffffff;
  --gradient: linear-gradient(90deg, #97958c 0, #cbc0b7 10%, #150359 20%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --heading-color: var(--green);
    --gradient: linear-gradient(90deg, #008c76 0, #00ab8e 10%, #00ab8e 20%);
  }
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}


/* image fadein fadeout animation */
.image-container {
  position: relative;
}

@keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

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

#wowImage {
  opacity: 0;
  animation: fadeInUpSmooth 1s ease-out forwards;
}

/* Add will-change to optimize animations */
.animated-text,
.slide-left,
.slide-right,
.slide-top,
.slide-bottom,
.rotate-text {
  will-change: transform, opacity;
  transform: translateZ(0);
  /* Enables GPU acceleration */
}


.team,
.sidhi_section,
.principles,
.linkedIn,
.hero,
.linkedIn,
header {
  /* 
 background-image: url(./images/Group\ 339.png);
 width: 100%;
 background-repeat: no-repeat;
 background-size: cover; */

  /* background: linear-gradient(
  rgba(0, 172, 141, 0.1), 
  rgba(143, 22, 155, 0.1) 
) !important; */
  background-color: #fefefe !important;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .team .wow {
    visibility: visible !important;
    animation-name: none !important;
  }
}

body {
  font-family: "Switzer-Regular", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffcfa;
  color: var(--text-grey);
  width: 100%;
  overflow-x: hidden;
}

.header {
  padding: 5px 20px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

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

.scrolled {
  background-color: #fff !important;
  box-shadow: 2px 4px 10px #ccc;
}

.logoDiv {
  width: 130px;
  height: 80px;
}

.logoDiv img {
  width: 100%;
  height: 100%;
}

/* .logoDiv h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 0;
  }
  
  .logoDiv img {
    width: 70px;
    height: 50px;
  } */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 15px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* call icon css */
.call_icon {
  display: flex;
  align-items: center;
}

.call_icon img {
  width: 45px;
  height: 45px;
  cursor: pointer;
  animation: ring 1.5s infinite ease-in-out;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-10deg);
  }

  20% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.phone_info {
  display: none;
  position: absolute;
  bottom: 50%;
  right: 105%;
  /* Positioning it to the left of the icon */
  background: #fff;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  min-width: 120px;
}

.call_icon:hover .phone_info {
  display: block;
}

.contact_us {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--heading-color);
}

.phone_number {
  display: block;
  color: var(--orange);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

.phone_number:hover {
  text-decoration: underline;
}

/* navlinks */
.navLink {
  text-decoration: none;
  color: var(--text-grey);
  padding: 0px 12px;
  margin-right: 5px;
  position: relative;
  text-decoration: none;
  color: inherit;
  font-size: 500;
  letter-spacing: 0.7px;
}

.navLink::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.navLink:hover::after {
  width: 100%;
  left: 50%;
}

.navLink:hover {
  color: var(--orange);
}

.nav_active {
  color: var(--orange);
  font-weight: 600;
}

/* .navLink:hover {
  box-shadow: 0 -5px 0px rgb(181, 37, 181) inset,
    500px 0 0 rgba(246, 212, 238, 0.679) inset;
}

.nav_active {
  box-shadow: 0 -5px 0px rgb(181, 37, 181) inset,
    500px 0 0 rgba(246, 212, 238, 0.679) inset;
} */

/* custome btns */
.custome_btn {
  background-color: var(--green);
  display: inline-block;
  text-decoration: none;
  color: var(--text-white);
  font-weight: 600;
  font-size: 16px;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 4px;
}

.pink_btn {
  background-color: var(--pink);
}

.purpel_btn {
  background-color: var(--purple);
}

.navLists {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 20px;

  @media screen and (max-width:767px) {
    display: none;
  }
}

/* hero section started */
.hero {
  width: 100%;
  background-color: #00ac8d17;
  padding-top: 90px;
}

.hero_inner_banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.container-hero {
  width: 45%;
  padding-top: 20px;
}

.content h1 {
  font-family: "Switzer-Semibold", sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 64.8px;
  color: var(--heading-color);
}

.content p {
  font-family: "Switzer-Regular", sans-serif;
  font-size: 16px;
  line-height: 21px;
  margin: 10px 0;
  color: var(--text-grey);
}

.calculator_btn {
  padding: 15px 18px;
  font-size: 15px;
  border: none;
  font-weight: 600;
  background-color: var(--orange);
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;

  @media screen and (max-width:767px) {
    padding: 10px 12px;
    font-size: 13px;
  }
}

.calculator_btn a {
  text-decoration: none;
  color: var(--text-white);
}

/* .semicrile_box{
  width: 50%;
}
.semicrile_box img{
  width: 100%;
  height: 400px;
  border-top-left-radius: 400px;
  border-top-right-radius: 400px;
} */
.hero-carousel {
  width: 50%;
  max-width: 100%;
  padding: 20px 0;
  border-radius: 20px;
}

.hero-item {
  position: relative;
}

.hero-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  padding: 1px;
}

/* .hero-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 74, 74, 0.3);
  border-radius: 20px;
} */


.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev,
.owl-next {
  background-color: var(--pink) !important;
  color: var(--text-white) !important;
  font-size: 20px !important;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  pointer-events: all;
}

.owl-prev {
  position: absolute;
  left: 20px;
}

.owl-next {
  position: absolute;
  right: 20px;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.owl-carousel .animated {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

.owl-carousel .fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* principles section started */
.principles {
  width: 100%;
  padding: 40px 0;
  background-color: #f9e2f366;
}

.Commcontainer {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.content {
  width: 63%;
}

.content h2 {
  font-family: "Switzer-Semibold", sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 48.8px;
  color: var(--heading-color);
  margin: 0;
}

.hero-image1 {
  width: 32%;
}

.hero-image1 img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 140px;
  border-bottom-right-radius: 140px;
}

.hero h1 {
  font-family: "Switzer-Semibold", sans-serif;
  font-size: 72px;
  margin: 20px 0;
  line-height: 74.4px;
  width: 100%;
  background: var(--gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.hero p {
  /* font-family: "Switzer-Bold", sans-serif; */
  font-size: 28px;
  line-height: 34.4px;
  font-weight: 500;
  /* margin-bottom: 30px; */
  width: 450px;
  color: var(--text-grey);
  /* color:  var(--pink); */
}

.principles-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  /* align-items: center; */
}

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

.principle {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  text-align: center;
  width: 30%;
  height: 100%;
  padding: 15px;
  background: #fffcfa;
  box-shadow: 2px 2px 10px #ccc;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
  /* Smooth transition effect */
}

.principle:hover {
  transform: scale(1.1);
  /* Zoom in effect */
  box-shadow: 4px 4px 15px #bbb;
  /* Enhance shadow on hover */
}

.principle p {
  font-family: 'Switzer-Regular', sans-serif;
  font-size: 15px;
  line-height: 21.4px;
  color: var(--text-grey);
  text-align: start;
  margin: 0;
  margin-top: 10px;
}

.principle img {
  margin-bottom: 10px;
  width: 72px;
  height: 59px;
}

.principle h3 {
  font-family: 'Switzer-Bold', sans-serif;
  font-size: 20px;
  line-height: 24px;
  margin-top: 10px;
  margin: 0;
  color: var(--orange);
}

/* sidhi section stated */
.mb-40 {
  margin-bottom: 40px;
}

.sidhi_section {
  padding: 40px 0;
  background-color: #8f169b1a;
  width: 100%;
}

.impact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.impact_img_box {
  width: 32%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.impact_img_box img {
  display: inline;
  width: 100%;
  height: 260px;
  border-radius: 0px;
  object-fit: cover;
  object-position: center;
}

.impact_text_box {
  width: 65%;
}

.impact-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--heading-color);
}

.impact-header p {
  font-family: 'Switzer-Regular', sans-serif;
  color: var(--text-grey);
  font-size: 16px !important;
  line-height: 21px;
  margin: 10px 0;
  font-weight: 400 !important;
}

.detail-item {
  background-color: #ffe4d0;
  padding: 15px;
  border-radius: 4px;
  flex: 1;
  margin-right: 10px;
  width: 200px;
  align-content: flex-start;
  border: 4px solid var(--heading-color);
  background-color: rgba(0, 0, 0, 0);
}

.detail-item p {
  margin: 0;
  color: var(--text-grey);
  font-size: 16px;
  line-height: 25px;
}

.detail-item p strong {
  font-family: 'Switzer-ExtraboldItalic', sans-serif;
  color: var(--green);
  font-size: 18px;
  line-height: 25px;
}

.sidhi-imgback {
  padding: 0px 0px 40px 0px;
}

.sidhi-imgback img {
  border-bottom-right-radius: 100px;
}

/* teams section started */
.team {
  padding: 40px 0;
  background-color: #f6af6c30;
}

.core {
  font-family: 'Switzer-Semibold', sans-serif;
  font-size: 32px;
  line-height: 34.8px;
  display: block;
  font-weight: bold;
  unicode-bidi: isolate;
  color: var(--heading-color);
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

.leadership_text {
  font-family: 'Switzer-Regular';
  font-size: 16px;
  line-height: 21px;
  color: var(--text-grey);
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.team-members {
  width: 100%;
  ;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 30px;
  padding-top: 20px;
}

.team-member {
  width: 32%;
  background-color: #fff;
  padding: 25px 15px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  box-shadow: 2px 4px 10px #ccc;
}

.team-member img {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 100%;
  border: 3px solid #18025b;
  padding: 4px;
  object-fit: cover;
  object-position: top;
}

.team-member h3 {
  font-family: 'Switzer-Bold', sans-serif;
  font-size: 20px;
  line-height: 24.4px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--orange);
  margin: 0;
}

.team-member p2 {
  color: var(--text-grey);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 18px;
}

.team-member h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 14px;
  line-height: 1.5;
}

/* linkedin section started */
.linkedIn {
  padding: 40px 0;
  background-color: #00ac8d21;
}

.testimonial-card {
  border: 2px solid #fff;
  border-radius: 4px;
  background-color: rgb(232 232 232 / 80%);
  padding: 15px;
}

.slider_header {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.profile img {
  width: 120px !important;
  border-radius: 50%;
  border: 2px solid #fff;
  height: 120px;
}

.profile_text {
  margin: 0 10px;
}

.profile_text h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.profile_text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  width: 100%;
  margin: 10px 0;
  word-break: break-all;
  color: var(--text-grey);
}

.linkedin_box {
  position: absolute;
  right: 0px;
  top: 0px;
}

.linkedin_box img {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.testm-txt {
  height: 130px;
  overflow: hidden;
  margin-top: 15px;
}

.testm-txt p {
  color: var(--text-grey);
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 21px;
  font-weight: 500;
}

.testimonial-card a {
  color: var(--orange);
  font-weight: bold;
  text-decoration: none;
}

.owl-carousel .owl-nav.disabled {
  display: block;
}

.linkedin_slider .owl-carousel .owl-nav .owl-prev {
  position: absolute !important;
  left: -50px !important;
}

.linkedin_slider .owl-carousel .owl-nav .owl-next {
  position: absolute !important;
  right: -50px !important;
}


/* model css */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  max-height: 80vh;
  /* Limits height */
  overflow-y: auto;
  /* Scroll if content is too long */
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.modal-overlay.show {
  display: block;
}

.close-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
}

/* footer */
.footer {
  width: 100%;
  height: 100%;
  padding: 20px;
  /* background-color: #b5838d; */
  background: linear-gradient(to right, #150359, #8F169B);
  justify-content: flex-start;
  color: #fffcfa;
}

.footer logo {
  width: 140px;
  height: 60px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  max-height: 100px;
  padding-top: 20px;
  border-top: 2px solid #fffcfa1f;
}

.footer-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  max-height: 100px;
}

.logo-footer {
  margin-right: 20px;
}

.footer-social {
  width: 40px;
  height: 40px;
  margin-top: -10px;
  padding-right: 10px;
}

.copyright {
  font-size: 16px;
  line-height: 21.12px;
  font-family: 'Switzer-Regular', sans-serif;
  color: #FFE6D8;
}


/* mobile menu icon  */
.burgerMenuContainer {
  display: none;
  position: relative;

  @media screen and (max-width:767px) {
    display: block;
  }
}

.toggleNavbar {
  cursor: pointer;
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.burgerMenu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: height 0.4s ease-in-out;
  z-index: 1000;
}

.burgerMenu.active {
  height: 100vh;
}

.burgerMenu li {
  margin: 15px 0;
}

.burgerMenu a {
  text-decoration: none;
  color: white;
  font-size: 24px;
}

.burgerMenu button {
  padding: 10px 20px;
  border: none;
  background-color: #b525b5;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.burgerMenu button:hover {
  background-color: #920a92;
}

#menuIcon {
  width: 40px;
  height: 40px;
}

.crossIcon {
  content: url('images/red-cross.png');
  width: 30px;
  height: 30px;
}



.discover {
  background-color: #f8e2e1;
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: black;
  font-size: 18px;
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  cursor: pointer;
}

.impact {
  padding: 80px 0;
  background-color: #fff;
}

.impact-header {
  text-align: left;
}


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

.impact-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  width: 30%;
  text-align: center;
}

.impact-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}



.p8 {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.contact h1 {
  font-family: 'Switzer-Semibold', sans-serif;
  color: #30312c;
  letter-spacing: -2px;
  font-size: 54px;
  line-height: 64px;
}

.contact p {
  font-family: 'Switzer-Regular', sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #6D6875;
}

/* form */
.contact-container {
  width: 100%;
  padding: 80px 130px;
  margin-top: -30rem;
}

.main-contact {
  display: flex;
  flex-direction: row;
}

.contact-left {
  width: 380px;
}

.contact-left image {
  width: 380px;
  height: auto;
}

.contact-right {
  max-width: 55.55vw;
  padding: 32px 60px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-right label {
  font-family: 'Switzer-Regular', sans-serif;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 22.4px;
  color: #6d6875;
  margin-top: 8px;
}

.contact input {
  font-family: 'Switzer-Regular', sans-serif;
  font-size: 16px;
  width: 48vw;
  padding: 14px 16px 14px 16px;
  border-radius: 4px;
  border: 1px solid #b5838d;
  background-color: rgba(0, 0, 0, 0);
}

.contact textarea {
  width: 48vw;
  height: 114px;
  padding: 14px 16px 14px 16px;
  border-radius: 4px;
  border: 1px solid #b5838d;
  background-color: rgba(0, 0, 0, 0);
}

.contact button {
  font-family: 'Switzer-Semibold', sans-serif;
  background-color: #784186;
  color: #fff;
  padding: 8px 16px 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  width: 84px;
  height: 38px;
  line-height: 24px;
  margin-top: 30px;
}




/* #core-principles {
  margin-left: 9rem;
} */


.title1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-right: -15rem;
}

.title1::after {
  content: "";
  height: 2px;
  background-color: purple;
  display: block;
}

.title2 {
  font-family: 'Switzer-Medium', sans-serif;
  font-size: 16px;
  line-height: 21.12px;
  display: grid;
  color: #312C31;
  grid-template-columns: repeat(2, 1fr);
  align-self: flex-start;
}



/* impact section */
.heading-line-text {
  display: inline-block;
  position: relative;
  color: #312c31;
  line-height: 21px;
  font-size: 16px;
}

.heading-line-text::after {
  height: 2px;
  background-color: purple;

  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: purple;
  position: absolute;
  top: 50%;
  /* Adjust this to position the line vertically */
  left: 100%;
  transform: translateY(-50%);
  margin-left: 10px;
}


.impact-content {
  display: flex;
  align-items: flex-start;
}



.impact-details {
  font-family: 'Switzer-Medium', sans-serif;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}


.hiring {
  padding: 40px 0;
}

.job-card {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 2px 4px 10px #ccc;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  ;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card a {
  text-decoration: none;
}

.content-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  margin: 0;
}

.job-description {
  font-size: 16px;
  color: var(--text-grey);
  margin: 0;
  font-weight: 400;
}

.apply-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
  border: 0.5px solid #000;
  border-radius: 100px;
  padding: 8px 14px;
}

.apply-link:hover {
  opacity: 0.8;
}

/* Styling the arrow icon */
.arrow-icon {
  width: 18px;
  height: 18px;
}




@media (max-width: 767px) {

  .team,
  .sidhi_section,
  .principles,
  .linkedIn,
  .hiring {
    padding: 15px 0px;
  }

  .sidhi_section,
  .team {
    padding-top: 0px !important;
  }

  .logoDiv {
    height: 60px;
  }

  .call_icon img {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding-top: 65px;
  }

  .impact-header p {
    line-height: 21px;
  }

  .hero h1 {
    font-size: 25px;
    margin-top: 5px !important;
    line-height: 34px;
    margin: 0;
    text-align: center;
  }

  .hero p {
    width: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    margin: 0;
  }

  .hero-item img {
    height: 230px;
  }

  .hero_inner_banner {
    flex-direction: column-reverse;
    padding: 0 15px 0px 15px;
  }

  .hero-image1 img {
    height: 260px;
    border-radius: 0;
  }

  .container-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .hero-carousel {
    width: 100%;
    padding: 5px 0;
  }

  .content h2 {
    font-size: 18px;
    line-height: 21px;
    text-align: center;
  }

  .content p {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    margin: 10px 0;
  }

  .principles-container {
    flex-direction: column;
    gap: 15px;
  }

  .principle {
    width: 100%;
    align-items: center;
  }

  .content {
    width: 100%;
    margin: 10px 0;
  }

  .hero-image1 {
    width: 100%;
    padding: 0px;
  }

  .Commcontainer {
    flex-direction: column;
  }

  .impact-details {
    flex-direction: column;
    gap: 12px;
  }

  .detail-item {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--heading-color);
  }

  .impact_text_box {
    width: 100%;
  }

  .impact-header h2 {
    font-size: 18px;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    line-height: 21px;
  }

  .impact-header p {
    font-size: 13px !important;
    line-height: 18px;
    text-align: center;
    margin-top: 10px;
  }

  .detail-item p {
    font-size: 14px;
  }

  .detail-item p strong {
    font-size: 15px;
  }

  .impact_img_box img {
    width: 100%;
    height: 240px;
  }

  .impact_img_box {
    width: 100%;
    justify-content: center;
  }

  .impact-section {
    flex-direction: column;
    margin-bottom: 0;
    gap: 10px;
    margin-top: 10px;
  }

  .core {
    font-size: 18px;
    margin-bottom: 0px;
  }

  .leadership_text {
    font-size: 13px;
    width: 100%;
    line-height: 18px;
  }

  .team-member {
    width: 48%;
    padding: 15px;
  }

  .team-member img {
    width: 130px;
    height: 130px;
    border: 2px solid #150359;
  }

  .team-members {
    row-gap: 15px;
    padding-top: 10px;
  }

  .team-member h3 {
    font-size: 18px;
    line-height: 18px;
  }

  .team-member p2 {
    font-size: 13px;
    line-height: 16px;
  }

  .logo-footer {
    width: 100px;
  }

  .copyright {
    font-size: 13px;
  }

  .job-card{flex-direction: column;padding: 15px;}
  .job-title{font-size: 18px;margin-bottom: 10px;text-align: center;}
  .apply-link{    font-size: 18px;}
}