/*global css start*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ol,
li {
  list-style-type: none;
}

body {
  overflow-x: hidden;
}

:root {
  --primary-color: #C0212E;
  --secondery-color: #21375C;
  --section-space: 100px 0;
  --light-gray: #f8f9fa;
  --dark-gray: #6c757d;
  --white: #ffffff;
  --black: #212529;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);
}

/*
  rgba(192, 33, 46, 1)
  rgba(33, 55, 92, 1)
*/

.section-header h2 {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.section-header h2::after {
  position: absolute;
  content: '';
  background: linear-gradient(135deg, var(--secondery-color), var(--primary-color));
  height: 3px;
  width: 100px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 425px) {
  .section-header h2 {
    font-size: 23px;
  }
}

.myBtn {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  transition: all 0.4s linear;
  overflow: hidden;
}

.myBtn:hover {
  color: #fff;
  border: 1px solid var(--secondery-color);
  transition: all 0.4s linear;
}

.myBtn::after {
  position: absolute;
  content: '';
  background-color: var(--secondery-color);
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}

.myBtn:hover::after {
  width: 100%;
  transition: all 0.3s linear;
  right: 0;
  left: auto;
}

.navbar-toggler{
  background-color: #fff;
}

p{
  font-size: 16px;
}

/*global css end*/

/* loader css start */
/* From Uiverse.io by gustavofusco */
.pencil {
  display: block;
  width: 10em;
  height: 10em;
}

.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.pencil__body1,
.pencil__body2,
.pencil__body3 {
  transform: rotate(-90deg);
}

.pencil__body1 {
  animation-name: pencilBody1;
}

.pencil__body2 {
  animation-name: pencilBody2;
}

.pencil__body3 {
  animation-name: pencilBody3;
}

.pencil__eraser {
  animation-name: pencilEraser;
  transform: rotate(-90deg) translate(49px, 0);
}

.pencil__eraser-skew {
  animation-name: pencilEraserSkew;
  animation-timing-function: ease-in-out;
}

.pencil__point {
  animation-name: pencilPoint;
  transform: rotate(-90deg) translate(49px, -30px);
}

.pencil__rotate {
  animation-name: pencilRotate;
}

.pencil__stroke {
  animation-name: pencilStroke;
  transform: translate(100px, 100px) rotate(-113deg);
}

/* Animations */
@keyframes pencilBody1 {

  from,
  to {
    stroke-dashoffset: 351.86;
    transform: rotate(-90deg);
  }

  50% {
    stroke-dashoffset: 150.8;
    /* 3/8 of diameter */
    transform: rotate(-225deg);
  }
}

@keyframes pencilBody2 {

  from,
  to {
    stroke-dashoffset: 406.84;
    transform: rotate(-90deg);
  }

  50% {
    stroke-dashoffset: 174.36;
    transform: rotate(-225deg);
  }
}

@keyframes pencilBody3 {

  from,
  to {
    stroke-dashoffset: 296.88;
    transform: rotate(-90deg);
  }

  50% {
    stroke-dashoffset: 127.23;
    transform: rotate(-225deg);
  }
}

@keyframes pencilEraser {

  from,
  to {
    transform: rotate(-45deg) translate(49px, 0);
  }

  50% {
    transform: rotate(0deg) translate(49px, 0);
  }
}

@keyframes pencilEraserSkew {

  from,
  32.5%,
  67.5%,
  to {
    transform: skewX(0);
  }

  35%,
  65% {
    transform: skewX(-4deg);
  }

  37.5%,
  62.5% {
    transform: skewX(8deg);
  }

  40%,
  45%,
  50%,
  55%,
  60% {
    transform: skewX(-15deg);
  }

  42.5%,
  47.5%,
  52.5%,
  57.5% {
    transform: skewX(15deg);
  }
}

@keyframes pencilPoint {

  from,
  to {
    transform: rotate(-90deg) translate(49px, -30px);
  }

  50% {
    transform: rotate(-225deg) translate(49px, -30px);
  }
}

@keyframes pencilRotate {
  from {
    transform: translate(100px, 100px) rotate(0);
  }

  to {
    transform: translate(100px, 100px) rotate(720deg);
  }
}

@keyframes pencilStroke {
  from {
    stroke-dashoffset: 439.82;
    transform: translate(100px, 100px) rotate(-113deg);
  }

  50% {
    stroke-dashoffset: 164.93;
    transform: translate(100px, 100px) rotate(-113deg);
  }

  75%,
  to {
    stroke-dashoffset: 439.82;
    transform: translate(100px, 100px) rotate(112deg);
  }
}

.loader {
  background-color: #fff;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}

/* loader css end */

/* navbar css start */

.main-nav {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  transition: background 0.4s linear;
}

.brand-logo {
  height: 75px;
  width: auto;
}

.brand-logo img {
  height: 100%;
  width: auto;
}

.nav-cont-btn {
  background-color: var(--primary-color);
  color: #fff;
  overflow: hidden;
}

.nav-cont-btn:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.nav-cont-btn::before{
  display: none;
}

.main-nav .nav-link {
  color: #000;
}

/* navbar css end */

/* page banner start */

.page_banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://projectmanagement.com.co/image/about/40529.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.credential-page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://projectmanagement.com.co/image/alltitle/credential/47374.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.inner_page_banner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
}

.page_banner_breadCumb {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 10px 30px;
  border-radius: 20px;
  /* color: var(--primary-color); */
  /* color: #fff; */
  color: var(--secondery-color);
  font-weight: bold;
  font-size: 17px;
}

.page_banner_breadCumb a {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 17px;
}

/* page banner end */



/* hero slider main start */


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;

}

