* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

/* html {
  scroll-behavior: smooth;
} */

section {
  scroll-margin-top: 92px;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #EAF2FB;
  color: #EAF2FB;
  text-align: center;
}


/* ------- PROFILE DROPDOWN CONTAINER AFTER LOGGED IN------ */
.profile-dropdown {
  position: relative;
}

.header-profile-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border:1.5px solid #fff;
  object-fit: cover; 
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 60px;
  width: 280px;
  background:  #fff;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  padding: 18px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-header {
  text-align: center;
}

.dropdown-profile-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border:1.5px solid #dbe5f0;
  object-fit: cover; 
  margin-bottom: 10px;
}

.dropdown-name {
  font-weight: 600;
  font-size: 20px;
  color: #2c2c2c;
}

.dropdown-divider {
  height: 1.4px;
  background: #c5c5c5;
  margin: 15px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 4px;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  color: #161616;
  font-size: 15px;
  transition: all 0.3s ease;
}

.dropdown-item span{
  transform: translateX(0); 
  transition: color 0.3s ease;
}

.menu-icon {
  width: 28px;
  height: 28px;
  background: #e0e0e0;
  padding: 4px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.arrow {
  font-size: 20px;
  margin-left: auto;
  color: #4b4b4b;
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  transform: translateX(4px);
  font-weight: 600;
}

.dropdown-item:hover .menu-icon {
  transform: scale(1.1);
}

.dropdown-item:hover .arrow {
  transform: translateX(4px);
}



/* ------ Main Header styles ------ */
.header-nav{
    display:flex;
    position: sticky;
    align-items:center;
    gap:32px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:32px;
}

.header-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}


/* -- Services drop-down menu -- */
.services-dropdown{
    position: relative;
}

.services-btn{
    text-decoration: none;
    color: lightgrey;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease;
}

.services-btn:hover{
    color: #fff
}

.services-menu{
    position: absolute;
    top: 40px;
    left: 0;
    background: #EAF2FB;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.481);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 200px;
    padding: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: all 0.25s ease;
}

/* SHOW DROPDOWN */
.services-menu.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.services-menu a{
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    color: #1f2937;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.services-menu a:hover{
    background: #f3f7fd;
    color: #0b63ce;
    transform: translateX(4px);
}



/* -- Header links after logged in margin -- */
.header-nav ul.logged-in {
  margin-left: 40rem;
}



ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

li a {
  color: lightgray;
}

header nav ul li a:hover {
  text-decoration: underline;
  text-decoration-color:#fff;
  text-underline-offset: 10px;
  color: #fff
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 10px 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #071D2B;
}


/* -- LEFT HAMBURGER MENU -- */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px; 
  cursor: pointer;
}

.left-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.left-hamburger span {
  width: 22px;
  height: 2px;
  background: #EAF2FB;
  border-radius: 2px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -380px;
  width: 360px;
  height: 100vh;
  background-color: #071D2B;
  color: #EAF2FB;
  padding: 30px;
  transition: left 0.5s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;

  overflow-y: auto;       
  -webkit-overflow-scrolling: touch;
}

.side-menu.active {
  left: 0;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.side-menu-header i {
  font-size: 22px;
  cursor: pointer;
}

.side-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.side-menu-links a {
  font-size: 18px;
  font-weight: 400;
  color: lightgray;
  transition: color 0.3s ease;
  text-align: left;
  display: block;
}

.side-menu-links a:hover {
  color: #EAF2FB;
  text-decoration: underline;
  text-underline-offset: 8px;
}

a.menu-cta,
a.menu-cta:hover {
  text-decoration: none !important;
}

.menu-cta {
  margin-top: 10px;
  display: inline-block;
  background: linear-gradient(
    93.38deg,
    #1E6BFF 0%, #26a1fe 100%
  );
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 16px !important;
  width: fit-content;
  color: #EAF2FB !important;
  text-decoration: none; 
}

.menu-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(34, 81, 255, 0.35);
  color: #EAF2FB !important; 
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;

}

.mobile-home {
  display: none;
}

.desktop-home {
  display: inline-block;
}

/* -- left side menu end -- */


.header-logo {
  width: 150px;
  height: auto;
}

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

.header-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-button {
  background: linear-gradient(
    93.38deg,
    #1E6BFF 0%, #26a1fe 100%
  );
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(34, 81, 255, 0.35);
}

.btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
  display: inline-block;
}

/* Sign In (outlined button) */
.signin-btn {
  border: 1px solid lightgray;
  color: lightgrey;
}

.signin-btn:hover {
  background-color: #fff;
  color: #071D2B;
}

/* --------- Header end ---------- */



/* ------ chat icon ------ */
.chat-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000; 
}

.chat-tooltip {
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.chat-tooltip::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 60%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #EAF2FB transparent transparent transparent;
}

.chat-toggle {
    position: relative;
    width: 70px;       
    height: 70px;
    background: linear-gradient(145deg, #4d8cff, #0045ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 40px;
    color: #fff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 
                0 4px 6px rgba(0, 0, 0, 0.15) inset;

    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.chat-toggle:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2),
                0 3px 5px rgba(0,0,0,0.1) inset;
}

.chat-toggle::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    top: -10%;
    left: -10%;
    background: rgba(43, 124, 255, 0.25);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.chat-container {
    position: fixed;
    padding-bottom: 5px;
    bottom: 100px;
    right: 40px;
    width: 360px;
    height: 520px;
    background: #EAF2FB;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
    text-align: left;

    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9998;
}

.chat-container.active {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;               
}

