@media (min-width: 1920px) {
  .mega-inner {
    max-width: 1481px !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 20px;
    gap: 0;
    margin-left: 117px;
    margin-right: 80px;

}

.mega-menu {
    width: 97.5% !important;
}

li:nth-child(4).nav-item.has-mega::after {
    left: 70% !important;
}

li:nth-child(2).nav-item.has-mega::after {
    left: 56% !important;
}
}


@media screen and (max-width: 1280px) {

  .mega-menu {
    width: 96% !important;
  }

  li:nth-child(2).nav-item.has-mega::after {
    left: 53% !important;
}

.mega-inner {
    margin-right: 35px !important;
}

}

/* @media screen and (min-width: 1366px) {

.mega-menu {
    width: 96.5% !important;
}

li:nth-child(2).nav-item.has-mega::after {
    left: 52% !important;
}

li:nth-child(4).nav-item.has-mega::after {
    left: 71% !important;
}
} */

@media (max-width: 1024px) {
  .navbar-nav .nav-link {
     font-size: 16px !important;
} }

@media (max-width: 991px) {
  .logo-img {
    height: 40px;
    margin-left: 12px;
  }
 /* Menu container */
  .mobile-menu {
    background-color: #C4BA9A;
    padding: 10px;
    /* border-radius: 5px; */
  }

  /* Each menu item */
  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link {
    background-color: #d6c7a3;
    padding: 14px;
    margin-left: 0 !important;
    font-size: 16px !important;
  }

  /* Active (Home style) */
  .navbar-nav .nav-link.active {
    color: #a89f6d;
    font-weight: 600;
  }

  /* Remove inline layout */
  .navbar-nav {
    flex-direction: column;
  }

  .timeline-section {
    padding: 30px 0 30px !important;
    overflow: visible;
    position: relative;
}
   .circle-box {
    margin-top: 30px;
  }
 .submenu-mobile {
    list-style: none;
    padding-left: 15px;
    display: none;
  }

  .submenu-mobile li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    position: relative;
  }

  /* SHOW */
  .has-submenu.active .submenu-mobile {
    display: block;
  }

  /* Arrow */
  .submenu-toggle {
    position: relative; 
  } 
   

    .submenu-toggle::after {
        content: "›";
        position: absolute;
        right: 10px;
        transition: 0.3s;
        display: inline-block;
        top: 12px;
        color: black;
        font-size: 40px;
        left: auto;
        border: 0;
        bottom: auto;
        transform: rotate(0deg);
    }

  .has-submenu.active .submenu-toggle::after {
    transform: rotate(90deg) !important;
  }

   .submenu-mobile {
    display: none !important;
}
  .nav-item.has-mega .mega-menu {
    display: block !important;
    position: static !important;
    width: 100% !important;
    transform: none !important;
    pointer-events: auto !important;
    background: #9a8c5a;
    overflow: hidden;
    max-height: 0;                  /* collapsed */
    transition: max-height 0.3s ease;
    margin: 0 !important;
    padding: 0px;
  }

  /* When JS adds .mobile-open, the maxHeight is set inline via JS */
  /* (no extra rule needed — JS handles it) */

  /* Stack sub-links vertically */
  .mega-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    height: auto !important;
    padding: 4px 0 !important;
    margin-left: 0 !important;
    gap: 0 !important;
    justify-content: flex-start !important;
  }


  
  .mega-menu a {
    width: 100%;
    padding: 10px 24px !important;
    height: auto !important;
    line-height: 1.4 !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .mega-menu a:last-child { border-bottom: none; }

  /* Hide the separator pipe on mobile */
  .mega-sep { display: none !important; }

  /* Hide the desktop CSS arrow (::after triangle) on mobile */
  li.nav-item.has-mega:after { display: none !important; }

  /* ── Arrow indicator on the "Our Approach" row ── */
  .mobile-arrow {
    float: right;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 8px;
  }

  /* Rotate arrow to point down when open */
  .nav-item.has-mega.mobile-open .mobile-arrow {
    transform: rotate(90deg);
    display: block !important;
  }

   #navbarNav {
    overflow: hidden !important;
    max-height: 0 !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
    display: block !important;
    visibility: visible !important;
    padding: 0 !important;            /* ← FIX: no padding when closed */
  }

  #navbarNav.show {
    max-height: 600px !important;
    padding: 10px !important;         /* ← padding only when open */
  }

  /* Smooth fade + slide for each nav item */
  #navbarNav .nav-item {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #navbarNav.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger each item */
  #navbarNav.show .nav-item:nth-child(1) { transition-delay: 0.05s; }
  #navbarNav.show .nav-item:nth-child(2) { transition-delay: 0.10s; }
  #navbarNav.show .nav-item:nth-child(3) { transition-delay: 0.15s; }
  #navbarNav.show .nav-item:nth-child(4) { transition-delay: 0.20s; }
  #navbarNav.show .nav-item:nth-child(5) { transition-delay: 0.25s; }

  /* Remove background color from closed state too */
  .mobile-menu {
    background-color: transparent;
    padding: 0 !important;
  }

  .mobile-menu.show {
    background-color: #C4BA9A !important;
    padding: 10px !important;
  }


  li.nav-item.has-mega.active:after {
    display: none !important;
}
 .submenu-mobile {
    display: none !important;
  }

  .focus-quote-wrap {
    padding-left: 0px !important;
   padding-top: 10px;
}
.governance-img {
    margin-left: 0px !important;
}
.focus-content {
    padding-right: 0px !important;
}