.hero-slide {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

.hero-slide:nth-child(1),
.hero-slide:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.hero-slide:nth-child(3) {
  left: 50%;
}

.hero-slide:nth-child(4) {
  left: calc(50% + 220px);
}

.hero-slide:nth-child(5) {
  left: calc(50% + 440px);
}

.hero-slide:nth-child(6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.hero-slide-content {
  width: min(30vw, 400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica, sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
}

.hero-slide-content .hero-title {
  font-family: 'arial-black';
  text-transform: uppercase;
}

.hero-slide-content .hero-description {
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  font-size: 0.8rem;
}

.hero-slide-content .hero-btn {
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border: 2px solid white;
  border-radius: 0.25rem;
  padding: 0.75rem;
  cursor: pointer;
}

.hero-slide:nth-of-type(2) .hero-slide-content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;
}

.hero-slider-nav .hero-btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.6);
  margin: 0 0.25rem;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
}

.hero-slider-nav .hero-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 651px) and (max-width: 899px) {
  .hero-slide-content .hero-title {
    font-size: 1rem;
  }

  .hero-slide-content .hero-description {
    font-size: 0.7rem;
  }

  .hero-slide-content .hero-btn {
    font-size: 0.7rem;
  }

  .hero-slide {
    width: 160px;
    height: 270px;
  }

  .hero-slide:nth-child(3) {
    left: 50%;
  }

  .hero-slide:nth-child(4) {
    left: calc(50% + 170px);
  }

  .hero-slide:nth-child(5) {
    left: calc(50% + 340px);
  }

  .hero-slide:nth-child(6) {
    left: calc(50% + 510px);
    opacity: 0;
  }
}

@media (max-width: 650px) {
  .hero-slide-content .hero-title {
    font-size: 0.9rem;
  }

  .hero-slide-content .hero-description {
    font-size: 0.65rem;
  }

  .hero-slide-content .hero-btn {
    font-size: 0.7rem;
  }

  .hero-slide {
    width: 130px;
    height: 220px;
  }

  .hero-slide:nth-child(3) {
    left: 50%;
  }

  .hero-slide:nth-child(4) {
    left: calc(50% + 140px);
  }

  .hero-slide:nth-child(5) {
    left: calc(50% + 280px);
  }

  .hero-slide:nth-child(6) {
    left: calc(50% + 420px);
    opacity: 0;
  }
}


/* hero slider main end */

/* iapmc intro css start */

