     
      :root{
       --button-color:#D4AF37; 
       --color-secondary: #1F3C88;
         --fsi-bg-image: url('images/about_hero_image.jpg');
        --fsi-min-height: 90vh;
        --fsi-padding: 2rem 1.5rem;
        --fsi-text-color: #ffffff;
        --fsi-overlay-color: rgb(31, 60, 136, 0.6);
        --fsi-cta-border-color: #ffffff;
        --it-card-padding: 25px;
        --it-card-border-radius: 18px;
        --it-card-shadow: 0 8px 25px rgba(0,0,0,0.08);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
            /*
        ========================================
             hero section
        ========================================
        */
        html {
            scroll-behavior: smooth;
        }
        body{
            background-color: #f3f4f6;
        }
   .fsi-hero {
        box-sizing: border-box;
        font-family: var(--font-family-header);
        position: relative;
        width: 100%;
        min-height: var(--fsi-min-height);
        padding: var(--fsi-padding);
         
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        background-image: var(--fsi-bg-image);
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    .fsi-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--fsi-overlay-color);
        z-index: 1;
    }
   
    .fsi-hero-content {
        position: relative;
        z-index: 2;
        max-width: 1500px;
    }
    .fsi-hero-title {
        color: var(--fsi-text-color);
        margin-bottom: 20px;
        font-size: clamp(1.4rem, 4vw, 5rem);
        font-weight: 700;
        line-height: 1.2;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    }
    .fsi-hero-tagline {
        color: var(--fsi-text-color);
        margin: 0 0 2.5rem 0;
        font-size: clamp(1rem, 3vw, 1.5rem);
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 1px;
    }
    .hero-button{
        font-family: var(--font-family-header);
        justify-content: center;
        gap:30px;
        display: flex;
        transition: all 0.3s ease;
    }
     .fsi-hero-cta-a{
        display: inline-block;
        background-color:var(--button-color);
        color: var(--fsi-text-color);
        padding: 0.8rem 2.2rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-transform: uppercase;
        border: 2px solid var(--button-color);
    }
    .fsi-hero-cta-a:hover {  
        background: transparent;
        color: var(--button-color);
        border: 2px solid var(--button-color);
        transform: translateY(-3px);
    }

    .fsi-hero-cta {
        display: inline-block;
        background: transparent;
        color: var(--fsi-text-color);
        border: 2px solid var(--fsi-cta-border-color);
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-transform: uppercase;
    }
    .fsi-hero-cta:hover {
        background-color: var(--fsi-cta-border-color);
       color: var(--color-secondary);
    transform: translateY(-3px);
    }
    
/* button mobile view*/
   @media(max-width:768px){
      .fsi-hero{
        width: auto;
      }
      .hero-button{
        flex-direction: column; 
        align-items: center;
       }
       .hero-button{ 
          width: 100%; 
         margin-bottom: 10px; 
         
        }
   }

/* About Section */
.about-intro {
     padding: 80px 5%;
    background-color: var(--navbar-color);
    
}
.about-intro-title {
    text-align: center;
    margin-bottom: 10px;
}

.about-intro-title h1 {
     font-size: clamp(2rem, 2.8vw, 3rem);
 
    font-weight: 700;
    color: var(--color-text);
}
.about-intro-title h1::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--button-color);
    display:block;
    margin:15px auto 0;
    border-radius:5px;
}
.about-intro-content {
   background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center; 
    gap: 40px;              
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
     box-shadow: 0 10px 30px rgba(31, 60, 136, 0.08);
}
.about-intro-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
flex: 0 0 auto;
    

}

.about-content-text {
    flex: 1;
  
    padding: 0;
}

.about-content-text h1 {
    font-size: clamp(1.7rem, 2.8vw, 3rem);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-content-text span {
   color: var(--button-color); 
    font-weight: 700;
}

.about-content-text p {
   font-size: clamp(0.8rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
   
  
}
.read-more-wrapper {
    display: flex;
    justify-content: flex-end; 

    margin-top: 1rem;
}
.about-read-more {
   
    color: var(--button-color);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
    padding: 10px 22px;
    text-decoration: none;
}


.about-read-more:hover {
    letter-spacing: 3px;
}

@media (max-width: 1100px) {
    .about-intro-content {
        flex-direction: column; 
        text-align: center;
        padding: 30px;
        gap: 2rem;
    }

    .about-intro-content img {
        max-width: 100%; 
        transform: none !important; 
    }

    .about-content-text {
        text-align: left; 
    }
    
    .about-content-text h1 {
        text-align: center;
    }
    .read-more-wrapper {
      justify-content: center;
    }
  
}
@media (max-width: 768px) {
    .about-intro {
        padding: 40px 15px; 
    }
}

/*
========================================
  impact section
========================================
*/
.impact-section {

  padding: 30px 20px;
}

.impact-section .imc-title{
    text-align:center;
    font-size:36px;
    margin-bottom:60px;
    position:relative;
}

.impact-section .imc-title::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--button-color);
    display:block;
    margin:15px auto 0;
    border-radius:5px;
}
.impact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;

}

.impact-box {
  background: white;
  padding: 40px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: pointer;
  border-bottom: 3px solid transparent;
 box-shadow: 0 15px 35px rgba(31, 60, 136, 0.15); 
}

.impact-box img {
  width: 50px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.impact-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.impact-box p {
  color: #555;
  font-size: 16px;
}

/* Hover Effect */
.impact-box:hover {
  background: #1F3C88;
  transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--button-color);
}

.impact-box:hover h2,
.impact-box:hover p {
  color: white;
}

.impact-box:hover img {
  filter: brightness(0) invert(1);
}