.Approach-section {
    margin-top: 0px !important;
}
.corp-quote {
   
    padding-left: 0px !important;
     padding-top: 20px !important;
  
}

p.principle-body {
    text-align: justify !important;
}
.focus-body p {
    text-align: justify !important;
} 
}

 @media (max-width: 900px) {
      .investments-grid    { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
      /* .investments-section { padding: 0px 20px 75px !important; } */
    }


 @media (max-width: 768px) {

  .footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin: 0;
    display: flex;
    justify-content: center;
}
      .hero-bg    { padding-top: 60% !important; }
      .hero-quote { bottom: 44px !important; }
      .thumb-item { width: 82px !important; height: 54px !important; }

.investments-grid {
        grid-template-columns: 1fr !important;
    } 
.job-email {
    color: #A89F6D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    /* letter-spacing: -0.0625rem; */
    margin-left: 0px !important;
    margin-top: -15px;
}
.email {
    color: #A89F6D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    /* letter-spacing: -0.0625rem; */
    margin-left: 0px !important;
    margin-top: -15px;
}
    .hero-quote p {
    font-size: 1.3625rem !important ;
    color: #ffffff !important;
    line-height: 1.5 !important;
    font-family: "Lucida Sans";
    font-style: normal 10 !important;
    font-weight: 400 !important; ;
    line-height: var(--line-height-40, 1.5rem) !important;
    letter-spacing: -0.125rem !important ;
}
 .Approach-section {
    margin-top: 0px !important;
}
.caption-bar p {
    letter-spacing: 0.2px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-family: "Lucida Sans"  !important;
}
.caption-bar {
    padding: 9px 17px;
} 
.heading-line { max-width: 60px; }
      .card-top { min-height: 170px; }

       .heading-line { max-width: 60px; }
      .circles-container::before { padding-top: 55%; }

      .team-header {

       margin: 0 10px !important;}

     .brand-item   { width: 130px; padding: 0 14px; }
      .arrow-btn    { padding: 0 10px; font-size: 2rem; }
      .heading-line { max-width: 80px; }
      .name, .role {
    text-align: center;
  }
  .divider {
   margin: 25px 0px 25px 0px !important;
   
  }
  .description {
    text-align: center;
  }
   .name, .role {
    text-align: center;
     padding-top: 15px;
  }

  .description {
    text-align: justify;
  }
   .logo-item::after {
    display: none; /* remove lines on small screens */
  }
  .tl-item { width: 130px; }
  .tl-top-inner,
  .tl-bottom-inner { font-size: 0.66rem; width: 110px; }

    .subnav-content {
    justify-content: center;
    padding: 0 15px;
    gap: 6px;
    display: none;
  }
.approach-subnav{
  display: none;
}
  .sub-link {
    font-size: 14px;
    padding: 0 8px;
  }

  .approach-link::after {
    display: none;
  }
  .director-img {
  border: none !important;
}

/* Team card */
.team-img {
    width: 100% !important;
   
}
.corporate-ph {
    margin-top: 20px !important;
}
}


   @media (max-width: 640px) {
      .investments-grid  { grid-template-columns: 1fr !important; }
      .page-heading-bar  { padding: 14px 20px !important; }
     
    }

    @media (max-width: 576px) {
  .logo-img {
    height: 32px;
    margin-left: 12px;
  }
   .divider {
   margin: 25px 0px 25px 0px !important;
   
  }
  .investments-grid {
        grid-template-columns: 1fr !important;
    }
}

   @media (max-width: 575px) {
      .heading-line { max-width: 28px !important; }
      .overview-section { padding: 40px 14px 30px !important; }

      .heading-title {
    font-size: 1.5rem !important;
    font-family: "Lucida Sans";
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    margin: 0;
    }
.investments-grid {
        grid-template-columns: 1fr !important;
    }
   .cv-circle {
    position: absolute;
    width: 200px !important;
    height: 200px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    mix-blend-mode: multiply;
    padding: 20px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    cursor: default;
    border: 5px solid #eeee;
}

.c1 {
    left: 20px !important;
    top: 7px !important;
    z-index: 1 !important;
}

.c5 {
    left: 494px !important;
    top: 7px !important;
    z-index: 1 !important;
}
.c2 {
    left: 140px !important;
    top: -120px !important;
    z-index: 2;
}
.c4 {
    left: 376px !important;
    top: -120px !important;
    z-index: 2;
}
   .heading-line { max-width: 28px; }
      .core-values-section { padding: 40px 14px 10px !important; }
      .circles-container::before { padding-top: 70%; }


       .hero-bg    { padding-top: 60% !important; }
      .hero-quote { bottom: 44px !important; }
      .thumb-item { width: 82px !important; height: 54px !important; }

    .hero-quote p {
    font-size: 1.3625rem ;
    color: #ffffff;
    line-height: 1.5;
    font-family: "Lucida Sans";
    font-style: normal ;
    font-weight: 400 ;
    line-height: var(--line-height-40, 1.5rem);
    letter-spacing: -0.125rem ;
}
 
.caption-bar p {
    letter-spacing: 0.2px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-family: "Lucida Sans"  !important;
}
 .divider {
   margin: 25px 0px 25px 0px !important;
   
  }
    }

    @media (max-width: 480px) {
      .hero-bg    { padding-top: 75% !important; }
      .hero-quote { bottom: 20px !important; padding: 0 5px !important; }
      .thumb-item { width: 64px !important; height: 44px !important; }
      .brand-item   { width: 110px !important; padding: 0 10px !important; }
      .heading-line { max-width: 114px !important; }
      .brands-section { padding: 28px 0 32px !important; }
       .logo-wrap img {
    max-height: 48px !important;
    max-width: 100px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.team-header {
    margin: 0 10px !important;
}

.section-title {
    font-weight: 600;
    text-align: center; }
 .divider {
   margin: 25px 0px 25px 0px !important;
   
  }
    }

 
/* MOBILE ONLY */
@media (max-width: 991px) {

  .submenu-mobile {
    list-style: none;
    padding-left: 15px;
    display: none;
  }

  .submenu-mobile li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    position: relative;
  }

  /* SHOW */
  .has-submenu.active .submenu-mobile {
    display: block;
  }

  /* Arrow */
  .submenu-toggle {
    position: relative; 
  } 
   

    .submenu-toggle::after {
        content: "›";
        position: absolute;
        right: 10px;
        transition: 0.3s;
        display: inline-block;
        top: 12px;
        color: black;
        font-size: 40px;
        left: auto;
        border: 0;
        bottom: auto;
        transform: rotate(0deg);
    }

  .has-submenu.active .submenu-toggle::after {
    transform: rotate(90deg) !important;
  }

}