.chat-header {
    background: linear-gradient(to right, #3c7bff, #1e4ed8);
    color: #EAF2FB;
    padding: 18px 18px 18px 25px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    background: #EAF2FB;

    display: flex;
    flex-direction: column;
}

.message {
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 75%;
    word-wrap: break-word;
    display: inline-block;
}

.user-message {
    background: #2b7cff;
    margin-top: 5px;
    color: #EAF2FB;
    align-self: flex-end;
}

.bot-message {
    background: #e1e1e1;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    max-width: 85%;
}

.chat-option {
    display: block;
    background: #fff;
    padding: 14px;
    font-size: 13px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 3px 9px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, background 0.2s ease;
}

.chat-option:hover {
    background: #f0f4ff;
    transform: translateY(2px);
}

.chat-footer {
    padding: 10px;
    background: #EAF2FB;
    border-top: 1px solid #eee;
}

.input-area {
    display: flex;
    gap: 8px;
    background: #EAF2FB;
}

.input-area input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid transparent;
    outline: none;
    background: white;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input-area input:focus {
    border-color: #2b7cff;
    box-shadow: 0 0 4px rgba(43, 124, 255, 0.25);
}

.input-area button:focus {
    outline: none;
    box-shadow: none;
}

.input-area button {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: #2b7cff;
    color: #EAF2FB;
    cursor: pointer;
    transition: 0.3s;
}

.input-area button:hover {
    background: #1e4ed8;
}

.hidden {
    display: none !important;
}



/* --------- Hero section -------- */
.hero {
  width: 100vw;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f5fa9;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark overlay to match background */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 30, 60, 0.401),
    rgba(15, 30, 60, 0.685)
  );
  z-index: 1;
}

/* Content stays on top */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: left;
  padding: 40px 2rem;
  color: #EAF2FB;
}


.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
  color: #EAF2FB;
}

.highlights {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  background: rgb(41, 20, 48);
  padding: 18px;
  border-radius: 6px;
  border: none;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: visible;
}

.highlights::before {
  display: none;
}

.highlight-background {
  width: 95%;
  height: 40px;
  background: linear-gradient(
    90deg,
    rgba(137, 107, 255, 0.4) 13.5%,
    rgba(255, 159, 90, 0.4) 52.71%,
    rgba(255, 61, 61, 0.4) 84.23%
  );
  margin: -32px auto 0;
  border-radius: 10px;
  opacity: 1;
}

.highlights > * {
  position: relative;
  z-index: 2;
}

.highlight-box {
  background: transparent;
  border: none;
  border-radius: 12px;
  min-width: 120px;
  text-align: left;
  backdrop-filter: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: space-between;
  justify-content: flex-start;
  gap: 6px;
  position: relative;
}

.highlight-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -23px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.highlight-box:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.highlight-icon {
  font-size: 40px;
  color: #9026c5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(144, 38, 197, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.highlight-percentage {
  font-size: 14px;
  font-weight: 700;
  color: #EAF2FB;
}

.highlight-label {
  font-size: 10px;
  font-weight: 400;
  color: #b0b0b0;
}


/* ------Case Studies Section ------*/
.case-studies{
  width: 100%;
  padding: 1rem 0 3rem 0;
  background: transparent;
  text-align: center;
}

.case-studies-content {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.case-studies-content h2 {
  font-size: 2.2rem;
  color: #000;
  font-weight: 600;
  margin-top: 1rem;
}

.case-studies-content p {
  color: #000;
  margin-top: 15px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.case-grid {
  max-width: 1380px;
  margin: 40px auto;
  padding: 0 26px 16px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  /* All cards same height */
  grid-auto-rows: 440px;

  gap: 8px;
}

.case-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  isolation: isolate;

  background-size: cover;
  background-position: center;

  display: block;
  color: #000;
  text-decoration: none;

  cursor: pointer;

  height: 100%;
}

/* Vertical stagger: shift 2nd and 4th columns down */
.case-grid > .case-card:nth-child(4n + 2) {
  transform: translateY(40px);
}

.case-grid > .case-card:nth-child(4n + 4) {
  transform: translateY(40px);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.case-base {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.642); 
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px); 
  border-radius: 1rem;
  padding: 16px;
  margin: 1rem;

  color: #fff;
  z-index: 2;

  transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-card:hover .case-base {
  opacity: 0;
  transform: translateY(-30px); 
}

.case-base h3 {
  font-size: 1.45rem;
  color: #000;
  font-weight: 300;    
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  text-align: left;
  line-height: 1.5;       
  letter-spacing: 0.03em;   
  margin: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  display: box; 
  line-clamp: 3;

  overflow: hidden;
}

.case-hover {
  position: absolute;
  inset: 0;

  /* Transparent white with blur */
  background: rgba(255, 255, 255, 0.642); /* less opaque */
  backdrop-filter: blur(8px); /* adjust blur intensity */
  -webkit-backdrop-filter: blur(8px); /* Safari support */

  color: #000;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  opacity: 0;
  pointer-events: none;

  /* Start from bottom for slide-up effect */
  transform: translateY(30%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 5;
}

.case-card:hover .case-hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.case-hover h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  margin: 0 0 10px 0;
}

.case-hover p {
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.4;
  margin: 0;
}

.learn-more {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(93.38deg, #1E6BFF 0%, #26a1fe 100%);
  color: #EAF2FB;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;

  margin-left: auto;
}

.learn-more:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(34, 81, 255, 0.35);
}

.case-card:hover .case-hover {
  opacity: 1;
  pointer-events: auto;
}

.case-card:hover .case-base {
  opacity: 0;
}

.case-tag {
  position: absolute;
  top: 16px;
  left: 16px;

  background: rgba(0, 0, 0, 0.81);
  backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.775);

  font-size: 0.75rem;
  font-weight: 600;

  color: #EAF2FB;
  z-index: 3;
}


/*----- Contact Us section -----*/
.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9rem 4rem 9rem;
  gap: 5rem;
}

