   .hero-section {
      padding: 30px 0;
    }
    .highlight {
      color: #e63946;
      font-weight: 700;
    }
    .hero-btn {
      background-color: #e63946;
      color: white;
      border-radius: 50px;
      padding: 12px 30px; 
      border: none;
      transition: 0.3s;
    }
    .hero-btn:hover {
      background-color: #c92b39;
    }
    .info-card {
      background-color: white;
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      border-radius: 15px;
      padding: 25px;
      height: 100%;
      transition: 0.3s;
    }
    .info-card:hover {
      transform: translateY(-5px);
    }
    .icon-box {
      width: 50px;
      height: 50px;
      background-color: #ffe3e3;
      color: #e63946;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 15px;
    }
    .section-title {
      font-weight: 600;
      color: #111;
    }
 
    .pillar-card1 {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        padding: 2rem;
        margin-bottom: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        border-top: 4px solid var(--primary);
        position: relative;
        overflow: hidden;
    }
        
    .pillar-card1:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .pillar-icon1 {
        background: var(--primary);
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .pillar-card1 h3 {
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
    }

    .pillar-card1 p {
        color: #555;
        text-align: center;
    }

    .pillar-card1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--secondary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .pillar-card1:hover::before {
        transform: scaleX(1);
    }

    .section-title1 {
        text-align: center;
        margin: 3rem 0 2rem;
        color: var(--primary);
        position: relative;
        padding-bottom: 10px;
    }

    .section-title1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--secondary);
    }


    .milestone-item {
        text-align: center;
        padding: 1.5rem;
        border-radius: 10px;
        background: white;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        margin-bottom: 1.5rem;
    }

    .milestone-year {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }


.belief-card, .value-card, .team-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        height: 100%;
        margin-bottom: 1.5rem;
    }
    
    .belief-card:hover, .value-card:hover, .team-card:hover {
        transform: translateY(-5px);
    }
    
    .belief-icon, .value-icon {
         
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
    }
    
    .value-icon {
        background: var(--secondary);
    }

     

    .scripture1 {
        font-style: italic;
        color: var(--accent);
        text-align: center;
        margin: 2rem 0;
        padding: 1rem;
        border-left: 3px solid var(--secondary);
        background: rgba(212, 175, 55, 0.1);
    }
    
    
    

    .gallery-title h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #333;
    }

    .gallery-img {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
    }

    .gallery-img:hover {
      transform: scale(1.05);
    }

    .gallery-img img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .image-caption {
      text-align: center;
      margin-top: 10px;
      font-weight: 500;
      color: #333;
    }
    
    
    

    @media (max-width: 768px) {
        .pillar-card1 {
            margin-bottom: 1.5rem;
        }
        
        .header1 {
            padding: 2rem 0;
        }
    }