*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, sans-serif;
    cursor: none;
}

/* header styling starts */

.global-color {
    color: #b72f61;
}

.global-para-color {
  color: #777777;
}

@media (max-width: 991.98px) {
  .menu-wrapper {
    transform: translateX(-100%);
    transition: all 0.3s ease;
    position: fixed;
    left: 0;
    top: 62px;
    /* width: 80%; */
    height: auto;
    background: #fff;
    z-index: 1000;
  }

  .menu-wrapper.open {
    transform: translateX(0);
  }
}



.header-menu ul li a.active {
  color: #b72f61 !important;
}


.main-logo-img {
    height: 93px;
    width: 100px;
}

.mobile-logo {
     height: 42px;
     width: 45px;
}

/* header styling ends */

/* cursor styling starts */

 /* Cursor dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #b72f61;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

/* Cursor outline (trailing circle) */
.cursor-outline {
  width: 20px;
  height: 20px;
  border: 2px solid #b72f61;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease-out;
}

/* cursor styling ends */

/* welcome section starts */
.welcome-span {
     color: #b72f61;
}

/* our vision section styling starts */
.padd-block {
    padding-top: 5rem;
    padding-bottom: 4.375rem;
}

.about-thumb>img {
    border-radius: 10px;
}

.custom-card {
    border-radius: 15px;
     box-shadow: 0 6px 20px rgba(18, 18, 18, 0.3);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
   transform: translateY(-10);
   box-shadow: 0 10px 35px rgba(183,47,97,0.3);
}

/* what's more */

.whats-more-bullets {
    background: #fdf9ff;
    /* padding: 60px 20px; */
  }

  .bullet-icon {
      height: 50px;
      width: 50px;
  }

  .bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid #b72f61;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
  }

  .bullet-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  .bullet-icon {
     background-image: -moz-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
    background-image: -webkit-linear-gradient(
-9deg
, #b72f61 0%, #6d2f72 97%);
    background-image: -ms-linear-gradient(-9deg, #b72f61 0%, #b72f61 97%);
    color: #fff;
    /* padding: 10px;
    border-radius: 50%; */
    border-radius: 50%;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .bullet-text {
    font-size: 16px;
    color: #777777;
    font-weight: 500;
  }
  .icon-class {
    font-size: 26px;
  }

 
  /* membership kit section styling starts */

  .kit-photo {
    height: 200px;
    width: 200px;
  }

  /* ---------------------- */
  /* About Page styling starts */

    /* ABOUT-PAGE-FOUNDER-MESSAGE-SECTION-START-CUSTOM-CSS */
 
 /* .ps-35 {
  padding-left: 35px;
 } */

.founder-section {
  background: #f6f6f6;
  /* background: linear-gradient(135deg, #ffe5ec, #fad0c4); */
  /* padding: 60px 15px; */
  position: relative;
  overflow: hidden;
}
 
.section-title {
  color: #d81b60;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  font-size: 40px;
  cursor: pointer;
}
 
.section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #d81b60;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
 
.section-title:hover::after {
  transform: scaleX(1);
}
 
 
.founder-img {
  border-radius: 30% 30% 30% 30%;
  width: 100%;
  /* max-width: 280px; */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* box-shadow: 0 8px 20px rgba(216, 27, 96, 0.25); */
  border-left: 10px solid #b72f61;
  border-bottom: 5px solid #b72f61;
}
 
.founder-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(216, 27, 96, 0.4);
}
 
.founder-name {
  background-color: #b72f61;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
  /* box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3); */
}
 
.founder-message h2 {
  color: #222222;
 
}
 
.founder-message p {
  font-size: 16px;
  color: #777777;
  margin-bottom: 20px;
  /* padding-left: 10px; */
}
 
.founder-message ul {
  padding-left: 0;
  list-style: none;
}
 
.founder-message ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
  color: #777777;
  padding-left: 10px;
}
 
.founder-message ul li i{
 
    color: #b72f61;
}
 
.highlight {
  color: black;
  font-weight: bold;
}
 
/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
}
 
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease forwards;
}
 
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
 
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
 
/* Responsive */
@media (max-width: 767.98px) {
  .founder-name {
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 26px;
  }
}

.iea-exist-title>h2 {
  font-size: 40px;
  font-weight: 700;
}

/* our team styling starts */
   /* .border-lb{
      border-left: 10px solid #b72f61;
    
   } */

  .team-hover::before {
         position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s;
    background: linear-gradient(75deg, rgb(183,47,97, 0.88) 10%, rgb(108,47,114, 0.88));
  } 
 

 
/* our team styling ends */

/*<!------PARTNERS CSS START-------> */

 
.partner-section {
    background-color: #f6f6f6;
}
 
.partner-heading {
    font-weight: bold;
    font-size: 30px;
    color: black;
    
}
 

.partner-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    /* box-shadow: 0 10px 35px rgba(183, 47, 97, 0.3); */
    /* Pink shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.partner-card img {
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
 
.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    /* box-shadow: 0 10px 35px rgba(183, 47, 97, 0.3); */
    /* Stronger pink on hover */
}
 
.partner-card:hover img {
    transform: scale(1.05);
}
 
 

/*<!------PARTNERS CSS END------->

 
    /* ABOUT-PAGE-styling ends */
 
  
  /* ---------------------- */
  /* become-a-member page styling starts here */

