/* ===================================
   GLOBAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    margin: 0; 
}

.container{
    width:100%;
    max-width:1680px;
    margin:auto;
    padding:0 80px;
}

.main {
  background:#f5f5f7;
}


body, main {
  background: #f5f5f7;
}

/* ===========================
   HEADER
=========================== */

.site-header{
    background:#08295f;
    position:sticky;
    top:0;
    z-index:9999;
}

.navbar{
    max-width:1600px;
    margin:auto;

    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 80px;
}

.logo{
    flex-shrink:0;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

/* Menu Area */

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:55px;

    list-style:none;

    margin:0;
    padding:0;
}

.nav-menu > li{
    position:relative;
    white-space:nowrap;
}

.nav-menu > li > a{
    color:#fff;
    text-decoration:none;

    font-size:18px;
    font-weight:600;

    line-height:115px;

    display:block;

    transition:.3s;
}

.nav-menu > li > a:hover{
    opacity:.85;
}

/* Dropdown */

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:280px;

    background:#fff;

    list-style:none;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s;

    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.nav-menu li:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;

    padding:15px 20px;

    color:#222;
    text-decoration:none;

    border-bottom:1px solid #eee;

    line-height:normal;
}

.dropdown-menu li a:hover{
    background:#f8f8f8;
}

/* Mobile Toggle */
.mobile-toggle{
    display:none;

    width:46px;
    height:46px;

    border:2px solid rgba(212,175,55,.5);
    border-radius:50%;

    color:#fff;
    font-size:28px;

    align-items:center;
    justify-content:center;

    cursor:pointer;
    transition:.3s;
}

.mobile-toggle:hover{
    background:rgba(212,175,55,.15);
    border-color:#d4af37;
}

.submenu-toggle{
    display:none;
    border:none;
    background:transparent;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    padding:0;
    margin-left:12px;
    transition:.2s ease;
}

.submenu-toggle:hover{
    opacity:.85;
}

/* ===================================
   FOOTER
=================================== */

.site-footer{
    background:#08295f;
    color:#ffffff;
    padding:40px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo img{
    width:200px;
    margin-bottom:15px;
}

.footer-grid h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
    color:#ffffff;
}

.footer-grid p{
    margin-bottom:10px;
    line-height:1.6;
}

.footer-grid a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-grid a:hover{
    opacity:.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.20);

    margin-top:15px;
    padding:15px 0;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:900px;
}

.footer-bottom p{
    margin:0;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:1200px){

.container{
    padding:0 40px;
}

.nav-menu{
    gap:40px;
}

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

.container{
    padding:0 20px;
}

.navbar{
    height:70px;
    position:relative;
}

.logo img{
    height:65px;
}

.mobile-toggle{
    display:flex;
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    z-index:1001;
}

.nav-menu{
    display:flex;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    background:#08295f;
    padding:10px 0 10px 20px;
    gap:0;
    border-top:1px solid rgba(255,255,255,.12);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
    z-index:999;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .35s ease, opacity .35s ease;
}

.nav-menu.show{
    max-height:1200px;
    opacity:1;
}

.nav-menu > li{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    position:relative;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:0;
}

.nav-menu > li > a{
    color:#fff;
    line-height:1.4;
    padding:14px 16px;
    display:block;
    width:calc(100% - 54px);
}

.nav-menu > li > a:hover{
    opacity:.85;
}

.nav-menu .submenu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    position:absolute;
    right:16px;
    top:14px;              /* fixed position */
    transform:none;        /* remove translateY */

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
}

.nav-menu .dropdown-menu{
    position:static;
    width:100%;
    max-height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:max-height .35s ease, opacity .35s ease, padding .35s ease;
    margin:0;
    padding:0;
    background:#08295f;
}

.nav-menu li.expanded > .dropdown-menu{
    max-height:500px;
    opacity:1;
    visibility:visible;
    padding:0 0 10px 0;
}

.dropdown-menu li a{
    display:block;
    padding:10px 16px 10px 34px;
    color:#ffffff;
    border:none;
    background:transparent;
}

.dropdown-menu li a:hover{
    background:rgba(255,255,255,.08);
}

.footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
}

}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr 1fr;
    gap:0px;
    margin:0 auto;
}

.footer-grid > div:first-child{
    grid-column:1 / -1;
}

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

}

@media(max-width:768px){

.footer-logo img{
    width:160px;
    height:auto;
}

}


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 15, 40, 0.9),
    rgba(5, 15, 40, 0.6),
    rgba(5, 15, 40, 0.2)
  );
}

/* CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 650px;
}

.content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

/* CTA BUTTON */
.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  background: #1A3660;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  background: #1A3660;
}

/* ✅ RESPONSIVE */

@media (max-width: 768px) {
  .hero-slider {
    height: 55vh;   /* ✅ reduced */
    min-height: 350px;
  }

  .slide img {
    object-position: center right;
  }

  .content {
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
  }

  .content h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .cta {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;  
    margin-left: calc(-50vw + 50%); /* ✅ even smaller for phones */
  }

  .content h1 {
    font-size: 18px;
  }
}



.metrics-section {
  padding: 20px 40px 40px; /* ✅ less top space */
  margin-top: 20px;       /* ✅ pull it upward */
}

.metrics-container {
  overflow: hidden;
  width: 100%;
}

.metrics-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.metric-card {
  flex: 0 0 calc(33.33% - 14px);
  background: #E8E8EB;
  padding: 20px 30px;   
  border-radius: 16px; 
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;
  background: #eef3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 24px;
  color: #0a1f44;
}

/* TEXT */
.metric-card h2 {
  margin: 0;
  font-size: 30px;
  color: #0a1f44;
}