/* Left Content */
.contact-left {
  max-width: 520px;
  color: #04001c;
  margin-left: 7rem;
  text-align: left;
}

.contact-left h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #04001c;
}

.contact-left ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.contact-left li {
  position: relative;
  color:#04001c;
  padding-left: 1.5rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-left li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(15, 119, 255, 1);
  font-size: 1.5rem;
  line-height: 1;
}

/* Right card */
.contact-card {
  position: relative;
  width: 520px;
  margin-right: 6rem;
  flex-shrink: 0;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 40%;
  width: 350px;
  height: 250px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0; 
  filter: blur(90px); 
  opacity: 0.5;
}

.back{
  position: absolute;
  top: 50%;
  left: 60%;
  border-radius: 1rem;
  transform: translate(-50% ,-50%);
  position: absolute;
  color: #110b0b;
}

.front{
  border: 1px solid rgb(123, 186, 237);
  width: 380px;
  height: 480px;
  background-color: rgb(255, 255, 255);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  .ready{
    font-size: 1.3rem;
    padding: 0.5rem;
    font-weight: 600;
  }
  .see-how{
    color: rgba(44, 48, 62, 1);
    font-weight: 500;
    font-size: 0.8rem;
  }
}

.form{
  width: 100%;
  text-align: left;
  padding: 1rem;

}

.form label{
  color: rgba(54, 57, 74, 1);
  font-size: 0.75rem;
  font-weight: 600;
}
form input::placeholder{
  font-size: 0.7rem;
  color: rgba(155, 173, 188, 1);
}

form textarea::placeholder{
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: rgba(155, 173, 188, 1);
}

form input , textarea{
  padding: 0.5rem 0.3rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(155, 173, 188, 1);
  width: 100%;
  resize: none;
  box-sizing: border-box;
}

form button{
  width: 100%;
  background-color: rgba(15, 119, 255, 1);
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  color: #EAF2FB;
  font-weight: 500;
  font-family: poppins;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form button:hover {
  transform: scale(1.01);
  box-shadow: 0 5px 20px rgba(34, 81, 255, 0.35);
}

.terms , .privacy{
  font-size: 0.8rem;
  color: rgba(123, 139, 153, 1);
  a{
    color: rgba(18, 126, 227, 1);
  }
}



/* ------ Impact We Deliver Section ------*/
.wwd-section.impact {
  width: 100%;
  padding: 2rem 1rem 2.5rem;
  background: #1f5fa9;
}

.wwd-section.impact h2 {
  color: #EAF2FB;
  font-size: 1.8rem;
}

.wwd-section.impact p.dis {
  color: #EAF2FB;
  font-size: 1rem;
  margin-bottom: 15px;
  margin-top: 15px;
}

.what-we-do-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(8, 1fr);
  padding: 1rem;
  align-items: stretch;
  margin-left: 4rem;
  margin-right: 4rem;
  gap: 1rem;
  height: 100%;
}

.do-grid {
  border: 1px solid #EAF2FB1f;
  border-radius: 0.5rem;
  padding: 1rem;
}

.do-grid:hover {
  box-shadow: 0 6px 28px rgba(137, 107, 255, 0.15);
  border-color: #1f5fa9;
}

.do-grid.impact-grid {
  background-color: #EAF2FB;
  border-radius: 3px;
}

.impact-grid {
  height: 100%;
  text-align: left;
}

#item-0 {
  grid-row: 1 / 4;
  grid-column: 1 / 3;
}

#item-1 {
  grid-row: 1 / 4;
  grid-column: 3 / 5;
}

#item-2 {
  grid-row: 1 / 4;
  grid-column: 5 / 7;
}

#item-3 {
  grid-row: 1 / 4;
  grid-column: 7 / 9;
}

.impact-head {
  font-size: 2rem;
  color: #1f5fa9;
  font-weight: bold;
}

.impact-title {
  margin-bottom: 3rem;
  color: #00A9F4;
}

.impact-desc {
  color: #000;
}




/* ----- what we do section ----- */
.what-we-do {
  padding: 30px 40px 60px;
  text-align: center;
}

.what-we-do h2 {
  font-size: 1.8rem;
  font-weight: 650;
  margin-bottom: 10px;
  color: #000;
}

.subtitle {
  margin-bottom: 50px;
  color: #000;
}

/*LEFT LAYOUT */
.wwd-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8rem;
    width:100%;
}

.wwd-left{
    display:flex;
    justify-content:center;
    align-items:center;
}

.wwd-wrapper{
    width:510px;
    height:510px;
    background:#dcdcdc;
    border-radius:50%;
    position:relative;
}

/* circular connector ring */
.ring{
  position:absolute;
  width:360px;
  height:360px;
  border:6px solid white;
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.3));

  box-shadow:
      0 6px 12px rgba(0,0,0,0.25);
}

/* lines connecting to center */
.line{
  position:absolute;
  width:6px;
  height:180px;
  background:white;
  top:50%;
  left:50%;
  transform-origin:top;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.3));

  box-shadow:
    0 4px 6px rgba(0,0,0,0.25),
    inset 0 1px 2px rgba(255,255,255,0.6);
}