.member-form_box input {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  border: transparent;
  padding-left: 15px;
  border-radius: 5px;
}
 
.member-form_box textarea {
  width: 100%;
  height: 210px;
  background: rgba(255, 255, 255, 0.2);
  border: transparent;
  padding-left: 15px;
  border-radius: 5px;
  padding-top: 15px;
}
 
.member-form_box input:focus,
.member-form_box textarea:focus {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #b72f61;
  outline: none;
}
 
.member-header-button a, button {
    color: #fff;
    display: inline-block;
    font-size: 17px;
    margin-bottom: 0;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.5s;
    border-radius: 5px;
    margin-left: 15px;
    padding: 13px 32px;
    font-weight: 600;
    background-image: -moz-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
    background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
    background-image: -ms-linear-gradient(-9deg, #b72f61 0%, #b72f61 97%);
}
 
.header-button.text-center button:hover {
  background: #6d2f72;
  color: #fff;
}
 
/* Form box styling */
.member_area.style-two {
  background-color: #fff;
}
 
.style-two.member_area::before {
  display: none;
}
 
.style-two .member_from {
  box-shadow: 10px 10px 38px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 55px;
  color: #232323;
  margin: 0 auto; /* Center horizontally */
}
 
.member_area.style-two .member-form_box input,
.member_area.style-two .member-form_box textarea {
  border: 1px solid #ccc;
  transition: .5s;
}
 
.member_area.style-two .member-form_box input::placeholder,
.member_area.style-two .member-form_box textarea::placeholder {
  color: #232323;
}
 
.member_area.style-two div#status {
  color: #000;
}
 
/* Responsive padding */
.pt-110 {
  padding-top: 110px;
}
.pb-100 {
  padding-bottom: 100px;
}
.style-two .member_from {
  background: linear-gradient(to right, rgba(111, 48, 115, 0.21), rgba(183, 48, 98, 0.56)) rgb(255, 255, 255);
  box-shadow: 10px 10px 38px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 55px;
  color: #232323;
  margin: 0 auto;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}
 
.member-heading{
    color: #b72f61;
}
 
@media (max-width: 576px) {
  .member-heading {
    font-size: 20px !important;
  }
}
 

.member-paragraph{
 
    color: #b72f61;
}
 
 
.member_area.style-two .member-form_box input::placeholder {
  color: #b72f61;
  opacity: 1;
}
 
.member_area.style-two .member-form_box input::-webkit-input-placeholder {
  color: #b72f61;
}
 
.member_area.style-two .member-form_box input:-ms-input-placeholder {
  color: #b72f61;
}
 
    /* --------------------------------------- */
    /* become-a-member page styling ends here */


  /* gallery section styling starts */
  /* Modal Styles */


.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
}

.image-modal-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 80%;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(255,255,255,0.3);
	animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
	from {transform: scale(0.8);}
	to {transform: scale(1);}
}

.image-modal-close {
	position: absolute;
	top: 30px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
}

.image-modal-close:hover,
.image-modal-close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

@media screen and (max-width:576px) {
      .gallery-banner  {
           height: 150px;
      }
      .about-banner {
         height: 150px;
      }
      .become-a-member {
         height: 150px;
      }

        .breatcome-area {
        height: 150px;
      }

}

@media screen and (min-width:578px) and (max-width:1024px) {
      .gallery-banner {
        height: 300px;
      }

      .breatcome-area {
        height: 300px;
      }

      .about-banner {
        height: 300px;
      }

       .become-a-member {
         height: 300px;
      }
}


@media screen and (max-width: 767.98px) {
  .flex-sm-only-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* gallery section styling ends */

/*  */

/* sticky social */
   .main {
     display: flex;
    flex-direction: column;
    gap: 3px;
   }

   .up {
   display: flex;
    flex-direction: row;
    gap: 3px;
   }

   .card1 {
    width: 50px;
    height: 50px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: white;
    /* background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%); */
    border-radius: 90px 5px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
    /* border: 1px solid #b72f61; */
   }
   .card1:hover {
     background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
   }

   /* a {
    color: #00549C;
    text-decoration: none;
   } */

   
.card1 i {
    margin-top: 0.8rem;
    font-size: 20px;
    margin-left: 0.5rem;
    color: #b72f61;

} 

.card2 {
  width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    background: white;
    /* background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%); */
    border-radius: 5px 90px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
}

   .card2:hover {
     background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
   }

.card2 i {
    margin-top: 0.8rem;
    font-size: 20px;
    margin-right: 0.5rem;
    color: green;
}

   .down {
   display: flex;
    flex-direction: row;
    gap: 3px;
   }

   .card3 {
    width: 50px;
    height: 50px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: white;
    /* background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%); */
    border-radius: 5px 5px 5px 90px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
   }
   
    .card3:hover {
     background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
   }

   .card3 i {
    margin-top: -0.8rem;
    font-size: 20px;
    margin-left: 0.5rem;
   }

   .card4 {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    /* background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%); */
    border-radius: 5px 5px 90px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
   }

    .card4:hover {
     background-image: -webkit-linear-gradient(-9deg, #b72f61 0%, #6d2f72 97%);
   }

    .card4 i {
  
       margin-top: -0.8rem;
    font-size: 20px;
    margin-right: 0.5rem;
    

    }
       
   