.metric-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {

  .metrics-container {
    width: 100%;
    overflow: hidden;
  }

  .metrics-track {
    gap: 0; /* ✅ remove spacing */
  }

  .metric-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;  /* ✅ critical */
  }

}

.about-section{
    max-width:1200px;
    margin:40px auto;
    background:#fff;
}

.about-title{
    background:#d7d8e2;
    padding:28px 20px;
    text-align:center;
}

.about-title h2{
    color:#163d76;
    font-size:40px;
    font-weight:700;
    margin:0;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.about-title h2 i{
    font-size:32px;
    color:#163d76;
}

.about-content{
    background:#f4f4f6;
    padding:50px 70px;
    text-align:center;
}

.about-content p{
    max-width:900px;
    margin:0 auto 25px;

    font-size:17px;
    line-height:1.9;
    color:#333;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:20px;
}

.expertise-card{
    background:#fff;
    padding:35px;
    border-radius:8px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.expertise-card h3{
    color:#163d76;
    font-size:24px;
    margin-bottom:15px;
}

.expertise-card p{
    margin:0;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:991px){

.about-title h2{
    font-size:30px;
}

.about-content{
    padding:40px;
}

}

@media(max-width:768px){

.about-section{
    margin:25px 15px;
}

.about-title{
    padding:20px;
}

.about-title h2{
    font-size:25px;
    gap:12px;
}

.about-title h2 i{
    font-size:26px;
}

.about-content{
    padding:30px 20px;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
}

.expertise-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.expertise-card{
    padding:25px;
}

.expertise-card h3{
    font-size:20px;
}

}

.page-banner{
    position:relative;
    height:100px;
    overflow:hidden;
}

.banner-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(7,39,90,.45);
}

.banner-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    width:100%;
    max-width:1200px;
    padding:0 80px;

    z-index:2;
}

.banner-content h1{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin:0;
    line-height:1.1;
}

@media(max-width:768px){

    .page-banner{
        height:100px;
    }

    .banner-content{
        padding:0 25px;
    }

    .banner-content h1{
        font-size:20px;
    }

}


/* ==========================
   HOME ABOUT SECTION
========================== */

.home-about{
    display:grid;
    grid-template-columns:420px 1fr;
    background:#E8E8EB;
    margin:0;
    gap:0;
}

.about-image{
    min-height:520px;
    margin:0;
    padding:0;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-content{
    display:flex;
    flex-direction:column;
    margin:0;
    padding:0;
}

/* ==========================
   TITLE AREA
========================== */

.about-title{
    background:#d9d9e5;
    padding:35px 50px;
}

.about-title h2{
    margin:0;

    color:#153c76;
    font-size:52px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:18px;
}

.about-title i{
    font-size:42px;
}

/* ==========================
   CONTENT
========================== */

.about-inner{
    padding:40px 55px;
    text-align:left;
    background:#E8E8EB;
}

.about-inner p{

    line-height:1.9;


    text-align:left;

    margin:0 0 22px;
  font-size: 16px;
  color: #333333;
  font-weight: 400;
}

/* ==========================
   MISSION BAR
========================== */

.mission-box{
    background:#2f4d87;
    color:#E8E8EB;

    padding:18px 24px;

    font-weight:600;
    text-align:left;

    margin:30px 0;
}

/* ==========================
   BUTTON
========================== */

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#153c76;
    color:#fff;
    text-decoration:none;

    padding:14px 28px;
    border-radius:40px;

    font-weight:600;

    width:max-content;

    transition:.3s;
}

.about-btn:hover{
    background:#0f2e5d;
}

.about-btn i{
    font-size:14px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .home-about{
        grid-template-columns:1fr;
    }

    .about-image{
        min-height:300px;
    }

    .about-image img{
        height:100%;
        object-fit:cover;
    }

    .about-title{
        padding:25px 30px;
    }

    .about-title h2{
        font-size:38px;
    }

    .about-title i{
        font-size:30px;
    }

    .about-inner{
        padding:30px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .about-title{
        padding:22px 25px;
    }

    .about-title h2{
        font-size:22px;
        gap:12px;
    }

    .about-title i{
        font-size:26px;
    }

    .about-inner{
        padding:25px;
    }

    .about-inner p{
        font-size:15px;
        line-height:1.8;
    }

    .mission-box{
        font-size:15px;
        padding:16px 18px;
    }

    .about-btn{
        width:100%;
        justify-content:center;
    }

}

/* ==========================
   PRESENCE SECTION
========================== */

.presence-section{
    padding:30px 0px 0px;
    background:#f5f5f7;
}

.presence-header{
    text-align:center;
    max-width:1000px;
    margin:0 auto 50px;
}

.presence-header h2{
    color:#153c76;
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}

.presence-header h2 i{
    margin-right:12px;
}

.presence-header h3{
    font-size:32px;
    color:#153c76;
    margin-bottom:20px;
}

.presence-header p{
    font-size:18px;
    color:#555;
    line-height:1.8;
}

/* ==========================
   MAP
========================== */

.presence-map-wrapper{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.presence-map{
    width:100%;
    display:block;
}

/* ==========================
   MARKERS
========================== */

.marker{
    position:absolute;
    width:14px;
    height:14px;
    background:#2b72d6;
    border-radius:50%;
    transform:translate(-50%, -50%);
    z-index:2;
}

.marker::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:28px;
    height:28px;
    border:3px solid rgba(43,114,214,.45);
    border-radius:50%;
    transform:translate(-50%, -50%);
    animation:pulse 2s infinite;
}

.marker::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:40px;
    height:40px;
    border:2px solid rgba(43,114,214,.20);
    border-radius:50%;
    transform:translate(-50%, -50%);
}