/* center circle */
.center{
  position:absolute;
  width:160px;
  height:160px;
  background:#1f3a63;
  color:#ffd400;
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  display:flex;
  border: 4px solid white;

  justify-content:center;
  cursor: pointer;
  align-items:center;
  text-align:center;
  font-weight:bold;
  padding:10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.center:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* outer circles */
.circle{
    position:absolute;
    width:140px;
    height:140px;
    background:#1f3a63;
    border-radius:50%;
    border: 4px solid white;
    color:#ffd400;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-size:13px;
    font-weight:bold;
    padding:10px;
    cursor:pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;

    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.circle.active,
.center.active{
  background:#ffd400;
  color:#1f3a63;
}

/* default positions */
.top{
  top:-20px;
  left:50%;
  transform: translateX(-50%);
}

.bottom{
  bottom:-20px;
  left:50%;
  transform: translateX(-50%);
}

.circle:hover{
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

.top:hover,
.bottom:hover{
  transform: translateX(-50%) scale(1.06);
}

.top-right:hover,
.bottom-right:hover,
.top-left:hover,
.bottom-left:hover{
    transform: scale(1.06);
}

/* positions */
.top-right{ top:80px; right:5px; }
.bottom-right{ bottom:80px; right:5px; }
.bottom-left{ bottom:80px; left:5px; }
.top-left{ top:80px; left:5px; }


/* connector line rotations */
.l1{ transform:rotate(0deg); }
.l2{ transform:rotate(60deg); }
.l3{ transform:rotate(120deg); }
.l4{ transform:rotate(180deg); }
.l5{ transform:rotate(240deg); }
.l6{ transform:rotate(300deg); }

/* INFO PANEL */
.info-panel {
  width: 440px;
  padding: 45px;
  background: #1f3a63;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.info-panel h3 {
  margin: 0 0 12px;
  color: #fff;
}

.info-panel ul {
  margin-top: 16px;
  padding-left: 20px;
  line-height: 1.6;
  list-style: disc;
  padding-left: 20px;
}

.info-panel li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #EAF2FB;
  list-style: disc;
  list-style-position: outside;
}

.info-button {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 14px;
  border: 1px solid #EAF2FB;
  color: #EAF2FB;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.25s, color 0.25s;
}

.info-button:hover {
  background-color: #EAF2FB;
  color: #1f5fa9;
}

#info-button{
  display:none;
}


/* ---------- what-makes-us Thrives Section ---------- */
.thrives-section {
  width: 100%;
  padding: 40px 0 40px 0;
  background: transparent;
  background-color:#1f5fa9 ;
  text-align: center;
}

.thrives-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.thrives-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #EAF2FB;
  position: relative;
}