/* DESKTOP CLEAN RESET */
@media (min-width: 992px) {
  .submenu-mobile {
    display: none !important;
  }

}


/* ── Mobile submenu fixes (≤ 991px) ─────────────────────────────── */
@media (max-width: 991px) {

  /* Hide desktop mega-menu completely on mobile by default */
  .nav-item.has-mega .mega-menu {
    display: block !important;
    position: static !important;
    width: 100% !important;
    transform: none !important;
    pointer-events: auto !important;
    background: #9a8c5a;
    overflow: hidden;
    max-height: 0;                  /* collapsed */
    transition: max-height 0.3s ease;
    margin: 0 !important;
    padding: 0px;
  }

  /* When JS adds .mobile-open, the maxHeight is set inline via JS */
  /* (no extra rule needed — JS handles it) */

  /* Stack sub-links vertically */
  .mega-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    height: auto !important;
    padding: 4px 0 !important;
    margin-left: 0 !important;
    gap: 0 !important;
    justify-content: flex-start !important;
  }


  
  .mega-menu a {
    width: 100%;
    padding: 10px 24px !important;
    height: auto !important;
    line-height: 1.4 !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .mega-menu a:last-child { border-bottom: none; }

  /* Hide the separator pipe on mobile */
  .mega-sep { display: none !important; }

  /* Hide the desktop CSS arrow (::after triangle) on mobile */
  li.nav-item.has-mega:after { display: none !important; }

  /* ── Arrow indicator on the "Our Approach" row ── */
  .mobile-arrow {
    float: right;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 8px;
            display: block !important;
  }

  /* Rotate arrow to point down when open */
  .nav-item.has-mega.mobile-open .mobile-arrow {
    transform: rotate(90deg);
  }

  /* "Our Approach" link styling — muted/gold like screenshot */
  /* .nav-item.has-mega .nav-link {
    color: #8c7d4a !important;      
  }
} */


/* smooth //////////////////////////////// */

/* ── SMOOTH MOBILE MENU ANIMATION ─────────────────────────────── */
@media (max-width: 991px) {

  #navbarNav {
    overflow: hidden !important;
    max-height: 0 !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
    display: block !important;
    visibility: visible !important;
    padding: 0 !important;            /* ← FIX: no padding when closed */
  }

  #navbarNav.show {
    max-height: 600px !important;
    padding: 10px !important;         /* ← padding only when open */
  }

  /* Smooth fade + slide for each nav item */
  #navbarNav .nav-item {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #navbarNav.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger each item */
  #navbarNav.show .nav-item:nth-child(1) { transition-delay: 0.05s; }
  #navbarNav.show .nav-item:nth-child(2) { transition-delay: 0.10s; }
  #navbarNav.show .nav-item:nth-child(3) { transition-delay: 0.15s; }
  #navbarNav.show .nav-item:nth-child(4) { transition-delay: 0.20s; }
  #navbarNav.show .nav-item:nth-child(5) { transition-delay: 0.25s; }

  /* Remove background color from closed state too */
  .mobile-menu {
    background-color: transparent;
    padding: 0 !important;
  }

  .mobile-menu.show {
    background-color: #C4BA9A;
    padding: 10px !important;
  }


  li.nav-item.has-mega.active:after {
    display: none !important;
}

} 
}