@keyframes pulse{

    0%{
        transform:translate(-50%, -50%) scale(.8);
        opacity:1;
    }

    100%{
        transform:translate(-50%, -50%) scale(1.6);
        opacity:0;
    }

}

/* ==========================
   COUNTRY POSITIONS
========================== */

/* USA */
.usa{
    top:35%;
    left:20%;
}

/* United Kingdom */
.uk{
    top:26%;
    left:47%;
}

/* Germany */
.germany{
    top:29%;
    left:51%;
}

/* France */
.france{
    top:33%;
    left:48%;
}

/* Switzerland */
.switzerland{
    top:35%;
    left:52%;
}

/* UAE */
.uae{
    top:44%;
    left:62%;
}

/* India */
.india{
    top:47%;
    left:69.5%;
}

/* Singapore */
.singapore{
    top:59%;
    left:75.5%;
}

/* Kenya */
.kenya{
    top:59%;
    left:55.8%;
}

/* South Africa */
.southafrica{
    top:82%;
    left:57%;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

.presence-header h2{
    font-size:48px;
}

.presence-header h3{
    font-size:28px;
}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.presence-section{
    padding:30px 0px 0px;
}

.presence-header{
    margin-bottom:35px;
}

.presence-header h2{
    font-size:30px;
}

.presence-header h3{
    font-size:18px;
}

.presence-header p{
    font-size:15px;
    line-height:1.7;
}

.marker{
    width:10px;
    height:10px;
}

.marker::before{
    width:20px;
    height:20px;
}

.marker::after{
    width:30px;
    height:30px;
}

}


/* ==========================
   EXPERTISE SECTION
========================== */

.expertise-section{
    padding:30px 0px 0px;
    background:#f5f5f7;
}

.expertise-header{
    max-width:1000px;
    margin:0 auto 60px;
    text-align:center;
}

.expertise-header h2{
    color:#153c76;
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}

.expertise-header h2 i{
    margin-right:12px;
}

.expertise-header h3{
    color:#153c76;
    font-size:30px;
    margin-bottom:20px;
    margin-top:20px;
}

.expertise-header p{
    max-width:900px;
    margin:auto;
    color:#555;
    font-size:18px;
    line-height:1.8;
    margin-bottom: -35px;
}

/* GRID */

.expertise-grid{
    max-width:1400px;
    margin:auto;
margin-top:15px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.expertise-card{
    background:#fff;
    border-top:5px solid #153c76;
    padding:30px;
    transition:.3s;
}

.expertise-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.expertise-toggle{
    width:100%;
    border:none;
    background:none;
    padding:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    text-align:left;
    cursor:default;
}

.expertise-toggle span:first-child{
    color:#153c76;
    font-size:24px;
    font-weight:700;
}

.toggle-icon{
    display:none;
}

.expertise-content{
    margin-top:18px;
}

.expertise-content p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

.expertise-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* ==========================
   MOBILE ACCORDION
========================== */

@media(max-width:768px){

.expertise-section{
    padding:30px 0px 0px;
}

.expertise-header h2{
    font-size:30px;
}

.expertise-header h3{
    font-size:18px;
}

.expertise-header p{
    font-size:15px;
    margin-bottom: -35px;
}

.expertise-grid{
    grid-template-columns:1fr;
    gap:15px;
}

.expertise-card{
    padding:20px;
}

.expertise-toggle{
    cursor:pointer;
}

.expertise-toggle span:first-child{
    font-size:20px;
    padding-right:15px;
}

.toggle-icon{
    display:block;
    color:#153c76;
    font-size:28px;
    font-weight:700;
}

.expertise-content{
    display:none;
    margin-top:15px;
}

.expertise-card.active .expertise-content{
    display:block;
}

}


.portfolio-section {
  padding: 60px 40px;
  background: #f5f5f7;
  text-align:center;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.portfolio-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.amount {
  font-size: 13px;
  color: #0a1f44;
  margin-bottom: 10px;
}

/* TITLE */
.portfolio-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #0a1f44;
}

/* DESCRIPTION */
.portfolio-card p {
  font-size: 14px;
  color: #666;
}

/* STATUS TAG */
.status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.status.in {
  background: #1a3660;
  color: white;
}

.status.out {
  background: #ccc;
  color: #333;
}

/* PAGINATION */
.pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.pagination button {
  margin: 0 5px;
  padding: 8px 14px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 6px;
}

.pagination button.active {
  background: #1a3660;
  color: white;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 30px 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;   /* ✅ 1 card per row */
  }

  .portfolio-card img {
    height: 180px;
  }
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.page {
  display: none;
  opacity: 0;
  transition: 0.3s;
}

.page.active {
  display: block;
  opacity: 1;
}



/* ==========================
   PORTFOLIO HEADER (LIKE PRESENCE)
========================== */

.portfolio-highlight {
    padding: 30px 0px 0px;
    background: #f5f5f7;
}

.portfolio-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.portfolio-header h2 {
    color: #153c76;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-header h2 i {
    margin-right: 12px;
    font-size: 45px;
}

.portfolio-header h3 {
    font-size: 30px;
    color: #153c76;
    margin-bottom: 15px;
}

.portfolio-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}


.home-portfolio {
  margin-top: 30px;
  background:#f5f5f7;
}


/* ✅ ICON */
.portfolio-header h2 i {
  font-size: 28px;
  color: #1a3660;
}

/* ✅ BUTTON */
.portfolio-header a {
  padding: 12px 22px;
  background: #1a3660;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.portfolio-header a:hover {
  background: #13284d;
}