.thrive-card:hover {
  background-color: #EAF2FB;
  border-color: #EAF2FB;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Change text colors on hover */
.thrive-card:hover .thrive-text h3,
.thrive-card:hover .thrive-text p {
  color: #000000;
}


.thrives-content p {
  color: #EAF2FB;
  margin-top: 10px;
  font-size: 1rem;
  margin-bottom: 30px;
}

.thrive-grid {
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
}

.thrive-card {
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  flex: 1 1 250px;
  padding: 0px 0px 24px 0px;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.thrive-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.thrive-card:hover {
  background-color: #EAF2FB;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transform: translate(2px, 2px); /* right + down */
}

/* Text color on hover */
.thrive-card:hover .thrive-text h3,
.thrive-card:hover .thrive-text p {
  color: #000000;
}

.thrive-image {
  width: 100%;
  min-height: 200px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thrive-image img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.thrive-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #EAF2FB;
  margin-bottom: 8px;
  text-align: left;
  padding: 0 20px;
}

.thrive-text p {
  color: #EAF2FB;
  font-size: 0.95rem;
  margin: 0;
  text-align: left;
  padding: 0 20px;
}




/* ---- Testimonials Section ---- */
.testimonial{
   margin: 4rem 6rem 4rem;
   border-radius: 0.50rem;
   padding: 4rem 6rem;
   background: #1F5FA9;
   display: grid;
   grid-template-columns: 40% 60%;
   gap: 3rem;
   align-items: center;
   text-align: left;
   margin-bottom: 1rem;
 }
 
 .clients-say{
   font-size: 2.5rem;
   font-weight: 600;
   line-height: 1.2;
 }

  .description-text {
    color: rgb(232, 228, 228);
    margin-top: 15px;
  }

 .client-review{
   background-color: #EAF2FB;
   color: #000;
   border-radius: 1rem;
   padding: 4rem 3rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .client-profile{
   display: flex;
   justify-content: flex-start;
   align-items: center;
   gap: 1rem;
 }
 
.profile-pic {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #e0e3e8;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);  
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
 
 .client-details{
   display: flex;
   flex-direction: column;
   width:60%;
 }
 
 .name , .review , .where-at{
   color:rgba(34, 41, 46, 0.61);
   text-align: justify;
   
 }
 
 .profession{
   color: #000;
   font-weight: 550;
 }
 
 .review-guide{
   display: flex;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .left-right{
   gap: 2em;
   display: flex;
 }
 
 .left-right i {
  color: #1f5fa9;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer;
  }

.left-right i:hover {
  color: #1e3a8a;
  transform: scale(1.15);
}


.reviews {
  min-height: 80px;
  display: flex;
  align-items: center;
}

.review {
  transition: opacity 0.3s ease;
  color: #373737;
}
 



/* ---- Footer Section ---- */
.footer {
  padding: 40px 0px 30px;
  color: #000;
  background-color: #EAF2FB;
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 40px;
}

.footer-nav {
  display: flex;
  gap: 120px;
  font-size: 16px;
  line-height: 1.5;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #000;
  text-align: left;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #1f5fa9;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.footer-subscribe {
  max-width: 340px;
  font-size: 16px;
  text-align: left;
}

.footer-subscribe strong {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-subscribe p {
  margin: 0 0 16px;
  color: #000;
}

.footer-subscribe form {
  display: flex;
  gap: 12px;
}

.footer-subscribe input[type="email"] {
  flex: 1;
  height: 40px;
  margin-top: 16px;
  padding: 0 18px;
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 4px;
  outline: none;
}

.footer-subscribe input:focus-visible {
  border-color: #1f5fa9;
  box-shadow: #7893f7 0 0 0 2px;
}

.footer-subscribe button {
  height: 40px;
  width: 100px;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(
    93.38deg,
    #1E6BFF 0%, #249ffd 100%

  );
  color: #EAF2FB;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-subscribe button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(34, 81, 255, 0.35);
}

/* Divider */
.footer-divider {
  border-top: 1px solid #000;
  max-width: 1200px;
  margin: 0 auto 30px;
}

/* Bottom rows */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #000;
  color: #EAF2FB;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  background-color: #1f5fa9;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}


/* Footer links */
.footer-links {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 65px;
  row-gap: 10px;

  justify-content: end;
  justify-items: start;

  font-weight: 700;
  font-size: 14px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

/* Stack last two links on the left column */
.footer-links a:nth-child(3),
.footer-links a:nth-child(4) {
  grid-column: 1;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #1f5fa9;
  text-decoration-line: underline;
  text-underline-offset: 6px;

}

/* Lower footer text */
.footer-lower {
  margin: 20px auto 0;
  font-size: 14px;
  color: #000;
  text-align: center;
}


/* ---------- Other sections css --------- */

/* ----- Trusted Companies Section ----- */
.industries-section {
  text-align: center;
  padding: 4px 20px 40px;
  background-color: #1f5fa9;
}

/* BACK BUTTON */
.industries-back-btn{
  margin: 0.8rem 0 0 0.6rem;
  font-size: 1.5rem;
  border:none;
  background:transparent;
  color:#EAF2FB;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.industries-back-btn:hover{
  color: #ffffff;
  transform: translateX(-4px);
}

.industries-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.industries-section .subtitle {
  color: #EAF2FB;
  margin-top: 20px;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.industry-item {
  text-align: center;
}

.industry-item i {
  font-size: 80px;
  margin-bottom: 12px;
  padding: 1rem;
  color: #EAF2FB;
}

.industry-item p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}



/* ------ Insights Section ------*/
.insights-section {
  width: 100%;
  padding: 0 0 40px 0;
  background: transparent;
  text-align: center;
}

/* BACK BUTTON */
.insights-back-btn{
  margin: 0.8rem 0 0 1.6rem;
  font-size: 1.5rem;
  border:none;
  background:transparent;
  color:#000;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.insights-back-btn:hover{
  color: #db761e;
  transform: translateX(-4px);
}

.insights-section h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

.insights-section .insight-des {
  font-size: 1rem;
  color: #000;
  margin-bottom: 10px;
}

.insights-section p {
  color: #EAF2FB;
  margin-top: 15px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.insight img,
.insight-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;

  padding: 0;          
  border-radius: 50%;      
  margin-bottom: 0.5rem;
}

.parent {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  text-align: left;
  margin: 0 auto;
  padding: 2rem 6rem;
  gap: 1rem;
  }

  .parent .insight {
    background-color: #1f5fa9;
    border-radius: 0.5rem;
    padding:  2rem 1.5rem;
    text-align: justify;
  }
  
  .one { grid-area: 1 / 1 / 5 / 5; }
  .two { grid-area: 1 / 5 / 5 / 10; }
  .three { grid-area: 5 / 1 / 7 / 4; }
  .four { grid-area: 5 / 4 / 7 / 7; }
  .five { grid-area: 5 / 7 / 7 / 10; }



/* ------- FAQ ------- */
.faqs{
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 3rem 12rem;
  gap: 0;
  position: relative;
}

/* back button */
.faq-back-btn{
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: 0.3s;
}

.faq-back-btn:hover{
  transform: translateX(-4px);
  color:rgb(255, 128, 0);
}

.left-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.faq-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.faq-head i,
.faq-head p {
  font-size: 0.7rem;
  color: #000;
}

.faq-body p {
  font-size: 2rem;
  color: #000;
  text-align: left;
  font-weight: 600;
  line-height: 2.5rem;
}

.box {
  border-top: 1px solid #1F5FA9;
  padding: 1.5rem 1rem;
}

.box:last-child {
  border-bottom: 1px solid #1F5FA9;
}

.question {
  display: flex;
  color: #000;
  justify-content: space-between; 
  align-items: flex-start;        
  gap: 1rem;
}

.question h3 {
  margin: 0;                       
  text-align: left;                
}

.box i {
  color: #1f5fa9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.answer p {
  font-size: 0.95rem;
  line-height: 1.6rem;
  color: #071D2B;
  opacity: 0.85;
  margin-top: 6px;
}

.answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
  text-align: left; 
}

.box.active .answer {
  opacity: 0.85;
}

.box.active i {
  transform: rotate(45deg);
}


/* ----- About us section ----- */
.about-us {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem;
  background-color:#1f5fa9;
}

.about-us-box {
  background-color:#EAF2FB;
  border-radius: 0.50rem;
  padding: 3rem 3rem;
  max-width: 1330px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-us-content {
  text-align: center;
}

.about-us h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #000;
}

.about-us-layout {
  display: grid;
  grid-template-columns: 325px 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  align-items: start;
}

/* Image */
.about-us-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* Top text sits to the right of the image */
.about-us-text-top {
  text-align: justify;
  color: #000;
}

/* Bottom text spans full width */
.about-us-text-bottom {
  grid-column: 1 / -1;
  color: #000;
  text-align: justify;
}

/* Back Button */
.about-back-container {
  margin-top: 1.5rem;
  text-align: left;
}

.about-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background-color: #1f5fa9;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-back-btn:hover {
  background-color: #174a84;
  transform: translateY(2px);
}


/* ---------- Terms of Use Section ---------- */
.terms-of-use-section {
  padding: 0 20px;
  margin-top: 0;
}

.terms-container {
  max-width: 1200px;
  background-color: #EAF2FB;
  box-shadow: 0 6px 8px rgba(0,0,0,0.1);
  margin:2rem auto;
  padding: 30px 50px;
  text-align: left;
}

/* Headings */
.terms-container h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  color: #000;
}

.terms-container h2 {
  font-size: 1.4rem;
  margin-top: 25px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3a8a;
}

/* Updated text */
.terms-container .updated {
  text-align: center;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 30px;
}

/* Paragraphs */
.terms-container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #000;
}

/* Strong emphasis */
.terms-container strong {
  color: #000;
  font-weight: 600;
}

.terms-of-use-section .button {
    display: inline-block;
    padding: 8px 16px;
    margin-top: 6px;
    background: #1f5fa9;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }

.terms-of-use-section .button:hover {
    background: #0b2a4a;
    transform: translateY(1px); 
    color: #fff;
  }




/* ---------- Privacy Policy Section ---------- */
.privacy-policy-section {
  padding: 0 20px;
  margin-top: 0;
}

.privacy-container {
  max-width: 1200px;
  background-color: #EAF2FB;
  box-shadow: 0 6px 8px rgba(0,0,0,0.1);
  margin: 2rem auto;
  padding: 30px 50px;
  text-align: left;
}

/* Headings */
.privacy-container h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  color: #000;
}

.privacy-container h2 {
  font-size: 1.4rem;
  margin-top: 25px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3a8a;
}

/* Updated text */
.privacy-container .updated {
  text-align: center;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 30px;
}

/* Paragraphs */
.privacy-container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #000;
}

/* Lists */
.privacy-container ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.privacy-container li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #000;
}

/* Strong emphasis */
.privacy-container strong {
  color: #000;
  font-weight: 600;
}

.privacy-policy-section .button {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 16px;
    background: #1f5fa9;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }

  .privacy-policy-section .button:hover {
    background: #0b2a4a;
    transform: translateY(1px); 
    color: #fff;
  }




/* ---------- Accessibility-statement --------- */
.accessibility-statement {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 3px;
    background-color: #EAF2FB;
    box-shadow: 0 6px 8px rgba(0,0,0,0.1);
  }

  .accessibility-statement h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
  }

  .accessibility-statement p {
    font-size: 1rem;
    color: #000; 
    margin-bottom: 15px;
  }

  .accessibility-statement a {
    color: #005a9c;
    text-decoration: underline;
  }

  .accessibility-statement a:hover,
  .accessibility-statement a:focus {
    color: #003fde;
    outline: none;
  }

  .accessibility-statement .button {
    display: inline-block;
    padding: 8px 16px;
    background: #1f5fa9;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }

  .accessibility-statement .button:hover {
    background: #0b2a4a;
    transform: translateY(1px); 
    color: #fff;
  }


/* ----- What we do section pages ----- */
.hc-section {
  max-width: 1300px;
  margin: 20px auto; 
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.hc-section h1 {
  color: #1f5fa9;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
}

.hc-section p {
  color: #000; 
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.hc-section h3{
  color:  #1f5fa9;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 15px;
}

.hc-section ul {
  list-style: disc;
  color: #000;
  padding-left: 25px;
  margin-bottom: 30px;
}

.hc-section ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.hc-section .button {
  display: inline-block;
  padding: 12px 25px;
  background: #1f5fa9;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hc-section .button:hover {
  background: #0b2a4a;
  transform: translateY(-2px); 
  color: #fff;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .hc-section {
    padding: 30px 30px;
    margin: 14px;
  }

  .hc-section h1 {
    font-size: 1.6rem;
  }

  .hc-section p, 
  .hc-section ul li {
    font-size: 1rem;
  }
}



/* ------- SERVICES SECTION ------ */
/* .services-section{
  max-width:1200px;
  margin:auto;
  padding:50px 20px 90px;
  text-align: left;
  background-color: #EAF2FB;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:90px;
} */

/* LEFT SIDE  */
/* .services-left h2{
  font-size:2.2rem;
  margin-bottom:20px;
  font-weight:600;
  color:#0a1222;
}

.services-left p{
  font-size:1.1rem;
  line-height:1.7;
  color:#5a6475;
  max-width:420px;
  margin-bottom:40px;
}

.services-left button{
  padding:14px 28px;
  border:1px solid #0a1222;
  background:transparent;
  color:#0a1222;
  font-size:16px;
  cursor:pointer;
  transition:all .3s ease;
  border-radius: 4px;
}

.services-left button:hover{
  background:#2b7cff;
  border: 1px solid #2b7cff;
  color:white;
  box-shadow: 0 6px 28px rgba(137, 107, 255, 0.15);

} */

/* RIGHT SIDE */
/* .services-list{
  display:flex;
  flex-direction:column;
  color: #5a6475;
}

.service-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  border-bottom: 1px solid #b4b4b4;
  font-size: 1.2rem;
  cursor:pointer;
  transition:all .3s ease;
  text-decoration: none;
  color: inherit;
}

.service-item:hover{
  color:#2b7cff;
  padding-left:8px;
}

.service-arrow{
  font-size:1.3rem;
  opacity:.6;
  padding-right: 8px;
  transition:all .3s ease;
}

.service-item:hover .service-arrow{
  color:#2b7cff;
  transform:translateX(8px);
  opacity:1;
}

.services-back-btn{
  margin:1.2rem 0 0 1.6rem;
  font-size:1.3rem;
  border:none;
  background:transparent;
  color:#000;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.services-back-btn:hover{
  color:#c86624;
  transform:translateX(-4px);
} */


/* --------- SERVICES SECTION NEW ---------- */
.services {
  text-align: left;
  position: relative;
  background:#071a4a;
  padding: 0 20px 60px;
}


#services-module .container{
  max-width:1100px;
  margin:auto;
}

#services-module .header{
  text-align:center;
  margin-bottom:40px;
}

#services-module .eyebrow{
  color:#f5a623;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
}

