
    :root{
      /* ↓ Update these two with your assets */
      --hero-bg: url('images/hero-background.jpg');
      --logo: url('images/logo-max.png');
   
    }

    .hero-wrap{
      position:relative;
      min-height: 100vh; /* fill the first screen */
      display:flex;
      align-items:center;
      color:var(--ink);
      overflow:hidden;
      isolation:isolate;
      background:
        radial-gradient(1200px 1200px at 90% 10%, rgba(255,255,255,.05) 0 40%, transparent 41% 100%),
        var(--tint);
    }
    /* Background image layer with slow zoom animation */
    .hero-wrap::before{
      content:"";
      position:absolute;
      inset:0;
      background-image: var(--hero-bg);
      background-size: cover;
      background-position: 70% center;   /* pushes subject to the right on wide screens */
      filter: grayscale(10%) contrast(1.05) brightness(.55);
      transform: scale(1.1);
      animation: kenburns 18s ease-in-out both;
      z-index:-2;
    }
    /* Color overlay for legibility */
    .hero-wrap::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(90deg, rgba(10,33,54,.85), rgba(10,33,54,.55) 55%, rgba(10,33,54,.25));
      z-index:-1;
    }

    /* Left column content */
    .brand-mark{
      height:250px;
      background-image: var(--logo);
      background-size: contain;
      background-repeat:no-repeat;
      background-position:center;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
      opacity:0; transform: translateY(12px) scale(.96);
      animation: fadeUp .9s .25s ease-out forwards;
    }
    .itemCenter p{
      text-align: center;
      font-size: 25px;
      margin-top: 24px;
      color: #a1cfdc;
    }

    .brand-title{
      letter-spacing:.14em;
      font-weight:600;
      text-transform:uppercase;
      margin: 1.25rem 0 .5rem;
      opacity:0; transform: translateY(12px);
      animation: fadeUp .9s .35s ease-out forwards;
    }
    .brand-underline{
      width:0; height:3px; 
      background:var(--accent);
      margin: .25rem 0 1.5rem;
      animation: underline .8s .55s ease-out forwards;
      border-radius:2px;
    }

    .brand-copy{
      max-width: 34ch;
      line-height:1.7;
      color:#dce6f3;
      font-size:25px;
      opacity:0; transform: translateY(12px);
      animation: fadeUp .9s .6s ease-out forwards;
      margin-top: 36px;
    }
    

    /* Decorative right-side focus ring (subtle) */
    .hero-art{
      position:absolute; right:-12vw; top:50%;
      width:60vw; max-width:760px; aspect-ratio:1/1;
      border-radius:50%;
      background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.06), transparent 55%);
      transform: translateY(-50%) scale(1.1);
      pointer-events:none;
      mix-blend-mode: soft-light;
      animation: float 10s ease-in-out infinite;
    }

    /* Scroll cue (optional) */
    .scroll-cue{
      position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
      font-size:.85rem; color:#cfe0f7; text-decoration:none;
      opacity:.9;
    }
    .scroll-cue .dot{
      display:inline-block; width:6px; height:6px; border-radius:50%;
      background: currentColor; margin-left:.4rem;
      animation: bounce 1.6s infinite ease-in-out;
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px){
      .hero-wrap{ min-height: 80vh; }
      .hero-wrap::before{ background-position: center 25%; }
      .brand-copy{ max-width: 44ch; }
      .hero-art{ display:none; }
    }
    @media (max-width: 575.98px){
      .brand-title{ letter-spacing:.12em; }
      .brand-copy{ font-size:1rem; }
    }

    /* Animations */
    @keyframes kenburns{
      0%   { transform: scale(1.15); }
      55%  { transform: scale(1.22); }
      100% { transform: scale(1.18); }
    }
    @keyframes fadeUp{
      to { opacity:1; transform: translateY(0) scale(1); }
    }
    @keyframes underline{
      to { width: 120px; }
    }
    @keyframes float{
      0%,100% { transform: translateY(-50%) scale(1.1); }
      50%     { transform: translateY(calc(-50% - 8px)) scale(1.12); }
    }
    @keyframes bounce{
      0%,100%{ transform: translateY(0); opacity:.9; }
      50%    { transform: translateY(-6px); opacity:1; }
    }

    body{ background:var(--paper); }

  /* ===== Title Slide ===== */
  .title-slide{
    background: url('images/Vission-background.jpg');
    position:relative;
    padding:clamp(56px,10vw,120px) 0;
    overflow:hidden;
  }

  .slide-title{
    font-family:"Playfair Display",serif;
    color: #00587B;
    font-weight:700;
    letter-spacing:.02em; line-height:1.1;
    font-size:clamp(2.2rem,6.5vw,5rem);
    opacity:0; transform:translateY(10px);
    animation:rise .9s .25s ease-out forwards;
  }
  .slide-subtitle{
    font-family:"Nunito",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color: #00587B; font-weight:700; letter-spacing:.02em;
    font-size:clamp(1.1rem,2.2vw,2rem);
    opacity:0; transform:translateY(10px);
    animation:rise .9s .38s ease-out forwards;
  }

  /* ===== Vision block ===== */
  .vision-title{
    font-family:"Playfair Display",serif;
    color:#00587B; font-weight:700;
    font-size:clamp(1.75rem,4.5vw,3.25rem);
    margin-top:clamp(24px,2vw,8px);
  }
  .vision-dots{ display:flex; justify-content:center; gap:clamp(10px,1.5vw,16px); color:var(--ink); }
  .vision-dots i{
    width:clamp(10px,1.4vw,14px); height:clamp(10px,1.4vw,14px);
    border-radius:50%; background:currentColor; display:inline-block;
  }
  .vision-rule{
    height:6px; width:min(520px,60%);
    background:var(--ink); border-radius:4px; margin:18px auto 28px;
  }
  .vision-copy{
    font-family:"Nunito",system-ui;
    color:#00587B; line-height:1.9;
    font-size:clamp(1rem,1.6vw,1.35rem);
    
  }
  .vission-list{
  margin-left: 270px;
  }
  .vision-strong{
    font-weight:800;
    color:#A2CFDC;
   }
  .vision-fade{
      opacity:0;
      transform:translateY(10px);
      animation:rise .8s .2s ease-out forwards;
       }
  .vision-fade-2 { 
    opacity:0;
     transform:translateY(10px); 
     animation:rise .8s .35s ease-out forwards;
     }
  .vision-fade-3 {
     opacity:0;
     transform:translateY(10px);
     animation:rise .8s .5s  ease-out forwards;
     }

  /* Animations */
  @keyframes rise{ to{opacity:1; transform:translateY(0);} }
  @keyframes fadeIn{ to{opacity:1; transform:translateY(0);} }
  @keyframes draw{ to{ width:40%; } }

  /* Left-side image */