/* ✅ SLIDER */
.portfolio-slider {
    margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

/* ✅ CARD */
.portfolio-card {
  min-width: calc(33.33% - 13px);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ✅ IMAGE */
.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ✅ CONTENT */
.card-content {
  padding: 18px;
}

.meta {
  font-size: 12px;
  color: #777;
}

/* ✅ STATUS */
.status {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.status.in {
  background: #1a3660;
  color: white;
}

.status.out {
  background: #ccc;
}

/* ✅ TITLE */
.portfolio-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #0a1f44;
}

/* ✅ DESC */
.portfolio-card p {
  font-size: 14px;
  color: #666;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .portfolio-section{
    padding:30px 0px 0px;
}

  .portfolio-header h2 {
    font-size: 30px;
  }

  .portfolio-header a {
    font-size: 13px;
    padding: 10px 18px;
  }

  .portfolio-card {
    min-width: 100%;  /* ✅ FULL WIDTH */
  }

  .slider-track {
    gap: 0;
  }

  .portfolio-card img {
    height: 180px;
  }

}

.portfolio-cta {
  text-align: center;
  margin-top: 20px;
}

.portfolio-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1a3660;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.portfolio-btn:hover {
  background: #12294d;
}

@media (max-width: 768px) {
  .portfolio-cta {
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .portfolio-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

}

/* ==========================
   FUNDS SECTION
========================== */

.funds-section{
    background:#efeff4;
    margin-top:40px;
}

.funds-title{
    background:#d9d9e5;
    text-align:center;
    padding:35px 20px;
}

.funds-title h2{
    margin:0;
    color:#153c76;
    font-size:58px;
    font-weight:700;
}

.funds-title i{
    margin-right:12px;
}

/* ==========================
   CONTENT
========================== */

.funds-content{
    max-width:1100px;
    margin:auto;
    padding:0px 20px 20px;
    text-align:center;
}

.funds-intro{
    font-size:24px;
    line-height:1.7;
    color:#222;
    font-weight:600;
    max-width:950px;
    margin:0 auto 50px;
}

/* ==========================
   ICONS
========================== */

.funds-icons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
    margin-bottom:50px;
}

.fund-icon{
    width:180px;
    text-align:center;
}

.icon-circle{
    width:90px;
    height:90px;
    margin:0 auto 15px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25457d;
    color:#fff;

    font-size:34px;
}

.fund-icon:nth-child(1) .icon-circle{
    background:#234884;
}

.fund-icon:nth-child(2) .icon-circle{
    background:#4669a8;
}

.fund-icon:nth-child(3) .icon-circle{
    background:#6f8fc8;
}

.fund-icon:nth-child(4) .icon-circle{
    background:#a8bddf;
}

.fund-icon:nth-child(5) .icon-circle{
    background:#6f8fc8;
}

.fund-icon:nth-child(6) .icon-circle{
    background:#4669a8;
}

.fund-icon h4{
    margin:0;
    font-size:20px;
    color:#153c76;
    font-weight:600;
}

/* ==========================
   DESCRIPTION
========================== */

.funds-description{
    max-width:900px;
    margin:0 auto 40px;

    color:#444;
    font-size:18px;
    line-height:1.9;
}

/* ==========================
   BUTTON
========================== */

.funds-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#153c76;
    color:#fff;

    padding:16px 34px;

    text-decoration:none;
    border-radius:40px;

    font-weight:600;
    transition:.3s;
}

.funds-btn:hover{
    background:#0d2f60;
}

.funds-btn i{
    font-size:14px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

.funds-title h2{
    font-size:46px;
}

.funds-intro{
    font-size:20px;
}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.funds-title{
    padding:25px 15px;
}

.funds-title h2{
    font-size:30px;
}

.funds-content{
    padding:0px 20px 0px;
}

.funds-intro{
    font-size:17px;
}

.funds-description{
    font-size:15px;
}

.funds-icons{
    gap:25px;
}

.fund-icon{
    width:140px;
}

.icon-circle{
    width:75px;
    height:75px;
    font-size:28px;
}

.fund-icon h4{
    font-size:16px;
}

.funds-btn{
    width:100%;
    justify-content:center;
}

}

.funds-overview{
    padding:8px 20px;
    background:#f5f5f7;
}

.funds-intro{
    max-width:1000px;
    margin:40px auto;
    text-align:center;
}

.funds-intro p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.fund-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1300px;
    margin:auto;
}

.fund-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.featured-fund{
    border-top:5px solid #153c76;
}

.fund-year{
    color:#153c76;
    font-weight:700;
}

.fund-card h3{
    margin:15px 0;
    font-size:32px;
    color:#153c76;
}

.fund-stats p{
    margin-bottom:12px;
}

.fund-btn{
    display:inline-block;
    margin-top:20px;
    background:#153c76;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
}

@media(max-width:991px){

.fund-cards{
    grid-template-columns:1fr;
}

}

/* ==========================
   FUND DETAIL PAGE
========================== */

.fund-detail{
    padding:10px 20px;
    background:#f5f5f7;
}

.fund-container{
    max-width:1200px;
    margin:auto;
}

.fund-header{
    background:#d9d9e5;
    padding:40px;
    text-align:center;
    margin-bottom:40px;
}

.fund-header h1{
    font-size:58px;
    color:#153c76;
    margin-bottom:10px;
}

.fund-header p{
    font-size:22px;
    color:#555;
}

.fund-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:50px;
}

.stat-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-card h3{
    color:#153c76;
    font-size:34px;
    margin-bottom:10px;
}

.stat-card p{
    color:#666;
}