#services-module h1{
  font-size:2.2rem;
  font-weight:600;
}

#services-module .subtitle{
  color:rgba(255,255,255,0.7);
  margin:0 auto;
}

/* LAYOUT */
#services-module .layout{
  display:flex;
  gap:24px;
}

/* LEFT MENU */
#services-module .list{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
}

#services-module .item{
  position:relative;
  padding:16px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04);
  cursor:pointer;
  border-radius:6px;
  transition:0.25s;
}

#services-module .item:hover{
  background:rgba(255,255,255,0.08);
  transform:translateX(-4px);
}

#services-module .item.active{
  border-left:4px solid #f5a623;
  background:rgba(255,255,255,0.08);
}

#services-module .item.active::after{
  content:"";
  position:absolute;
  right:12px;
  top:50%;
  width:6px;
  height:6px;
  background:#f5a623;
  border-radius:50%;
  transform:translateY(-50%);
}

#services-module .item h4{margin-bottom:5px;}

#services-module .item p{
  font-size:14px;
  color:rgba(255,255,255,0.7);
}

/* RIGHT DETAIL */
#services-module .detail{
  flex:1.2;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:22px;
  border-radius:8px;
  min-height:320px;
  animation:fadeIn 0.3s ease;
}

#services-module .detail h3{
  margin-bottom:10px;
  font-size: 1.4rem;
  font-weight: 600;
}