.iapmc-intro {
  padding: var(--section-space);
  background-color: var(--primary-color);
}

.iapmc-intro-box {
  background-color: var(--primary-color);
  padding: 40px 20px;
  border-radius: 5px;
}

.iapmc-intro-box .icon {
  font-size: 25px;
  position: relative;
}

.iapmc_single_intro_box{
  background-color: #fff;
  position: relative;
}

.iapmc_single_intro_box::after{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 2px;
}

.isib1::after{
  height: 200px;
  /* height: 0; */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.isib2::after{
  height: 400px;
  bottom: 53%;
  left: 100%;
  transform: rotate(60deg);
}

.isib3::after{
  height: 400px;
  bottom: 53%;
  right: 100%;
  transform: rotate(-60deg);
}

.iapmc-intro-box .icon-link {
  background-color: var(--secondery-color);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
}

.iapmc-intro-box .box-header {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.iapmc-intro-box p {
  font-size: 16px;
}

.iapmc_centre_img_row{
  margin: 30px 0;
  position: relative;
}

.iapmc_centre_img_row::after{
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #fff;
  height: 200px;
  display: none;
}

.iapmc_centre_img{
  background-color: var(--primary-color);
  --size: 200px;
  height: var(--size);
  width: var(--size);
  padding: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.iapmc_centre_img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.my-image-link img{
  height: 280px;
  width: auto;
}


@media only screen and (max-width: 768px){
  .mgt_sm{
    margin-top: 60px;
  }

  .iapmc_centre_img_row::after{
    display: block;
  }

  .isib2::after{
    left: 50%;
    transform: rotate(0) translateX(-50%);
    top: 100%;
    height: 100px;
  }

  .isib3::after{
    display: none;
  }

  .iapmc_centre_img_row{
    order: 1;
    margin-top: 0;
  }

  .iapmc_single_intro_box{
    z-index: 5;
  }

}

/* iapmc intro css end */

/* iapmc values section start */

.impmc-value-box {
  border: 1px solid var(--secondery-color);
  padding: 20px;
}

.impmc-value-box .icon .icon-link {
  background-color: #21375c3f;
}



/* From Uiverse.io by MikeAndrewDesigner */
.e-card {
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 100%;
  min-height: 330px;
  border-radius: 16px;
  overflow: hidden;
}

.e-card .wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: linear-gradient(744deg, var(--primary-color), var(--secondery-color) 60%, var(--primary-color));
}

.e-card .icon {
  width: 3em;
  margin-top: -1em;
  margin: 0 auto 0px auto;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.e-card .infotop {
  padding-top: 50px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.e-card .name {
  font-size: 14px;
  font-weight: 100;
  position: relative;
  top: 1em;
  text-transform: lowercase;
}

.e-card .wave:nth-child(2),
.e-card .wave:nth-child(3) {
  top: 210px;
}

.e-card.playing .wave {
  border-radius: 50%;
  animation: wave 3000ms infinite linear;
}

.e-card .wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.iapmc-values{
  padding: var(--section-space);
  background: var(--secondery-color);
}

.iapmc-values .col-md-3:nth-child(1) .e-card .wave {
  animation: wave 20s infinite linear;
}

.iapmc-values .col-md-3:nth-child(2) .e-card .wave {
  animation: wave 10s infinite linear;
}

.iapmc-values .col-md-3:nth-child(3) .e-card .wave {
  animation: wave 25s infinite linear;
}

.iapmc-values .col-md-3:nth-child(4) .e-card .wave {
  animation: wave 18s infinite linear;
}

.e-card.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.e-card .wave:nth-child(2) {
  animation-duration: 50s;
}

.e-card.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.e-card .wave:nth-child(3) {
  animation-duration: 45s;
}

/* @keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */


.e-card .infotop h4 {
  font-size: 20px;
  margin: 10px 0;
}

.e-card .infotop p {
  font-size: 15px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 768px) {
  .e-card {
    margin-bottom: 20px;
  }

  .e-card.e-card.playing .wave:nth-child(2) {
    width: 163%;
  }
}

/* iapmc values section end */


/* ================ accrediation section start here ================  */

.iapmc-accr {
  padding: var(--section-space);
  background: var(--primary-color);
}

.iapmc-accr1{
  padding: var(--section-space);
  background: var(--secondery-color);
}

.accr-subtitle h5 {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--primary-color);
}

.accr-title {
  margin: 0 0 20px 0;
}

.accr-title h2 {
  font-weight: bold;
  font-size: 35px;
  position: relative;
}

.accr-title h2::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--secondery-color), var(--primary-color));
  height: 3px;
  width: 100px;
}