.fund-content{
    background:#fff;
    padding:50px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.fund-content h2{
    color:#153c76;
    font-size:34px;
    margin-bottom:20px;
}

.fund-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
}

.info-box{
    background:#f8f8fb;
    padding:30px;
    border-left:5px solid #153c76;
}

.info-box h3{
    color:#153c76;
    margin-bottom:20px;
}

.info-box ul{
    padding-left:20px;
}

.info-box li{
    margin-bottom:12px;
    line-height:1.7;
}

@media(max-width:991px){

.fund-stats{
    grid-template-columns:repeat(2,1fr);
}

.info-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.fund-header{
    padding:25px;
}

.fund-header h1{
    font-size:38px;
}

.fund-header p{
    font-size:18px;
}

.fund-stats{
    grid-template-columns:1fr;
}

.fund-content{
    padding:25px;
}

.fund-content h2{
    font-size:28px;
}

}

/* =========================================
   COMMON
========================================= */

.page-banner{
    position:relative;
    height:300px;
    overflow:hidden;
}

.page-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

    display:flex;
    align-items:center;
}

.banner-overlay h1{
    color:#fff;
    font-size:68px;
    margin-bottom:15px;
}

.banner-overlay p{
    color:#fff;
    max-width:700px;
    font-size:22px;
    line-height:1.8;
}

.section-title{
    margin-bottom:15px;
}

.section-title h2{
    color:#153c76;
    font-size:52px;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:15px;
}

.section-title i{
    font-size:42px;
}

.section-description{
    text-align:center;
    max-width:900px;
    margin:0 auto 15px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

/* =========================================
   INTRODUCTION
========================================= */

.philosophy-intro{
    padding:15px 0;
    background:#fff;
}

.intro-content{
    max-width:1100px;
}

.intro-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:14px;
}

/* =========================================
   INVESTMENT STRATEGIES
========================================= */

.strategy-section{
    padding:15px 0;
    background:#f5f5f7;
}

.strategy-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.strategy-card{
    background:#fff;
    padding:15px;
    border-top:5px solid #153c76;
    transition:.3s;
}

.strategy-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.strategy-card i{
    font-size:42px;
    color:#153c76;
    margin-bottom:15px;
}

.strategy-card h3{
    color:#153c76;
    margin-bottom:15px;
    font-size:24px;
}

.strategy-card p{
    color:#555;
    line-height:1.8;
}

/* =========================================
   CONTENT GRID
========================================= */

.minimum-investment{
    padding:15px 0;
    background:#fff;
}

.content-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.content-text h2{
    color:#153c76;
    font-size:46px;
    margin-bottom:15px;
}

.content-text p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.content-image img{
    width:100%;
    display:block;
    border-radius:12px;
}

/* =========================================
   FUNDING STRUCTURE
========================================= */

.funding-structure{
    padding:15px 0;
    background:#f5f5f7;
}

.funding-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.funding-item{
    background:#fff;
    padding:15px;
    text-align:center;
    border-radius:10px;
    transition:.3s;
}

.funding-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.funding-item i{
    font-size:42px;
    color:#153c76;
    margin-bottom:20px;
}

.funding-item h3{
    color:#153c76;
    font-size:22px;
}

/* =========================================
   INVESTMENT PROCESS
========================================= */