.vision-image-wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
}

.vision-image{
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise .9s .25s ease-out forwards;
}

/* Mobile spacing */
@media (max-width: 767px){
  .vision-image{
    max-width: 320px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 575px){
      .vission-list {
    margin-left: 165px;
}
    }
    @media (max-width: 991px){
      .vission-list {
    margin-left:233px;;
}
    }

 /* ================== TEAM SECTION ================== */
    .igf-team-section{
      position:relative;
      padding:90px 0 110px;
      background:#A2CFDC url("images/team-bg.jpg") center top/cover no-repeat; /* update this path */
      overflow:hidden;
    }

    /* soft white veil so the photos pop on top of the bg image */
    .igf-team-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.2));
      pointer-events:none;
    }

    .igf-team-inner{
      position:relative;
      z-index:1;
    }

    .igf-title{
      font-family:"Playfair Display", serif;
      font-style:italic;
      font-weight:700;
      font-size:clamp(2.4rem,4vw,3.4rem);
      color:#00587B;
      margin-bottom:60px;
      opacity:0;
      transform:translateY(-18px);
      animation:fadeDown .9s ease-out forwards;
    }

    .team-card{
      text-align:center;
      padding:10px 10px 0;
      background:transparent;
      opacity:0;
      transform:translateY(25px);
      animation:fadeUp .8s ease-out forwards;
      transition:transform .35s ease, box-shadow .35s ease;
    }

    .team-card:hover{
      transform:translateY(-10px);
    }

    .avatar-wrap{
      width:210px;
      height:210px;
      margin:0 auto 20px;
      border-radius:50%;
      overflow:hidden;
      box-shadow:0 17px 32px rgba(0,0,0,0.25);
      background:#ffffff;
    }

    .team-photo{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .team-name{
      font-weight:700;
      font-size:1.1rem;
      color:#00587B;
      margin-bottom:4px;
    }

    .team-role{
      font-size:0.98rem;
      color:#4E93AF;
      margin-bottom:30px;
    }

    /* staggered animation for each profile */
    .team-card:nth-child(1){ animation-delay:.15s; }
    .team-card:nth-child(2){ animation-delay:.30s; }
    .team-card:nth-child(3){ animation-delay:.45s; }
    .team-card:nth-child(4){ animation-delay:.60s; }
    .team-card:nth-child(5){ animation-delay:.75s; }

    /* Animations */
    @keyframes fadeUp{
      to{
        opacity:1;
        transform:translateY(0);
      }
    }
    @keyframes fadeDown{
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    @media (max-width: 767.98px){
      .avatar-wrap{
        width:180px;
        height:180px;
      }
      .igf-team-section{
        padding:70px 0 80px;
      }
    }

    body{
      margin:0;
      font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
      background:#A2CFDC;
      color:#00587B;
    }

    .section-transform{
      padding:90px 0 110px;
    }

    .section-transform .section-heading{
      text-align:center;
      margin-bottom:50px;
    }

    .section-transform h2{
      font-weight:700;
      letter-spacing:0.04em;
      font-size:40px;
    }

    .section-transform .lead-text{
      max-width:640px;
      margin:10px auto 0;
      font-size:16px;
      color:#00587B;
    }

    /* Card styles */
    .transformation-card{
      background:#4f93b2;
      padding:18px 18px 24px;
      overflow:hidden;
      position:relative;
      transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
      opacity:0;
      animation:fadeUp 0.7s ease forwards;
    }
    .singleArticle{
      min-height:374px;
    }
  
    .transformation-card::before{
      content:"";
      position:absolute;
      inset:-40%;
      background:radial-gradient(circle at 0 0,rgba(255,255,255,0.08),transparent 55%);
      opacity:0;
      transition:opacity 0.5s ease;
      pointer-events:none;
    }

  

    .transformation-card:hover::before{
      opacity:1;
    }

    .transformation-card .image-wrap{
      overflow:hidden;
      margin-bottom:18px;
    }

    .transformation-card img{
      width:100%;
      height:220px;
      object-fit:cover;
      display:block;
      transform:scale(1.03);
      transition:transform 0.6s ease;
    }

    .transformation-card:hover img{
      transform:scale(1.07);
    }

    .transformation-card h5{
      font-size:16px;
      font-weight:600;
      margin-bottom:16px;
      color:#f6f7fb;
    }

    .btn-learn{
      background:#00587B ;
      display:inline-flex;
      border-color: #A2CFDC;
      align-items:center;
      gap:6px;
      padding:8px 18px;
      border:1px solid;
      font-size:13px;
      letter-spacing:0.03em;
      text-transform:uppercase;
      color:#f5f7fb;
      text-decoration:none;
      transition:
        background 0.45s ease,
        color 0.45s ease,
        transform 0.2s ease,
        box-shadow 0.45s ease,
        border-color 0.4s ease;
    }

    .btn-learn span.arrow{
      display:inline-block;
      transform:translateX(0);
      transition:transform 0.3s ease;
      font-size:14px;
    }

    .btn-learn:hover{
      background: #69b1cc;
      color:  #00587B;
      border-color:#A2CFDC;
      
      transform:translateY(-2px);
    }

    .btn-learn:hover .arrow{
      transform:translateX(4px);
    }

    /* Simple staggered animation delays */
    .card-delay-1{ animation-delay:0.1s; }
    .card-delay-2{ animation-delay:0.2s; }
    .card-delay-3{ animation-delay:0.3s; }
    .card-delay-4{ animation-delay:0.4s; }
    .card-delay-5{ animation-delay:0.5s; }

    @keyframes fadeUp{
      from{
        opacity:0;
        transform:translateY(24px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    /* Space for more sections below */
    .next-section-placeholder{
      height:120px;
    }

    @media (max-width:991.98px){
      .transformation-card img{
        height:200px;
      }
      .section-transform h2{
        font-size:26px;
      }
    }

    @media (max-width:575.98px){
      .section-transform{
        padding:70px 0 80px;
      }
      .transformation-card{
        margin-bottom:20px;
      }
    }   
.footer{
  background-color:#00587B ;
}   
.textwidget p{
  margin-top: 15px;
}
#comingSoonOverlay{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      backdrop-filter: blur(4px);
      animation: fadeIn .6s ease forwards;
    }

    #comingSoonBox{
      background:#00587c;
      padding: 40px 55px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      border: 1px solid rgba(215,167,105,0.35);
      animation: popIn .5s ease forwards;
    }

    #comingSoonBox h2{
      font-size: 2.2rem;
      color: #A2CFDC;
      text-transform: uppercase;
      letter-spacing: .05em;
    }
	#comingSoonBox p{
		color: #A2CFDC;
	}
    #closeComingSoon{
      margin-top: 20px;
      padding: 10px 28px;
      border-radius: 50px;
      background: #4d93b2;
      border: none;
      color: #A2CFDC;
      font-weight: 600;
      transition: 0.2s ease;
    }

    #closeComingSoon:hover{
      background: #A2CFDC;
	  color:#00587c;
      transform: translateY(-2px);
    }

    @keyframes fadeIn{
      from{opacity:0;}
      to{opacity:1;}
    }

    @keyframes popIn{
      from{opacity:0; transform:scale(.8);}
      to{opacity:1; transform:scale(1);}
    }