#services-module .detail p{
  color:rgba(255,255,255,0.7);
  margin-bottom:12px;
}

#services-module .highlight{
  font-size:15px;
  color:#dbe6ff;
  margin-bottom:12px;
}

#services-module .detail ul{
  padding-left:20px;
  margin-bottom:12px;
}

#services-module .detail li{margin-bottom:7px;}

#services-module .outcome{
  margin-top:14px;
  padding:10px;
  background:rgba(255,255,255,0.05);
  border-left:3px solid #f5a623;
  font-size:14px;
}

.learn-btn {
  margin-top: 12px;
  background: #f5a623;
  color: #071a4a;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

.learn-btn:hover {
  background: #e6951f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.learn-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* MODAL (SCOPED) */
#serviceModal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(4px);
}

/* BOX */
#serviceModal .modal-content{
  background:#071a4a;
  margin:6% auto;
  padding:24px;
  width:90%;
  max-width:720px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.1);
  color:white;
  animation:fadeIn 0.3s ease;
}

/* HEADER */
#serviceModal .modal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

#serviceModal .modal-header h2{
  font-family:'Playfair Display';
}

#serviceModal .close{
  font-size:26px;
  cursor:pointer;
}

/* INTRO */
#serviceModal .modal-intro{
  color:rgba(255,255,255,0.7);
  margin-bottom:20px;
}

/* ACCORDION */
#serviceModal .acc-item{
  border-top:1px solid rgba(255,255,255,0.1);
}

#serviceModal .acc-title{
  padding:14px;
  cursor:pointer;
  font-weight:600;
}

#serviceModal .acc-title:hover{
  background:rgba(255,255,255,0.05);
}

/* CONTENT */
#serviceModal .acc-content{
  display:none;
  padding:0 14px 14px;
  color:rgba(255,255,255,0.75);
}

#serviceModal .acc-content ul{
  padding-left:18px;
  margin-bottom:10px;
}

#serviceModal .acc-content li{
  margin-bottom:6px;
}

/* HIGHLIGHT */
#serviceModal .highlight{
  color:#f5a623;
  font-style:italic;
  margin-top:6px;
}


/* ANIMATION */
@keyframes fadeIn{
from{opacity:0;transform:translateY(10px);}
to{opacity:1;transform:translateY(0);}
}

.services-back-btn{
  padding: 1.1rem 1rem 0 0.4rem;
  font-size:1.3rem;
  border:none;
  background: transparent;
  color:#ffff;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.services-back-btn:hover{
  color:#f5a623;
  transform:translateX(-4px);
}


/* --------- Values section ---------- */
.values-section{
  padding:10px;
  min-height: 90vh;
  background: #071a4a;
}

.values-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.values-eyebrow{
  color: #f5a623;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.values-container h1{
  font-size: 2.2rem;
  font-weight: 600;
  margin:auto;
  letter-spacing: -0.02em;
}

.values-subtitle{
  color:rgba(255,255,255,0.7);
  margin:0 auto 50px;
  font-size:16px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}

.value-card{
  background:white;
  /* background:#071a4a; */
  padding:25px 20px;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  border: #f5a623 1px solid;
  transition:all .3s ease;
}

.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.15);
}

.value-icon{
  width:100px;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px auto;
  transition: 0.3s;
}

.value-icon img{
  width:100%;
  height:auto;
}

.value-card:hover .value-icon{
  transform: scale(1.1);
}

.value-card h3{
  font-size:1rem;
  margin-bottom:15px;
  text-align: center;
  color:#0a1222;
}

.value-card p{
  font-size:14px;
  text-align: center;
  color:#666;
  line-height:1.6;
}

.values-back-btn{
  margin:1.1rem 0 0 1.5rem;
  font-size:1.3rem;
  border:none;
  background:transparent;
  color:#ffff;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.values-back-btn:hover{
  color:#f5a623;
  transform:translateX(-4px);
}


/* -------- What we bring to the table ------- */
.capabilities-section{
  padding:10px;
  min-height: 90vh;
  background: #071a4a;
}

.capabilities-container{
  margin:auto 45px;
  text-align:center;
}

/* header */
.capabilities-eyebrow{
  color: #f5a623;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.capabilities-container h1{
  font-size: 2.2rem;
  font-weight: 600;
  margin:auto;
  letter-spacing: -0.02em;
}