.investment-process-section{
    padding:15px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.process-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.process-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

/* =========================================
   INVESTMENT CRITERIA
========================================= */

.criteria-section{
    padding:15px 0;
    background:#f5f5f7;
}

.criteria-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.criteria-item{
    background:#fff;
    padding:25px;
    border-left:5px solid #153c76;
    font-weight:600;
    color:#444;
}

/* =========================================
   FOCUS AREAS
========================================= */

.focus-areas{
    padding:15px 0;
    background:#fff;
}

.focus-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.focus-box{
    background:#f5f5f7;
    padding:15px;
}

.focus-box h3{
    color:#153c76;
    margin-bottom:20px;
    font-size:30px;
}

.focus-box ul{
    padding-left:20px;
}

.focus-box li{
    margin-bottom:12px;
    color:#555;
    line-height:1.7;
}

/* =========================================
   EXIT STRATEGY
========================================= */

.exit-strategy{
    padding:15px 0;
    background:#f5f5f7;
}

.exit-strategy p{
    max-width:1000px;
    margin-bottom:40px;
    color:#555;
    line-height:1.9;
    font-size:17px;
}

.exit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.exit-grid div{
    background:#fff;
    padding:25px;
    text-align:center;
    font-weight:600;
    color:#153c76;
}

/* =========================================
   CTA
========================================= */

.investment-cta{
    padding:15px 0;
    background:#153c76;
    text-align:center;
}

.investment-cta h2{
    color:#fff;
    font-size:52px;
    margin-bottom:20px;
}

.investment-cta p{
    color:#fff;
    max-width:800px;
    margin:0 auto 35px;
    line-height:1.9;
    font-size:18px;
}

.cta-btn{
    display:inline-block;
    padding:16px 34px;
    background:#fff;
    color:#153c76;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

.strategy-grid{
    grid-template-columns:repeat(2,1fr);
}

.funding-grid{
    grid-template-columns:repeat(2,1fr);
}

.criteria-grid{
    grid-template-columns:repeat(2,1fr);
}

.content-grid,
.process-grid,
.focus-grid{
    grid-template-columns:1fr;
}

.exit-grid{
    grid-template-columns:repeat(2,1fr);
}

.banner-overlay h1{
    font-size:50px;
}

.section-title h2{
    font-size:42px;
}

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

.page-banner{
    height:100px;
}

.banner-overlay h1{
    font-size:15px;
}

.banner-overlay p{
    font-size:13px;
}

.section-title h2{
    font-size:25px;
}

.section-title i{
    font: size 22px;
}

.strategy-grid,
.funding-grid,
.criteria-grid,
.exit-grid{
    grid-template-columns:1fr;
}

.strategy-card,
.funding-item,
.criteria-item{
    padding:25px;
}

.content-text h2{
    font-size:25px;
}

.focus-box{
    padding:25px;
}

.focus-box h3{
    font-size:22px;
}

.investment-cta{
    padding:60px 20px;
}

.investment-cta h2{
    font-size:34px;
}

.investment-cta p{
    font-size:15px;
}

.cta-btn{
    width:100%;
    text-align:center;
}

}



/* ✅ MAIN */
.investment-solutions {
  background: #f5f5f7;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ✅ HEADER */
.inv-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.inv-header h2 {
  font-size: 40px;
  color: #153c76;
}

.inv-header h3 {
  font-size: 20px;
  margin: 10px 0;
}

.inv-header p {
  color: #666;
}

/* ✅ ALL SECTIONS SAME STYLE ⭐ */
.inv-row,
.inv-center {
  background: #ffffff;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;

}


.inv-row.show,
.inv-center.show {
  opacity: 1;
  transform: translateY(0);
}


/* ✅ IMAGE */
.inv-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* ✅ TITLE */
.inv-content h3,
.inv-center h3 {
  font-size: 24px;
  color: #153c76;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inv-content p,
.inv-center p {
  color: #555;
  line-height: 1.6;
}

/* ✅ INNER FEATURE GRID (IMPORTANT ⭐) */
.inv-grid,
.inv-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

/* ✅ FEATURE CARD */
.inv-grid div,
.inv-features div {
  background: #f4f6fb;
  padding: 5px;
  border-radius: 10px;
  transition: 0.3s;
  text-align: left;
}

/* ✅ HOVER EFFECT */
.inv-grid div:hover,
.inv-features div:hover {
  background: #e9eef8;
  transform: translateY(-3px);
}

/* ✅ ICON IN FEATURE */


.inv-features i {
  width: 40px;
  height: 40px;
  background: #eef3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

/* ✅ LIST (OPTIONAL CLEAN) */
.inv-content ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.inv-content li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.inv-content li i {
  color: #1a3660;
}

/* ✅ MOBILE */
@media (max-width: 768px) {

  .inv-header h2 {
    font-size: 28px;
  }

  .inv-content h3,
  .inv-center h3 {
    font-size: 20px;
  }

  .inv-grid,
  .inv-features {
    grid-template-columns: 1fr;
  }

  .inv-image img {
    height: 200px;
  }

}


/* ✅ ICON CIRCLE */
.inv-content h3 i,
.inv-center h3 i {
  background: #eef3ff;
  color: #153c76;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}


.inv-row:hover,
.inv-center:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.inv-grid div,
.inv-features div {
  border: 1px solid #e6eaf2;
}

.inv-grid div:hover,
.inv-features div:hover {
  background: #f0f4ff;
}

.inv-row,
.inv-center {
  padding: 15px;
  margin: 0 auto 30px;
}

.inv-content p,
.inv-center p {
  margin-bottom: 15px;
}

.inv-grid {
  margin-top: 25px;
}

.inv-content h3,
.inv-center h3 {
  margin-bottom: 15px;
}

.inv-header {
  margin-bottom: 70px;
}


/* ==========================
   MAIN SECTION
========================== */
.sustainability {
  background: #f5f5f7;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ==========================
   HERO
========================== */
.sus-hero {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.sus-hero h2 {
  font-size: 40px;
  color: #153c76;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sus-hero h2 i {
  background: #eef3ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sus-hero p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* ==========================
   IMAGE
========================== */
.sus-image {
  max-width: 1100px;
  margin: 30px auto;
}

.sus-image img {
  width: 100%;
  height: 500px;
  border-radius: 14px;
  object-fit: cover;
}

/* ==========================
   COUNTERS
========================== */
.sus-stats {
  display: flex;
  justify-content: space-around;
  max-width: 800px;
  margin: 30px auto 50px;
  text-align: center;
}

.sus-stats h3 {
  font-size: 38px;
  color: #153c76;
}

.sus-stats div {
  font-size: 14px;
  color: #555;
}

/* ==========================
   CARD GRID
========================== */
.sus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto 60px;
}

/* ==========================
   CARD
========================== */
.sus-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.sus-card:hover {
  transform: translateY(-5px);
}

.sus-card h3 {
  color: #153c76;
  margin-bottom: 10px;
}

.sus-card p {
  color: #555;
  line-height: 1.6;
}

/* ✅ GREEN CARDS */
.sus-card.green {
  background: linear-gradient(135deg, #eef7ef, #dff3dc);
}

/* ==========================
   SECTION BLOCK
========================== */
.sus-section {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
}

.sus-section h3 {
  font-size: 28px;
  color: #153c76;
}

.sus-section p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* ==========================
   ESG ICON BLOCKS
========================== */
.sus-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* ✅ ICON BOX */
.sus-icon {
  padding: 25px;
  border-radius: 14px;
  color: white;
  text-align: center;
  transition: 0.3s;
}

.sus-icon:hover {
  transform: translateY(-5px);
}

/* ✅ ICON */
.sus-icon i {
  font-size: 24px;
  margin-bottom: 10px;
}

/* ✅ COLORS */
.red { background: #e74c3c; }
.blue { background: #3498db; }
.green { background: #2ecc71; }
.yellow { background: #f1c40f; color: #333; }

/* ==========================
   FOOTER TEXT
========================== */
.sus-footer {
  text-align: center;
  max-width: 900px;
  margin: 60px auto 0;
}

.sus-footer p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}

/* ==========================
   SCROLL ANIMATION
========================== */
.sus-card,
.sus-section,
.sus-icon,
.sus-stats {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {

  .sus-grid {
    grid-template-columns: 1fr;
  }

  .sus-features {
    grid-template-columns: 1fr;
  }

  .sus-stats {
    flex-direction: column;
    gap: 20px;
  }

  .sus-hero h2 {
    font-size: 28px;
  }

}

/* ==========================
   SECTION
========================== */
.sector-expertise {
  background: #f5f5f7;
  padding: 60px 20px;
}

/* ==========================
   HEADER
========================== */
.sector-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.sector-header h2 {
  font-size: 40px;
  color: #153c76;
}

.sector-header h2 i {
  margin-right: 8px;
}

.sector-header h3 {
  margin-top: 8px;
  font-size: 22px;
}

.sector-header p {
  margin-top: 10px;
  color: #666;
  line-height: 1.6;
}

/* ==========================
   GRID
========================== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* ==========================
   CARD
========================== */
.sector-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* ✅ HOVER */
.sector-card:hover {
  transform: translateY(-5px);
}

/* ==========================
   IMAGE
========================== */
.sector-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ==========================
   TITLE
========================== */
.sector-card h3 {
  font-size: 20px;
  color: #153c76;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ✅ ICON CIRCLE */
.sector-card h3 i {
  background: #eef3ff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================
   TEXT
========================== */
.sector-card p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

/* ✅ SPECIAL CARD */
.sector-card.special {
  background: #153c76;
  color: white;
}

.sector-card.special h3,
.sector-card.special p {
  color: white;
}

.sector-card.special h3 i {
  background: rgba(255,255,255,0.2);
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-header h2 {
    font-size: 28px;
  }

}

/* ==========================
   ANIMATION BASE
========================== */
.sector-card,
.sector-header {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* ✅ ACTIVE STATE */
.sector-card.show,
.sector-header.show {
  opacity: 1;
  transform: translateY(0);
}

.sector-card {
  transition-delay: 0.1s;
}

.sector-card:nth-child(2) { transition-delay: 0.15s; }
.sector-card:nth-child(3) { transition-delay: 0.2s; }
.sector-card:nth-child(4) { transition-delay: 0.25s; }
.sector-card:nth-child(5) { transition-delay: 0.3s; }
.sector-card:nth-child(6) { transition-delay: 0.35s; }
.sector-card:nth-child(7) { transition-delay: 0.4s; }
.sector-card:nth-child(8) { transition-delay: 0.45s; }

.sector-card img {
  transition: transform 0.6s ease;
}

.sector-card:hover img {
  transform: scale(1.05);
}


/* =========================
   MAIN WRAPPER
========================= */
.ip-new {
  background: #f5f6fa;
  padding: 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* =========================
   HERO
========================= */
.ip-hero {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.ip-hero h1 {
  font-size: 38px;
  color: #153c76;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ip-hero i {
  background: #eef3ff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-hero p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   SECTION BLOCK
========================= */
.ip-section {
  background: #fff;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   SECTION TITLE
========================= */
.ip-title {
  font-size: 26px;
  color: #153c76;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ip-title i {
  background: #eef3ff;
  padding: 8px;
  border-radius: 50%;
}

/* =========================
   PROCESS
========================= */
.ip-process {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.ip-process img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ip-process-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* =========================
   STRATEGY CARDS
========================= */
.ip-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ip-card {
  background: #f7f9fc;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
}

.ip-card:hover {
  transform: translateY(-5px);
  background: #eef3ff;
}

.ip-card i {
  font-size: 20px;
  color: #153c76;
  margin-bottom: 8px;
}

.ip-card h3 {
  font-size: 16px;
  color: #153c76;
  margin-bottom: 6px;
}

.ip-card p {
  font-size: 14px;
  color: #555;
}

/* =========================
   HIGHLIGHT BLOCK
========================= */
.ip-highlight {
  background: linear-gradient(135deg, #153c76, #1f4b9c);
  color: white;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 40px;
  border-radius: 14px;
}

.ip-highlight h2 {
  margin-bottom: 10px;
}

.ip-highlight p {
  line-height: 1.6;
  margin-bottom: 8px;
}

/* =========================
   PILL GRID (FUNDING + EXIT)
========================= */
.ip-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.ip-pill-grid div {
  background: #f7f9fc;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  transition: 0.3s;
}

.ip-pill-grid div:hover {
  background: #eef3ff;
  transform: translateY(-3px);
}

/* =========================
   CRITERIA
========================= */
.ip-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ip-check-grid div {
  background: #f7f9fc;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

/* =========================
   FOCUS AREA
========================= */
.ip-two-col {
  background: #fff;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ip-two-col h3 {
  color: #153c76;
  margin-bottom: 10px;
}

.ip-two-col ul {
  padding-left: 18px;
}

.ip-two-col li {
  margin-bottom: 6px;
  color: #555;
}

/* =========================
   CENTER TEXT
========================= */
.ip-center-text {
  text-align: center;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .ip-process {
    grid-template-columns: 1fr;
  }

  .ip-cards {
    grid-template-columns: 1fr;
  }

  .ip-pill-grid {
    grid-template-columns: 1fr;
  }

  .ip-check-grid {
    grid-template-columns: 1fr;
  }

  .ip-two-col {
    grid-template-columns: 1fr;
  }

  .ip-hero h1 {
    font-size: 28px;
  }
}

/* =========================
   SCROLL ANIMATION BASE
========================= */
.ip-hero,
.ip-section,
.ip-highlight,
.ip-two-col {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

/* ✅ ACTIVE CLASS */
.ip-show {
  opacity: 1;
  transform: translateY(0);
}

/* STRATEGY STAGGER */
.ip-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
}

.ip-card.ip-show {
  opacity: 1;
  transform: translateY(0);
}

.ip-card:nth-child(1) { transition-delay: 0.1s; }
.ip-card:nth-child(2) { transition-delay: 0.2s; }
.ip-card:nth-child(3) { transition-delay: 0.3s; }
.ip-card:nth-child(4) { transition-delay: 0.4s; }

/* GRID ITEMS */
.ip-pill-grid div,
.ip-check-grid div {
  opacity: 0;
  transform: scale(0.95);
  transition: 0.4s ease;
}

.ip-pill-grid div.ip-show,
.ip-check-grid div.ip-show {
  opacity: 1;
  transform: scale(1);
}

/* CARD HOVER */
.ip-card {
  position: relative;
  overflow: hidden;
}

.ip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(21,60,118,0.15));
  opacity: 0;
  transition: 0.4s;
}

.ip-card:hover::before {
  opacity: 1;
}

/* PILLS */
.ip-pill-grid div:hover {
  background: #153c76;
  color: white;
}

/* CHECK ITEMS */
.ip-check-grid div:hover {
  background: #153c76;
  color: white;
}

.ip-process img {
  transition: 0.6s ease;
}

.ip-process img:hover {
  transform: scale(1.05);
}

.ip-section:hover,
.ip-two-col:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ip-process img {
  transition: 0.6s ease;
}

.ip-process img:hover {
  transform: scale(1.05);
}
.ip-section:hover,
.ip-two-col:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.global-reach {
  padding: 20px 20px;
  background: #f5f6fa;
}

/* HERO */
.gr-hero {
  text-align: center;
  margin-bottom: 60px;
}

.gr-hero h1 {
  font-size: 38px;
  color: #153c76;
}

/* MAP */
.gr-map-section {
  max-width: 1100px;
  margin: auto 0 50px;
  text-align: center;
}

.gr-map {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.gr-map img {
  width: 100%;
  opacity: 0.9;
}

/* DOTS */
.dot {
  width: 12px;
  height: 12px;
  background: #153c76;
  border-radius: 50%;
  position: absolute;
  animation: pulse 2s infinite;
}

.europe { top: 30%; left: 45%; }
.middle-east { top: 45%; left: 50%; }
.africa { top: 60%; left: 48%; }
.asia { top: 35%; left: 70%; }
.usa { top: 35%; left: 20%; }

@keyframes pulse {
  0%{transform: scale(1);}
  50%{transform: scale(1.5);}
  100%{transform: scale(1);}
}

/* SECTION */
.gr-section {
  background: #fff;
  max-width: 1100px;
  margin: auto 0 50px;
  padding: 30px;
  border-radius: 14px;
}

/* GRID */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.gr-card {
  background: #f7f9fc;
  padding: 20px;
  border-radius: 10px;
}

/* BAR */
.gr-bars {
  margin-top: 20px;
}

.bar {
  background: #e6eaf2;
  height: 8px;
  border-radius: 10px;
}

.bar div {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg,#153c76,#1e4a9c);
  transition: 1.2s;
}

/* STEPS */
.gr-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.gr-steps div {
  background: #f4f6fb;
  padding: 20px;
}

/* COUNTER */
.gr-highlight {
  background: linear-gradient(135deg,#153c76,#1e4a9c);
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 40px;
  border-radius: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .gr-grid,
  .gr-steps {
    grid-template-columns: 1fr;
  }

  .gr-highlight {
    flex-direction: column;
    gap: 20px;
  }
}

.gr-section h2 {
  color: #153c76;
}

.contact-page {
  background: #f5f6fa;
  padding: 20px 20px;
  font-family: 'Segoe UI';
}

/* HERO */
.contact-hero {
  text-align: center;
  margin-bottom: 50px;
}

.contact-hero h1 {
  font-size: 36px;
  color: #153c76;
}

.contact-hero p {
  color: #555;
}

/* CONTAINER */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT INFO */
.contact-info {
  background: #ffffff;
  color: rgb(0, 57, 130);
  padding: 30px;
  border-radius: 14px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box i {
  font-size: 18px;
}

/* FORM */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #153c76;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-form button {
  background: #153c76;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #1e4a9c;
}

/* MOBILE */
@media(max-width:768px){
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* BUTTON LOADER */
button {
  position: relative;
  overflow: hidden;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* SHOW LOADER */
button.loading .loader {
  display: block;
}

button.loading .btn-text {
  visibility: hidden;
}

/* ERROR */
.error {
  color: red;
  font-size: 12px;
  display: none;
}

/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  animation: pop 0.4s ease;
}

@keyframes pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.contact-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);

  background: linear-gradient(135deg,#153c76,#1b4da3);
  color: #fff;

  padding: 14px 12px;
  border-radius: 8px 0 0 8px;

  text-decoration: none;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;

  transition: 0.3s;
}

/* ✅ Hover effect */
.contact-float:hover {
  background: #1e4a9c;
  transform: translateY(-50%) scale(1.05);
}

.contact-float {
  right: -10px;
}

.contact-float:hover {
  right: 0;
}




.custom-lang {
  position: fixed;
  top: 80%;
  right: 0;
  transform: translateY(-50%);
  background: #153c76;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  z-index: 999;
}

.custom-lang select {
  background: white;
  padding: 6px;
  border-radius: 5px;
  border: none;
  font-size: 13px;
  cursor: pointer;
}