/* Why White Tiger Section */
.why-tiger {
   position: relative;
  width: 100%;            /* full width */
  padding: 80px 0;        /* spacing top & bottom */
  text-align: center;
  background: url('../imgs/about-5.png') center center / cover no-repeat fixed;
  color: #fff;
  z-index: 1;
}
.why-tiger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85); /* overlay for readability */
  z-index: -1;
}

.why-tiger h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.why-tiger p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light);
}

.core-values li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--light);
}

.core-values span {
  font-weight: 600;
}


 /* Custom color variables */
:root {
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(45deg, #D4AF37, #F0C14B);
    --white: #FFFFFF;
    --charcoal-black: #111111;
    --dark-gray: #222222;
}

/* Team Section */

/* Ensure consistent height for team items */
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--charcoal-black);
    border-radius: 10px;
    transition: border 0.5s;
    min-height: 450px; /* Set a minimum height for consistency */
    display: flex;
    flex-direction: column;
}

/* Ensure images have a consistent height */
.team .team-img {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height for images */
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images scale properly without distortion */
    object-position: center;
}

/* Ensure content area takes remaining space and is consistent */
.team .team-content {
    position: relative;
    background: var(--dark-gray);
    flex-grow: 1; /* Makes content area expand to fill available space */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keep hover effects and other styles as they are */
.team .team-item:hover {
    border: none;
}

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--gold) transparent transparent var(--gold);
    z-index: 5;
    transition: all 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--gold) var(--gold) transparent;
    z-index: 5;
    transition: all 1s;
    opacity: 0;
}

.team .team-item:hover::after,
.team .team-item:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.team .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--gold-gradient);
    opacity: 0.2;
    transition: height 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: all 0.5s;
}

.team .team-img .team-icon .team-icon-share {
    position: absolute;
    top: 50px;
    margin-top: -300px;
    transition: margin-top 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0;
}

.team .team-content::after,
.team .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    background: var(--gold-gradient);
    transition: all 0.5s;
}

.team .team-content::after {
    top: 0;
    left: 0;
}

.team .team-content::before {
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100%;
    height: 50%;
}

.team .team-content .team-content-inner {
    position: relative;
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4 {
    color: var(--white);
    transition: color 0.5s;
}

.team .team-item .team-content .team-content-inner p {
    color: var(--white);
    opacity: 0.7;
    transition: color 0.5s;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--charcoal-black);
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--white);
    opacity: 1;
}

/* Custom button styles */
.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-gradient);
    border-color: var(--gold);
}

/* FadeInUp Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

[data-wow-delay="0.1s"] { animation-delay: 0.1s; }
[data-wow-delay="0.3s"] { animation-delay: 0.3s; }
[data-wow-delay="0.5s"] { animation-delay: 0.5s; }
[data-wow-delay="0.7s"] { animation-delay: 0.7s; }

/* Ensure buttons are small and square */
.btn-sm-square {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
}

/* Header styles */
.text-gold {
    color: var(--gold);
}

.display-6 {
    color: var(--charcoal-black);
}

.purpose-section {
  position: relative;
  width: 100%;            /* full width */
  padding: 80px 0;        /* spacing top & bottom */
  text-align: center;
  background: url('../imgs/about-3.png') center center / cover no-repeat fixed;
  color: #fff;
  z-index: 1;
}

.purpose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* overlay for readability */
  z-index: -1;
}


    .purpose-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
    }

    .purpose-section h2 span {
      color: #D4AF37;
      border-bottom: 2px solid #D4AF37;
      padding-bottom: 5px;
    }

    .purpose-card {
  background: #3F3929; /* darker background for contrast */
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 40px 30px 30px 30px;
  text-align: left;
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
}
    .purpose-card:hover {
  background: #3F3929;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-8px);
}

.purpose-card i {
  font-size: 1.5rem;          /* slightly bigger if you like */
  color: #111;
  background: #EAB532;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: -30px;               /* move it above the card */
  left: 10%;                /* center horizontally */
  transform: translateX(-50%);
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
  z-index: 10;              /* make sure it’s on top of other elements */
}

    .purpose-card h4 {
      margin-top: 30px;
      color: #fff;
      font-weight: 600;
    }

    .purpose-card p {
      color: #ccc;
      margin-top: 15px;
      line-height: 1.6;
    }

    .purpose-card p span {
      color: #EAB532;
      font-weight: 600;
    }

    .circle-animation {
  position: absolute;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  bottom: -30px;
  right: -10px;
  opacity: 0.2;
  animation: rotate 8s linear infinite;
}



    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .purpose-card {
        margin-bottom: 30px;
      }
    }