/* .iapmc-accr{
  position: relative;
} */

.iapmc-accr .serial_image{
  position: relative;
  margin: 40px 0;
}

.iapmc-accr .serial_image img:first-child{
  margin-left: 0;
}

.iapmc-accr .serial_image img {
  width: 200px;
  height: auto;
  margin-left: -9%;
  transition: all 0.4s linear;
  filter: drop-shadow(10px);
}

.iapmc-accr .serial_image img:hover{
  /* width: 300px; */
  transition: all 0.4s linear;
  /* position: absolute; */
  /* top: 0;
  left: 50%; */
  top: 0;
  transform: scale(1.3);
}

/* next sibling only */
.iapmc-accr .serial_image img:hover + img {
  margin-left: -3%;
}

.sample_cert_accr_img{
  /* mix-blend-mode: color-burn; */
}

/* Previous sibling using :has() */
.iapmc-accr .serial_image img:has(+ img:hover) {
  margin-right: 5%;
}

@media only screen and (max-width: 768px) {
  .iapmc-cred-row {
    flex-wrap: wrap-reverse;
  }

  .iapmc-cred-row2 .serial_image img{
    width: 100px;
  }

  .accr-title h2::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }

  .iapmc-accr img{
    height: 220px;
  }

}

@media only screen and (max-width: 425px){
  .iapmc-accr img{
    height: 120px;
  }

  .iapmc-cred-row2 .serial_image img{
    width: 80px;
  }
}


/* ================ accrediation section end here ================  */



/* ================ testimonial section start here ================  */

.testimonial {
  padding: var(--section-space);
  background: var(--primary-color);
}

.all-testimonial {
  max-width: 992px;
  width: 98%;
  margin: 0 auto;
}

