a.link-text:hover
{
	color:#d58e00;
}
a.link-text
{
	color:#160066;
	text-decoration:underline;
}
a.link-text1
{
	color:#fff;
	
}
a.link-text1:hover
{
	color:#d58e00;
	
}
.text-center
{
	text-align:center;
}

button.octf-btn {
    display: block !important;
    margin: auto !important;
	    padding:7px 29px;
    font-size: 14px;
    border-radius: 25px;
}	
.octf-btn:hover, .octf-btn:focus {
    background: #d58e00;
}

 button.my-readmore-btn {
        background: #1a67b0;
        color: #fff;
        border: none;
        padding: 10px 22px;
        border-radius: 25px !important;;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease !important;;
    }
    button.my-readmore-btn:hover {
        background: #fff;
		border:1px solid #1a67b0;
		color:#1a67b0;
    }
    
    .simple-readmore {
    /* Remove overflow hidden here */
    margin-bottom: 20px;
    position: relative; /* keeps expansion scoped */
}

.simple-readmore-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.simple-readmore-content.active {
    max-height: 1000px; /* enough for most content */
    opacity: 1;
}

/*team css*/


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0;
}


.team-member {
  background: #F7F4ED !important;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.team-content {
   
    height: 29% ;
	font-size:14px !important;
}

.team-member img {
  width: 60%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  max-width: 180px;
  margin: 0 auto 15px;
  display: block;
}


.team-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  transition: color 0.3s ease;
  font-family:'Montserrat';
}

.team-member a {
  text-decoration: none;
}

.team-member a:hover h3 {
  color: #0073aa; 
}


@media (max-width: 768px) {
	button.my-readmore-btn {
      display:block;
      margin:auto;
    }
  .team-grid {
    gap: 20px;
  }

  .team-member {
    padding: 15px;
  }

  .team-member h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member img {
    max-width: 60%;
  }

  .team-member h3 {
    font-size: 1rem;
  }
.team-content {
   
    height: 21%;
    margin-bottom:10px;
	font-size:14px !important;
}
}

/* ===== COMMON BUTTON STYLE ===== */
.team-carousel .swiper-button-next,
.team-carousel .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: #000;   /* change color */
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Remove default arrow */
.team-carousel .swiper-button-next::after,
.team-carousel .swiper-button-prev::after {
    display: none;
}

/* ===== CUSTOM ARROWS ===== */
.team-carousel .swiper-button-next::before {
    content: '→';
    font-size: 18px;
}

.team-carousel .swiper-button-prev::before {
    content: '←';
    font-size: 18px;
}

/* ===== HOVER EFFECT ===== */
.team-carousel .swiper-button-next:hover,
.team-carousel .swiper-button-prev:hover {
    background-color: #444;
}

/* ===== POSITION ===== */
.team-carousel .swiper-button-next {
    right: -20px;
}

.team-carousel .swiper-button-prev {
    left: -20px;
}

.read-button
{
    background-color: #160066;
    font-weight: 500;
    display: inline-block;
    padding: 2px 20px;
    border-radius: 25px;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.read-button:hover{
background-color: #d58e00;
    color: #fff;
    }
    .popupp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popupp-content {
  background: #fff;
  padding: 20px 30px;
  max-width: 650px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-popupp {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/*.hover-card-wrapper{ display:flex; gap:30px; flex-wrap:wrap; }

.hover-card{
    position:relative; text-align:center; transition:.4s;
    overflow:hidden; min-width:250px;
}*/

/* FRONT VIEW */
/*.hover-card .card-front{ transition:.4s; }
.hover-card:hover .card-front{ opacity:0; transform:scale(.6); }

/* HOVER VIEW */
/*.hover-card .card-hover{
    position:absolute; top:50%; left:50%;
    width:90%; transform:translate(-50%,-50%) scale(.8);
    opacity:0; transition:.4s; text-align:center;
}*/
/*.hover-card:hover .card-hover{ opacity:1; transform:translate(-50%,-50%) scale(1); }

.hover-btn{ display:inline-block; text-decoration:none; margin-top:12px; }
*/