.capabilities-subtitle{
  color:rgba(255,255,255,0.7);
  margin-bottom: 1.4rem;
  font-size: 16px;
  font-weight: 400;
}

.capabilities-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.capability-card{
  padding:20px 20px;
  border-radius:8px;
  background:#f8fafc;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  border: #f5a623 1px solid;
  transition:all .3s ease;
}

.capability-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.capability-icon{
  width:100px;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px auto;
  transition:0.3s;
}

.capability-icon img{
  width:100%;
  height:auto;
}

.capability-card:hover .capability-icon{
  transform: scale(1.1);
}

.capability-card h3{
  font-size:1rem;
  margin-bottom:15px;
  color:#0a1222;
}

.capability-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.capabilities-back-btn{
  margin:1.1rem 0 0 1rem;
  font-size:1.3rem;
  border:none;
  background:transparent;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.capabilities-back-btn:hover{
  color:#f5a623;
  transform:translateX(-4px);
}


/* --------- how we work --------- */
.hww{
  background: #071a4a;
  position: relative;
}

.hww-container {
  padding: 2rem 3rem;
  width: 100%;
  max-width: 1360px;  
  margin: 0 auto;     
  color: #ffffff;
}

.hww-header {
  text-align: center;
  margin-bottom: 38px;
}

.eyebrow {
  color: #f5a623;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.hww-header h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin:auto;
  letter-spacing: -0.02em;
}

.hww-subtitle {
  color:rgba(255,255,255,0.7);
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
}

/* layout */
.hww-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 24px;
  align-items: start;
}

/* detail panel */
.hww-detail {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hww-detail h3 {
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.hww-detail p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin-bottom: 14px;
}

.hww-detail li {
  margin-bottom: 8px;
}

/* list */
.list {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 12px;
}

.item {
  padding: 16px 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.item.active {
  border-left: 4px solid #f5a623;
  background: rgba(255,255,255,0.08);
  padding-left: 14px;
}

/* formula */
.formula {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.hww-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 22px;
  text-align: center;
  border-radius: 6px;
}

.hww-box h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.hww-box p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}

.percent {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 8px;
}

.gold { color: #f5a623; }
.blue { color: #60a5fa; }
.red { color: #fb7185; }


.timeline-section {
  margin-top: 44px;
}

.timeline-label {
  font-size: 12px;
  color: rgba(255,255,255,0.56);;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.timeline-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1.3;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding-top: 35px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px; /* aligns with center of dots */
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.25);
  z-index: 0;
}

.hww-node {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hww-node span {
  display: block;
  margin-top: 8px;
}

.hww-node::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5a623;
  margin: 0 auto;
  position: relative;
  top: -6px;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.25);
  transition: transform 0.2s ease;
}

.hww-node span {
  color: #f5a623;
  font-size: 14px;
  font-weight: 600;
}

.hww-node.today .dot {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
}

.hww-node.today span {
  color: #4ade80;
}

.hww-node:hover .dot {
  transform: scale(1.4);
}

.hww-node p strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.hww-node p{
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  margin-top: 4px;
}

.hww-back-btn{
  position: absolute;
  top: 24px;
  left: 24px;

  font-size: 1.3rem;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  z-index: 2;
}

.hww-back-btn:hover{
  color: #c86624;
  transform: translateX(-4px);
}



/* ----- services expansion section ----- */
.services-expansion-section {
  background:#071a4a;
  color:#fff;
}

/* HEADER */
#services-expansion .header{
  text-align:center;
}

#services-expansion .header h1{
  font-size:2.2rem;
  font-weight:600;
}

#services-expansion .header p{
  margin:10px auto;
  color:rgba(255,255,255,0.7);
}

/* SECTION */
#services-expansion .container{
  max-width:1200px;
  margin:auto;
  padding:20px;
}

#services-expansion .section{
  display:flex;
  gap:50px;
  padding:50px 0;
  border-top:1px solid rgba(255,255,255,0.1);
}

/* LEFT */
#services-expansion .left{
  flex:1;
  text-align: left;
}

#services-expansion .tag{
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
}

#services-expansion .tag.blue{color:#6fa8ff;}
#services-expansion .tag.green{color:#3fd1a5;}
#services-expansion .tag.red{color:#ff5c5c;}

#services-expansion .left h2{
  margin-bottom:10px;
  font-size: 1.4rem;
  font-weight: 600;
}

#services-expansion .left p{
  color:rgba(255,255,255,0.7);
}

/* RIGHT */
#services-expansion .right{
  flex:1.5;
  text-align: left;
}

#services-expansion .right h4{
  font-size:12px;
  text-align: left;
  letter-spacing:2px;
  margin-bottom:12px;
}

#services-expansion ul{
  padding-left:20px;
}

#services-expansion li{
  margin-bottom:10px;
  color:rgba(255,255,255,0.7);
}

/* CALLOUT */
#services-expansion .callout{
  margin-top:20px;
  padding:14px;
  background:rgba(255,255,255,0.05);
  border-left:3px solid #f5a623;
}

/* INSIGHT BOX */
#services-expansion .insight{
  margin-top:25px;
  padding:20px;
  background:#0c2a6b;
  border-radius:8px;
}

#services-expansion .insight strong{
  color:#f5a623;
}

#services-expansion .stats{
  display:flex;
  gap:40px;
  margin-top:15px;
}

#services-expansion .stats div{
  display:flex;
  flex-direction:column;
}

#services-expansion .stats strong{
  font-size:24px;
  color:#f5a623;
}

.servicesexp-back-btn{
  padding: 1rem 1rem 0 1.2rem;
  font-size:1.3rem;
  border:none;
  background:transparent;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  transition:.3s;
}

.servicesexp-back-btn:hover{
  color:#f5a623;
  transform:translateX(-4px);
}