.testimonial-box {
  text-align: center;
  /* background: linear-gradient(13deg, var(--secondery-color), var(--primary-color)); */
  padding: 40px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.testimonial-text {
  font-size: 20px;
  /* color: #fff; */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 70%;
  padding-right: 5%;
  position: relative;
  z-index: -1;
}

.testimonial-text::after{
  content: '';
  position: absolute;
  z-index: 1;
  top: 2%;
  left: 5%;
  background: url("/contents/website/assests/image/quotes.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  opacity: 0.3;
}

.testimonial-text p{
  margin-bottom: 0;
}

.testimonial-user {
  /* color: #fff; */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-left: -5%;
  z-index: 55;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.testimonial-user::before{
  content: '';
  position: absolute;
  bottom: 2%;
  right: 5%;
  background: url("/contents/website/assests/image/quote sm.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  z-index: -1;
  opacity: 0.5;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

@media only screen and (max-width: 864px){
  .testimonial-box{
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-text{
    width: 100%;
    padding-bottom: 30px;
  }

  .testimonial-user{
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    min-height: 100px;
  }
}

/* ================ testimonial section end here ================  */


/* ================ about page start here ================  */

/* about page summary content start */

.about_sum_cont {
  padding: var(--section-space);
  /* background: var(--light-gray); */
  background: var(--secondery-color);
}

.about_sum_cont h4 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about_sum_cont h2 {
  color: var(--secondery-color);
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about_sum_cont p {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* about page summary content end */

/* ========== Vision, Mission, Aim, Approach Sections ========== */
.about-details-section {
  padding: var(--section-space);
  /* background: var(--white); */
  background-color: var(--primary-color);
}

.about-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card:hover {
  transform: translateY(0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  transition: all 0.3s ease;
}

.about-card.vision-card::before {
  background: linear-gradient(135deg, var(--primary-color), #E94560);
}

.about-card.mission-card::before {
  background: linear-gradient(135deg, var(--secondery-color), #4A90E2);
}

.about-card.aim-card::before {
  background: linear-gradient(135deg, var(--primary-color), var(--secondery-color));
}

.about-card.approach-card::before {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.about-card:hover::before {
  height: 8px;
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.vision-card .card-icon {
  background: linear-gradient(135deg, var(--primary-color), #E94560);
}

.mission-card .card-icon {
  background: linear-gradient(135deg, var(--secondery-color), #4A90E2);
}

.aim-card .card-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondery-color));
}

.approach-card .card-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.card-title {
  color: var(--secondery-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-subtitle {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.card-description {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondery-color) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
}

.stats-container {
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  color: var(--white);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== president Section start ========== */

.president {
  padding: var(--section-space);
  margin-top: 0;
  background-color: var(--secondery-color);
}

.pres-img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  padding: 8px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.pres-intro {
  /* background-color: #fff; */
}

/* .pres-img::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 130px;
  right: -130px;
  background-color: var(--primary-color);
} */

.main_pres_talk_img{
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 8px;
}

.pres-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  /* transform: rotateX(90deg); */
}

.pres-talk {
  padding: 20px;
  border-radius: 5px;
  color: #fff;
  position: relative;
  margin-top: 20px;
  max-width: 768px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* .pres-talk::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  left: -199px;
  width: 180px;
  height: 2px;
  z-index: -1;
} */

/* .pres-talk::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: -40px;
  height: 80px;
  width: 80px;
  background-color: var(--primary-color);
  z-index: -1;
} */

@media only screen and (max-width: 768px) {

  .pres-img {
    margin-top: 0;
  }

  .pres-talk::before {
    top: -80px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
  }

  .pres-talk::after {
    top: -40px;
    transform: translateX(-50%) rotate(45deg);
    left: 50%;
  }
}

.pres-talk p {
  text-align: center;
  font-size: 16px;

}

.pres-talk p:not(.pres-talk p:last-child) {
  margin-bottom: 0;
  padding-bottom: 30px;
}

/* ========== president Section end ========== */

/* ========== CTA Section ========== */
.cta-section {
  padding: var(--section-space);
  /* background: var(--light-gray); */
  background-color: var(--primary-color);
  text-align: center;
}

.cta-title {
  color: var(--secondery-color);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  color: var(--dark-gray);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--primary-color);
  background-color: var(--secondery-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--light-gray);
  /* color: var(--primary-color); */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(192, 33, 46, 0.3);
  border: 2px solid var(--secondery-color);
}

@media (max-width: 768px) {
  .about_sum_cont h2 {
    font-size: 32px;
  }

  .about_sum_cont p {
    font-size: 16px;
  }

  .about-card {
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
  }

  .card-icon {
    margin: 0 auto;
  }

  .card-title {
    font-size: 28px;
  }

  .card-subtitle {
    font-size: 18px;
  }

  .stat-number {
    font-size: 36px;
  }

  .cta-title {
    font-size: 32px;
  }

  .footer-social-link {
    justify-content: center;
  }

  :root {
    --section-space: 60px 0;
  }
}

/* ========== Animation Keyframes ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ========== Smooth Scrolling ========== */
html {
  scroll-behavior: smooth;
}

/* ================ about page end here ================  */


/* ================ credential page start ================ */

.prof-credential {
  margin: var(--section-space);
}

/* ========== Credential Card Design ========== */
.cred-card-wrapper {
  position: relative;
  height: 100%;
  opacity: 1;
  /* transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards; */
  margin-bottom: 30px;
}

.cred-card-wrapper:nth-child(2) {
  animation-delay: 0.2s;
}

.cred-card-wrapper:nth-child(3) {
  animation-delay: 0.4s;
}

.cred_course_card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px var(--shadow-light);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(33, 55, 92, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cred_course_card:hover {
  /* transform: translateY(-15px); */
  /* box-shadow: 0 25px 50px var(--shadow-medium); */
}

.cred_course_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondery-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cred_course_card:hover::before {
  opacity: 1;
}

.card-image-section {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondery-color) 100%);
  border-radius: 2px;
}

.cred_course_card img {
  max-width: 190px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
}

/* .cred_course_card:hover img {
  transform: scale(1.1) rotate(5deg);
} */

.card-content-section {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cred_course_name {
  margin-bottom: 20px;
}

.cred_course_name h4 {
  color: var(--secondery-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.cred_course_name h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.cred_course_shortDet {
  /* margin-bottom: 30px; */
  flex-grow: 1;
}

.cred_course_shortDet p {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.cred_course_cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: auto;
}

.cred_course_cta .btn {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  min-width: 110px;
  text-align: center;
}

.btn-details {
  background: transparent;
  color: var(--secondery-color);
  border: 2px solid var(--secondery-color) !important;
}

.btn-details:hover {
  background: var(--secondery-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 55, 92, 0.3);
}

.btn-apply {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-apply:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 33, 46, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.certification-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #E94560 100%);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(192, 33, 46, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.features-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  color: var(--dark-gray);
  font-size: 13px;
  margin-bottom: 8px;
  padding-left: 0;
}

.features-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 14px;
}

/* Enhanced version with additional features */
.enhanced-card {
  position: relative;
}

.enhanced-card .card-image-section {
  background: linear-gradient(135deg, var(--secondery-color) 0%, var(--primary-color) 100%);
  color: var(--white);
}

/* .enhanced-card .cred_course_card img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
} */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.cred_course_card:hover .certification-badge {
  animation: pulse 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cred_course_cta {
    flex-direction: column;
    gap: 10px;
  }

  .cred_course_cta .btn {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .card-content-section {
    padding: 25px;
  }

  .card-image-section {
    padding: 30px;
    min-height: 160px;
  }

  .cred_course_card img {
    max-width: 100px;
    max-height: 100px;
  }
}

/* ================ credential page end ================ */



/* ================ credential details page start ================ */

#credential_intro {
  margin: var(--section-space);
}

#credential_intro img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}

/* .cred_det_nav{
  background-color: var(--secondery-color);
  margin-bottom: 30px;
}

.cred_det_nav .nav-link{
  color: #fff;
  padding: 8px 15px;
  text-transform: capitalize;
  border: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  transition: all 0.3s linear;
}

.cred_det_nav .nav-link:hover{
  background-color: var(--primary-color);
  transition: all 0.3s linear;
} */

#main_credential_details {
  margin: var(--section-space);
}

.credential_det_feat_header {
  margin-bottom: 30px;
  background-color: var(--secondery-color);
  padding: 15px;
  color: #fff;
  border-radius: 5px;
}

.credential_det_feat_header h3 {
  font-size: 25px;
  margin-bottom: 0;
}

/* benefit_credential start */

.ben_cred_list ul {
  display: flex;
  flex-direction: column;
}

.ben_cred_list ul li {
  margin-bottom: 20px;
  background-color: rgba(33, 55, 92, 0.5);
  padding: 20px;
  border-radius: 8px;
  /* color: #fff; */
  border-left: 5px solid var(--secondery-color);
}

.ben_cred_list ul li span:first-child {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 19px;
}

/* benefit_credential end */

/* ========== Course Fee Card Design ========== */
.fee-card-wrapper {
  position: relative;
  height: fit-content;
}

.fee-card-wrapper:nth-child(2) {
  animation-delay: 0.2s;
}

.fee-card-wrapper:nth-child(3) {
  animation-delay: 0.4s;
}

.course-fee-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px var(--shadow-light);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(33, 55, 92, 0.08);
  height: 100%;
}



.course-fee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondery-color) 100%);
}

.fee-card-header {
  background: linear-gradient(135deg, var(--secondery-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 20px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fee-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
  background-size: 100px 100px;
}

.fee-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
}

.fee-card-header .course-code {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
  position: relative;
  z-index: 2;
}

.fee-card-body {
  padding: 20px 15px 10px 15px;
}

.fee-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.fee-item:last-child {
  border-bottom: none;
}

.fee-item:hover {
  background: rgba(33, 55, 92, 0.02);
  padding-left: 15px;
  border-radius: 10px;
}

.fee-label {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--black);
  font-size: 15px;
}

.fee-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  color: var(--white);
}

.regular-fee .fee-icon {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #8a8a8a 100%);
}

.special-offer .fee-icon {
  background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
}

.waiver .fee-icon {
  background: linear-gradient(135deg, var(--warning-color) 0%, #fd7e14 100%);
}

.printed-cert .fee-icon {
  background: linear-gradient(135deg, var(--secondery-color) 0%, #4A90E2 100%);
}

.fee-amount {
  font-weight: 700;
  font-size: 18px;
  color: var(--secondery-color);
}

.fee-amount.discounted {
  color: var(--success-color);
}

.fee-amount.original {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 16px;
  margin-right: 10px;
}

.discount-badge {
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
}

.special-offer {
  position: relative;
}

/* .special-offer::after {
  content: 'BEST VALUE';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(192, 33, 46, 0.3);
} */

.savings-highlight {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
  border-radius: 15px;
  margin: 15px 0;
}

.savings-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: 5px;
}

.savings-text {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 500;
}

.apply-btn-section {
  padding: 22px 25px;
  background: rgba(248, 249, 250, 0.8);
  text-align: center;
}

.apply-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #E94560 100%);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.apply-btn::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.5s;
}

.apply-btn:hover::before {
  left: 100%;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(192, 33, 46, 0.4);
  color: var(--white);
}

.apply-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.apply-btn:hover i {
  transform: translateX(5px);
}

/* Popular Badge */


/* Enhanced Popular Card */
.popular-card {
  transform: scale(1.05);
  z-index: 5;
  border: 2px solid var(--primary-color);
}

.popular-card .course-fee-card {
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.note-section {
  padding: 20px 35px;
  background: rgba(33, 55, 92, 0.05);
  border-top: 1px solid #eee;
}

.note-text {
  font-size: 13px;
  color: var(--dark-gray);
  margin: 0;
  text-align: center;
  font-style: italic;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.special-offer:hover::after {
  animation: pulse 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popular-card {
    transform: scale(1);
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .fee-card-header {
    padding: 25px 20px;
  }

  .fee-card-body {
    padding: 30px 25px;
  }

  .apply-btn-section {
    padding: 25px 25px;
  }

  .fee-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .fee-amount {
    font-size: 20px;
  }

  .special-offer::after {
    display: none;
  }
}

/* eligibility criteria start */

.eligibility_crit {
  margin: 80px 0;
}

.custom-accordion .accordion-button {
  background-color: var(--white);
  color: var(--secondery-color);
  font-weight: 600;
  border: none;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
}

.custom-accordion .accordion-item {
  border: 1px solid var(--shadow-light);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px var(--shadow-light);
}

.custom-accordion .accordion-body {
  background: var(--white);
  color: var(--dark-gray);
}

/* Nested accordion items inside */
.custom-accordion .nested-accordion .accordion-item {
  margin: 10px 0;
  /* border-left: 3px solid var(--primary-color); */
}

/* eligibility criteria start */


/* asses_comp_sec start  */

.asses_comp_sec {
  margin: 80px 0;
}

/* asses_comp_sec end */

/* assesment_area_sec section start */

.assesment_area_sec {
  margin: 80px 0;
}

.exam_guideline_sec .accordion-item,
.assesment_area_sec .accordion-item {
  margin-bottom: 20px;
}

.exam_guideline_sec .accordion-button,
.assesment_area_sec .accordion-button {
  background-color: #f5f5f5;
}

.exam_guideline_sec .accordion-button:not(.collapsed),
.assesment_area_sec .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
}

.exam_guideline_sec .accordion-body,
.assesment_area_sec .accordion-body {
  background: rgba(33, 55, 92, 0.5);
}

.exam_guideline_sec .accordion-button:focus,
.assesment_area_sec .accordion-button:focus {
  box-shadow: none;
}

/* assesment_area_sec section end */


/* exam guideline section start */

.exam_guideline_sec {
  margin: 80px 0;
}

/* exam guideline section end */

/* sample question section start */

.sample_ques_sec {
  margin: 80px 0;
}

/* sample question section end */

.sample_cert_img {
  height: 300px;
  width: auto;
}

.sample_cert_img img {
  height: 100%;
  width: auto;
  border: 1px solid var(--shadow-light);
  padding: 10px;
 
}


/* ================ credential details page end ================ */


/* ================ benefit credential page start ================ */

/* Hero */
.iapmc-hero {
  background: var(--primary-color);
  color: var(--white);
  padding: var(--section-space);
  text-align: center;
}

.iapmc-hero h1 {
  font-weight: 700;
  margin-bottom: 20px;
}

.iapmc-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* Button */
.iapmc-btn {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  background-color: var(--secondery-color);
  border: 2px solid var(--secondery-color);
}

.iapmc-btn:hover {
  background: #a81824;
  color: var(--white);
  border: 2px solid var(--secondery-color);
}

/* Opportunity */
.iapmc-opportunity {
  padding: var(--section-space);
  background-color: var(--secondery-color);
}

.iapmc-opportunity h2 {
  color: var(--primary-color);
}

.iapmc-opportunity .iapmc-tags span {
  background: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 4px var(--shadow-light);
}

/* Benefits */
.iapmc-benefits {
  padding: var(--section-space);
  background: var(--white);
  background-color: var(--primary-color);
}

.iapmc-benefits h2 {
  color: var(--secondery-color);
}

.iapmc-benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 6px var(--shadow-light);
  height: 100%;
  transition: 0.3s;
}

.iapmc-benefit-card:hover {
  transform: translateY(-5px);
}

.iapmc-benefit-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Process */
.iapmc-process {
  padding: var(--section-space);
  background-color: var(--secondery-color);
}

.iapmc-process h2 {
  color: var(--primary-color);
}

.iapmc-process-step {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px var(--shadow-light);
}

.iapmc-process-step h6 {
  margin: 0;
  font-weight: 600;
  color: var(--secondery-color);
}

/* CTA */
.iapmc-cta {
  background-color: var(--primary-color);
  padding: var(--section-space);
  /* background: var(--white); */
  text-align: center;
}

.iapmc-cta h2 {
  /* color: var(--secondery-color); */
  color: var(--light-gray);
}

.iapmc-cta p{
  color: var(--light-gray);
}

.app-iapmc-ctn{
  border: 2px solid var(--secondery-color);
  background-color: var(--secondery-color);
  color: #fff;
}

.app-iapmc-ctn:hover{
  border: 2px solid var(--secondery-color);
}

/* ================ benefit credential page end ================ */



/* ================ footer section start here ================  */

footer {
  padding: 40px 0;
  background: linear-gradient(135deg, #b5acac 0%, #21375C 70%);
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.footer-col-header h4 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  padding-top: 10px;
}

.footer-menu-link li {
  margin-bottom: 10px;
  transition: all 0.4s linear;
}

@media only screen and (max-width: 768px) {
  .footer-menu-link li {
    text-align: center;
  }
}

.footer-menu-link li:hover {
  padding-left: 10px;
  transition: all 0.4s linear;
}

.footer-menu-link li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-menu-link li a:hover {
  color: #fff;
}

.footer-social-link {
  display: flex;
  gap: 10px;
}

@media only screen and (max-width: 768px) {
  .footer-social-link {
    justify-content: center;
  }
}

.footer-social-link li {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link li a {
  padding: 10px;
  color: #fff;
  font-size: 20px;
  display: block;
}

.footer-bottom {
  background: linear-gradient(135deg, #121212 0%, #21375C 70%);
  overflow-x: hidden;
}

.footer-bottom .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

/* ================ footer section end here ================  */
.accordion-header{
    width: 100% !important;
}