/*
========================================
  our program section
========================================
*/
.programs-section {
    padding: 100px 20px;
    background: #f9fafc;   
}

.programs-container {
    width: 100%;
    height: auto;
    background-color: var(--navbar-color);
    text-align: center;   
     padding-bottom: 10px;
}

.programs-title {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    padding-top: -10px;
    margin-bottom: 40px;
  
}
.programs-title::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--button-color);
    display:block;
    margin:15px auto 0;
    border-radius:5px;
}


/*
 ========================================
        our program cards
 ========================================
*/
.cards-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.9rem;
    padding: 1.5rem;
    width:90%;
    margin: 0 auto;
    margin-top: -50px;
    justify-content: center; 
   
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    background: #fff;
    overflow: hidden;
    transition: 0.2s ease;
}

.product-card:hover {
     box-shadow: 0 0 15px 0 rgba(79, 70, 229, 0.4);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}

.product-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    flex-direction: column;
    text-align: center;
}

.product-card-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1F3C88;
}

.product-card-content p{
font-size:14px;
color:#666;
margin-bottom:20px;
}


.product-card-footer {
    padding: 1.25rem;
    margin-top: auto;
   
}

.product-card-cta {
    width: 100%;
    background: #D4AF37;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    font-family: var(--font-family-body);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.product-card-cta:hover {
    background: var(--color-text);
}
.product-card-footer-a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.25rem;
   
}
.product-card-cta-all {
    width: 20%;
    height: auto;
    background: var(--color-text);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-family: var(--font-family-body);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}
.product-card-cta-all:hover{
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
   
}

@media (max-width: 780px) {
    .product-card-image {
        height: 180px;
    }

    .product-card-title {
        font-size: 1.2rem;
    }
    .product-card-cta-all {
    font-size: clamp(1rem, 2.8vw, 3rem);
     width: 70%;
    
    }
}

  /*news section*/

.news-section-alt {
    background:var(--navbar-color);
   
}

/* ===== WIDTH CONTROL ===== */
.news-wrapper-alt {
    width:90%;
    height:auto;
    margin: auto;
}

.news-title-alt {
    text-align: center;
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    color: #1F3C88;
    margin-bottom: 35px;
    font-weight: 700;
}
.news-title-alt::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--button-color);
    display:block;
    margin:15px auto 0;
    border-radius:5px;
}
.news-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

/* ===== CARD ===== */
.news-card-alt {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.news-card-alt:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.news-image-alt {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-content-alt {
    display: flex;
    padding: 22px;
    flex-grow: 1;
    flex-direction: column; 
}

.news-card-title-alt {
    
     font-size:clamp(18px, 2.5vw, 22px);
    color: #1F3C88;
    margin-bottom: 8px;
}

.news-card-text-alt {
    font-size:15px;
    color: #4b5563;
    line-height: 1.6; 
    margin-bottom: 25px;
   
}

  .btn-read { 
            display: flex; 
            padding: 10px 24px;
          align-self: flex-start;
        margin-top: auto;
            color: #D4AF37; 
            border: 2px solid #D4AF37;
            border-radius: 50px; 
            font-size: 0.9rem; 
            font-weight: 700; 
            text-decoration: none; 
            transition: 0.3s;
        
        }

.btn-read:hover { 
    background: #D4AF37;
    color: #fff;
 }
.news-card-footer{
    display: flex;
    padding: 1rem 1.25rem;
    justify-content: center;
    align-items: center;
   
}
.news-card-cta{
   
    width: 25%;
    height: auto;
    background: var(--color-text);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-family: var(--font-family-body);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}
.news-card-cta:hover{
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

@media (max-width: 780px) {

    .news-card-cta {
    font-size: clamp(1rem, 2.8vw, 3rem);
     width: 60%;
}
    } 

/*gallery section*/
.gallery-overlay-section {
    padding: 40px 5px;
    background-color:var(--navbar-color);

}

.gallery-overlay-wrapper {
   width: 90%;
   margin: auto;   
}

/* Grid Layout */
.gallery-overlay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    overflow: hidden;
    justify-content: center; 
    align-items: center;
   
}

/* Gallery Hover Effect */

.gallery-overlay-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    height: 300px; 
    width: 100%;
}
.gallery-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(31, 60, 136, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s ease;
}
.gallery-overlay-card:hover .gallery-hover-overlay { 
    opacity: 1; 
}
.gallery-overlay-image {
    width: 90%;
    height: 90%; 
    object-fit: cover; 
    object-position: center; 
    transition: 0.5s ease;
}
.gallery-overlay-card:hover .gallery-overlay-image {
    transform: scale(1.1); 
}

.gallery-view-btn {
    background: #D4AF37; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-weight: 600;
}

/* Modal and Side Arrows */
.modal {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    color: #D4AF37;
    background: rgba(0,0,0,0.9); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 2000;
}
.modal.active { 
    display: flex; 
}

.modal-wrapper { 
    position: relative; 
    width: 80%; 
    max-width: 900px; 
    text-align: center; 
}
.modal-wrapper img { 
    max-width: 100%; 
    max-height: 70vh; 
    border-radius: 8px; 
}

.nav-btn {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8); 
    color: white; 
    border: none;
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 20px;
}
.btn-left { left: -60px; }
.btn-right { right: -60px; }

.close { 
    position: absolute; 
    top: -40px; 
    right: 5px; 
    color: white; 
    font-size: 30px; 
    cursor: pointer;
 }

/* Responsive adjustments for arrows */
@media (max-width: 1024px) {
    .btn-left { left: 10px; }
    .btn-right { right: 10px; }
    .nav-btn { background: rgba(0,0,0,0.5); }
}





