
:root
{
    --container-w: 1200px;
  --max-width: 1200px;
  --font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --mobile-break: 640px;
  --tablet-break: 900px;
  --white: #ffffff;
  --overlay-ease: cubic-bezier(.2,.9,.25,1);
  --overlay-bg-ease: cubic-bezier(.16,.84,.25,1);
  --overlay-time: 420ms;

}
*{box-sizing:border-box}
html,body{min-height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:#123;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.4;
  /* full-page 3D block pattern background (use the template image for now) */
  background-image:url("images/Background.jpg");
  background-repeat: no-repeat;
  background-size: 100% 900px;   /* width stretches, height fixed */
  background-position: top center;
  background-color: #ffffff;
}

  
  /* Base container (assuming you already have a .container rule) */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 60;
    background-color:var(--white);
    border-bottom: 1px solid rgba(13,58,115,0.06);
  }
  .nav-inner{
    display:flex;
    align-items:center;
    gap:24px;
    padding:10px 0;
    width: min(94%, var(--container-w));
    margin: 0 auto;
  }
  
  /* Brand */
  .brand{ display:flex; align-items:center; text-decoration:none; color:inherit; }
  .brand-img{
    width:248px;
    height:auto;
    object-fit:contain;
    display:block;
    border-radius:8px;
    background:transparent;
  }
  
  /* Main nav (center) */
  .main-nav{ flex:1 1 auto; display:flex; justify-content:flex-start; align-items:center; padding-left: 80px; }
  .nav-list{
    display:flex;
    gap:8px;
    list-style:none;
    padding:0;
    margin:0;
    flex-wrap: wrap; /* allow wrapping when space is tight */
  }
  .nav-link{
    display:inline-block;
    text-decoration:none;
    color:#062671;
    font-weight:600;
    padding:6px 12px;
    border-radius:4px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
  }
  .nav-link.active{
    background: #062671;
    color: white;
    font-weight: 600;
  }
  .nav-link:focus, .nav-link:hover{
    outline:none;
    background: rgba(13,58,115,0.06);
  }
  
  /* Actions (right) */
  .nav-actions{
    display:flex;
    align-items:center;
    gap:24px;
    margin-left:auto;
  }
  .nav-actions a{ text-decoration:none; display:inline-flex; align-items:center; }
  .sap-badge{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:0;
    margin:0;
  }
  
  .sap-badge img{
    height:32px;          /* Adjust based on your design reference */
    width:auto;
    object-fit:contain;
    display:block;
  }
  .cta{
    padding:6px 12px;
    background:  #f4a800;
    color:#092771;
    text-decoration:none;
    font-weight:700;
    border-radius:100px;
    font-size: 14px;
    font-weight: 600;
  }
  
  
  /* Mobile bottom nav (hidden by default) */
  .mobile-nav-row{
    display: none;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Responsive rules */
  @media (max-width: 1024px){
  .main-nav{padding-left: 30px; }
    .nav-inner{ width: min(96%, var(--container-w)); }
    .nav-list{ gap:4px; }
    .brand-img{ width:208px; height: auto; }
    .mobile-nav-row{ display: none; }
  }
  @media (max-width: 640px){
    /* width stretches, height fixed */
    /* On very small screens: collapse center nav; keep top row compact */
    .nav-inner{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between; /* distribute logo at left, actions at right */
    gap: 10px;
    padding: 8px;
    }
    .brand{ order: 1; }
    .brand-img{ width:168px; height: auto; }
    .main-nav{ display:none; } /* hide horizontal list */
    .nav-actions{ gap:14px; order: 2; margin-left: 0; }
    .sap-badge img{ height: 28px; }
    .cta{ padding:8px 12px; font-size:12px; }
    .mobile-nav-row{
        display: flex;
        gap: 4px;
        justify-content: space-around;
        align-items: center;
        padding: 12px 15px;
        flex-wrap: wrap;
        background-color: #092771;
        font-size: 12px;
      }
      .mobile-nav-link{
        text-decoration: none;
        padding: 4px 6px;
        display:inline-block;
        white-space: nowrap;
        color: #ffffff;
      }   
      
      .mobile-nav-link:active{
        color: #F2AE3E; 
        font-weight: 700;
     } 
     body{
        /* cover fills without vertical squeeze and preserves aspect ratio */
        background-size: 100% 1300px;
        background-position: top center;
      }

  }
  /* ---------------- HERO SECTION ---------------- */

.hero{
    width:100%;
    padding: 48px 0 0 0;
    box-sizing: border-box;
    color:#07203a;
    font-family: var(--font);
  }
  
  /* Desktop layout: text left, image right */
  .hero-inner{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    width: min(96%, 1200px);
    margin: 0 auto;
  }
  
  /* --- Text column --- */
  .hero-content{
    max-width: 700px;
  }
  
  .eyebrow{
    margin:0 0 12px 0;
    font-weight:600;
    font-size: 16px;
  }
  
  .hero-title{
    margin:0 0 18px 0;
    font-size: 48px;
    line-height:1.05;
    font-weight:700;
    color: var(--white);
  }
  
  .hero-sub{
    margin:0 0 26px 0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 580px;
    color: var(--white);
    opacity: 0.8;
  }
  
  .hero-ctas{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  
  /* Buttons */
  .btn{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
  }
  
  .btn-primary{
    background:#092771;
    color:white;
  }
  
  .btn-secondary{
    background:#F2AE3E;
    color:#092771;
  }
  
  /* --- IMAGE VISUAL --- */
  .hero-visual{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  .hero-img{
    display:block;
    width:546px;      /* desktop width */
    max-width:100%;   /* prevents overflow */
    border-radius:26px;
    object-fit:cover;
  }
  
  /* ---------------- MOBILE (<= 640px) ---------------- */
  
  @media (max-width: 640px){
  
    .hero{
      padding:40px 20px 20px 20px;
    }
  
    .hero-inner{
      grid-template-columns: 1fr;   /* single column */
      grid-template-rows: auto auto;
      gap: 40px;
      align-items: start;
      width: min(94%, 1000px);
      
    }
    .hero-content
    {
      grid-row: 2;                  /* text below */
    width: 100%;
    }
    .hero-title{
      font-size: 32px;
      line-height:1.15;
    }
  
    .hero-sub{
      font-size:14px;
      margin-bottom:22px;
    }
  
    .hero-ctas{ margin-bottom: 24px; }
  
    /* visual now below text */
    .hero-visual{
      grid-row: 1;                  /* image on top */
    order: -1;                    /* safe fallback for older browsers */
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    }
  
    .hero-img{
      width:430px;     /* mobile width */
      max-width:100%;
      border-radius:22px;
    }
  }
  
  /* -------------- Tablet (641px–1024px) -------------- */
  
  @media (min-width:641px) and (max-width:1024px){
  
    .hero-inner{
      grid-template-columns: 1fr 420px;
      gap: 28px;
    }
  
    .hero-title{
      font-size:40px;
    }
  
    .hero-img{
      width:420px;
    }
  }
  
/* --- Updated Core Card to match reference --- */
.core-section{
    width:100%;
    padding: 60px 0 20px;
    position: relative;
    box-sizing: border-box;
  }
  
  /* container already exists; center and constrain */
  .core-inner{
    position: relative;
    width: min(96%, 1280px);
    margin: 0 auto;
  }
  
  /* white card */
  .core-card{
    background: #fff;
    border-radius: 8px;
    padding: 42px 46px;           /* more generous padding */
    box-shadow: 0 22px 48px rgba(2,12,34,0.08);
    position: relative;
    z-index: 3;
    overflow: visible;
  }
  
  /* header split: large left title, narrow right kicker */
  .core-header{
    display: grid;
    grid-template-columns: 1fr 510px; /* left fluid, right fixed */
    gap: 28px;
    align-items: center;
    margin-bottom: 48px;
  }
  
  /* eyebrow */
  .eyebrow{
    display:block;
    color: #F1B242;
    font-weight:600;
    margin-bottom:8px;
    font-size:18px;
  }
  
  /* large title matching reference */
  .core-title{
    margin: 0 0 6px 0;
    font-size: 34px;              /* larger headline */
    line-height: 1.02;            /* tight leading like reference */
    font-weight: 600;
    color: #092771;
    letter-spacing: -0.4px;
  }
  
  /* right-side container: auto height, vertically centered content */
  .core-head-right{
    height: auto;
    display: flex;
    align-items: center;
  }
  
  /* right-side kicker: top-aligned, lighter color, slightly smaller */
  .core-kicker{
    margin: 0;
    font-size: 15px;
    color: rgba(7,32,58,0.62);
    line-height: 1.6;
    text-align: left;
  }
  
  /* FEATURES: 3 columns, each feature left aligned with boxed icon */
  .core-features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
    align-items: start;
  }
  
  /* each feature: icon box + body aligned vertically */
  .feature{
    display:flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  /* boxed icon */
  .feature-icon-box{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  /* icon inside box (svg or img) */
  .feature-icon{
    display:block;
    width:72px;
    height: 72px;
  }
  
  /* text block below icon */
  .feature-body{ width: 100%; }
  .feature-title{
    margin:0 0 6px 0;
    font-size:18px;
    font-weight:600;
    color:#092771;
  }
  .feature-desc{
    margin:0;
    font-size:14px;
    color: rgba(7,32,58,0.70);
    line-height:1.6;
  }
  
  /* ---------- Responsive: mobile stacking ---------- */
  @media (max-width: 640px){
    .core-section{ padding: 28px 0; }
  
    .core-card{
      padding: 22px;
      border-radius: 10px;
    }
  
    /* header becomes single column (title then kicker) */
    .core-header{
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 18px;
    }
    .core-title{
      font-size: 22px;
      line-height:1.08;
    }
    .core-kicker{
      font-size: 14px;
      color: rgba(7,32,58,0.7);
    }
  
    /* features stack vertically and icon boxes scale down */
    .core-features{
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .feature{
      align-items:flex-start;
      gap: 12px;
    }
    .feature-icon-box{
      width:64px;
      height:64px;
    }
    .feature-icon{ width:64px; height:64px; }
    .feature-title{ font-size:16px; }
    .feature-desc{ font-size:13px; }
  }
  
  /* Tablet intermediate */
  @media (min-width: 641px) and (max-width: 1024px){
    .core-card{ padding: 32px; }
    .core-header{ grid-template-columns: 1fr 300px; gap:18px; }
    .core-features{ gap: 20px 26px; }
    .feature-icon-box{ width:64px; height:64px; }
    .feature-icon{ width:34px; height:34px; }
  }
  /* --- Services Section (white card over blue background) --- */
.services-section{
  width: 100%;
  box-sizing: border-box;
}

.services-inner{
  width: min(96%, 1280px);
  margin: 0 auto;
  padding:60px 0px;
}

/* white card wrapper to match earlier style */
.services-inner > .services-header,
.services-inner > .services-grid {

  border-radius: 10px;
  
}

/* Header - block inside white card look */
.services-header{
  padding: 28px 32px;
  text-align: center;
}

/* Title & intro inside header */
.services-title{
  margin: 0 0 12px 0;
  font-size: 30px;
  line-height: 1.08;
  color: #092771;
  font-weight: 600;
}
.services-intro{
  margin: 0;
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 150px;
}

/* Grid wrapper — place the grid inside a white panel to match reference */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0px 40px;
}

/* Individual service card */
.service-card{
  
  border-radius: 10px;
  border: 1px solid rgba(56,72,83,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px;
}

/* Image area */
.service-media{
  width:100%;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
}
.service-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Card body */
.service-body{
  padding-top:14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  flex:1;
}
.service-name{
  margin:0;
  font-size:20px;
  color: #092771;
  font-weight:700;
}
.service-desc{
  margin:0;
  color: #6B6B6B;
  font-size:13px;
  line-height:1.6;
  flex:1;
}

/* small pill-like CTA */
.service-cta{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #092771;
  color: #092771;
  text-decoration:none;
  font-weight:600;
  font-size:12px;
  align-self:flex-start;
  background: transparent;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 18px;
  }
  .service-media{ height: 140px; }
}

@media (max-width: 640px){
  .services-section{ padding: 36px 0; }
  
  .services-inner
  {
    padding: 0px;
  }

  .services-header{
    padding: 20px;
    border-radius: 10px;
  }
  .services-title{ font-size: 20px; }
  .services-intro{ font-size: 12px; padding: 10px; }

  .services-grid{
    grid-template-columns: 1fr;
    padding: 16px;
    row-gap: 30px;
  }
  .service-media{ height: 180px; }
  .service-body{ padding: 12px; }
  .service-desc{ font-size: 14px; }
}


/* Section container */
.tech-section{
  padding: 60px 0px 0px 0px;
  display:flex;
  justify-content:center;
  align-items:flex-start;

  /* Allows scrolling on smaller screens instead of breaking the layout */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tech-inner{
  width: min(96%, 1280px);
  background: #092771;
  color: white;
  border-radius: 12px;
  padding: 60px;
}

/* Header */
.tech-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 32px auto;
}

.tech-title{
  font-size:32px;
  line-height:1.05;
  font-weight:600;
  margin:0 0 18px 0;
}

.tech-subtitle{
  margin:0 auto;
  font-size:14px;
  max-width:860px;
  opacity:0.85;
  font-weight:400;
}

/* Grid */
.tech-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top:58px;
}

/* Card */
.tech-card{
  position:relative;
  height:380px;
  overflow:hidden;
  cursor:pointer;
  transition: transform .35s var(--overlay-ease), box-shadow .25s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  outline: none;
  border-radius:6px;
}

.tech-card:focus{
  transform: translateY(-6px) scale(1.01);
}

/* Media (background image) */
.card-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter: saturate(1.02) contrast(0.96);
  transform-origin:center;
  transition: transform .45s var(--overlay-ease), filter .35s;
}

/* small number in top-left (on image) */
.card-number{
  position:absolute;
  left:16px;
  top:16px;
  z-index:4;
  font-weight:700;
  font-size:36px;
}

/* title on image bottom left */
.card-title{
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:4;
  font-weight:700;
  font-size:30px;
  
}

/* Overlay to show on hover — the yellow card 
.card-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  padding:16px;
  gap:10px;
  background: #F1B242;
  color: #092771;
  transform: translateY(12px) scale(0.98);
  opacity:0;
  border-radius:var(--card-radius);
  transition: opacity .28s var(--overlay-ease), transform .4s var(--overlay-ease);
  z-index:6;
  box-shadow: 0 10px 30px rgba(16,24,40,0.14);
  left:0px; top:0px;
}*/
.card-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  padding:16px;
  gap:14px;
  background: #F1B242;
  color: White;
  /* start below the card */
  transform: translateY(100%);
  opacity: 1; /* keep visible so the sliding BG effect is smooth; internal pieces control visible states */
  border-radius:6px;
  z-index:6;
  box-shadow: 0 10px 30px rgba(16,24,40,0.14);
  /* allow will-change for smooth anim */
  will-change: transform;
  transition: transform var(--overlay-time) var(--overlay-bg-ease), box-shadow 220ms;
  overflow: hidden;
}

/* overlay internal styling */
.overlay-number{
  font-weight:700;
  font-size:36px;
  transform: translateY(-56px);
  opacity: 0;
  transition: transform 360ms var(--overlay-ease), opacity 240ms var(--overlay-ease);
  will-change: transform, opacity;
}

.overlay-title{
  margin:0;
  font-weight:700;
  font-size:30px;
  /* slightly pushed down initially so it appears to be pushed by the paragraph */
  transform: translateY(18px);
  opacity: 0.0;
  transition: transform 380ms var(--overlay-ease), opacity 300ms var(--overlay-ease);
  will-change: transform, opacity;
}

.overlay-desc{
  margin:0;
  font-size:16px;
  line-height:1.35;
  font-weight: 500;
  opacity:0;
  transform: translateY(48px);
  transition: transform 420ms var(--overlay-ease), opacity 380ms var(--overlay-ease);
  will-change: transform, opacity;
}

/* Hover / focus state - reveal overlay, dim image slightly */
.tech-card:hover .card-overlay,
.tech-card:focus .card-overlay{
  opacity:1;
  transform: translateY(0); /* slide up into view */
}
/* Number slides down from above and becomes visible (a tiny lead to make it meet title nicely) */
.tech-card:hover .overlay-number,
.tech-card:focus .overlay-number{
  transform: translateY(65px);
  opacity: 1;
  transition-delay: 40ms; /* come slightly earlier */
  color: #092771;
}

/* Title lifts into place (slightly delayed so it looks pushed) */
.tech-card:hover .overlay-title,
.tech-card:focus .overlay-title{
  transform: translateY(50px);
  opacity: 1;
  transition-delay: 120ms;
}

/* Paragraph slides up last (gives feeling of pushing the title) */
.tech-card:hover .overlay-desc,
.tech-card:focus .overlay-desc{
  transform: translateY(40px);
  opacity: 0.95;
  transition-delay: 170ms;
}

/* Dimming and hide image text underneath while overlay animates */
.tech-card:hover .card-media,
.tech-card:focus .card-media{
  filter: blur(.8px) brightness(.82);
  transition: transform 480ms var(--overlay-ease), filter 360ms var(--overlay-ease);
}

/* Fade the small image title/number to avoid clash (but keep them present for a clean exit) */
.tech-card:hover .card-number,
.tech-card:focus .card-number,
.tech-card:hover .card-title,
.tech-card:focus .card-title{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 140ms linear, transform 280ms var(--overlay-ease);
}
/*
.tech-card:hover .card-media,
.tech-card:focus .card-media{
  transform: scale(1.06);
  filter: blur(1px) brightness(.8);
}*/

/* Hide the small white text pieces when overlay visible so content doesn't clash 
.tech-card:hover .card-title,
.tech-card:focus .card-number,
.tech-card:focus .card-title{
  opacity:0;
  transform: translateY(6px);
  transition: opacity .18s, transform .25s;
}*/


/* Make overlay more compact on smaller cards */
@media (max-width: 980px){
  .tech-inner{ padding:32px; }
  .tech-title{ font-size:28px; }
  .tech-card{ height:170px; }
}

/* Responsiveness: 2 columns on tablet */
@media (max-width: 820px){
  .tech-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Single column on mobile */
@media (max-width: 520px){
  .tech-inner{ padding:22px; border-radius:8px; }
  .tech-title{ font-size:22px; }
  .tech-grid{ grid-template-columns: repeat(1, 1fr); gap:30px; }
  .tech-card{ height:340px; }
  .card-overlay{ padding:18px; }
  .card-number{ left:10px; top:8px; font-size:16px; padding:6px 8px; }
  .tech-section{padding: 0px;}
}

:root{
  --card-w: 380px;
  --card-h: 330px;
  --gap: 22px;
  --accent: #092771;
  --muted: #6b7b93;
  --bg: #ffffff;
  --track-padding: 18px;
}

/* Layout */
.team-section{ padding:80px 0px;}
.team-inner{ width: min(96%, 1280px); margin:0 auto; }

/* Header */
.team-header{ text-align:center; margin-bottom:10px; }
.team-title{ margin: 0;
  font-size: 30px;
  line-height: 1.08;
  color: #092771;
  font-weight: 600; }

.team-sub{ margin: 0;
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 150px; }

/* Controls row */
.team-controls{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Arrow buttons */
.team-arrow{
  border:0;
  background:transparent;
  width:48px;
  height:48px;
  border-radius:8px;
  cursor:pointer;
  font-size:20px;
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
}
.team-arrow:focus{ outline:2px solid rgba(15,74,145,.12); outline-offset:2px; }

/* Viewport with horizontal scroll */
.team-viewport{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none; /* firefox */
  -ms-overflow-style:none; /* ie */
  flex: 1 1 auto;
  padding: calc(var(--track-padding) / 2) 0;
}
.team-viewport::-webkit-scrollbar{ display:none; } /* chrome/safari */

/* The horizontal track (flex row of cards) */
.team-track{
  display:flex;
  gap: var(--gap);
  padding: var(--track-padding);
  align-items:flex-start;
  /* enable scroll snapping */
  scroll-snap-type: x mandatory;
}

/* Individual card */
.team-card{
  flex: 0 0 auto;               /* important: don't shrink */
  width: var(--card-w);
  height: var(--card-h);
  background: var(--bg);
  border-radius:10px;
  overflow:hidden;
  scroll-snap-align: start;     /* snap to start of card */
  display:flex;
  flex-direction:column;
  transition: transform .28s cubic-bezier(.2,.9,.25,1), box-shadow .2s;
  cursor: pointer;
  border: 1px solid rgba(56,72,83,0.3);
  gap:0px;
}

/* hover effect */
.team-card:hover .team-body,
.team-card:focus .team-body{
  background: var(--accent);
  color: white;
  transition: background 280ms ease, color 220ms ease;
}

/* media (image) */
.team-media{
  height:260px;
  background-size:cover;
  background-position:center;
}

/* body */
.team-body{
  padding:28px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  text-align:center;
  margin-top:auto;
}

.team-name{
  font-size:16px;
  color:#092771;
  margin:6px 0 0 0;
  font-weight:700;
}

.team-role{
  margin:0px 0 6px 0;
  color:var(--muted);
  font-size:13px;
}
.team-card:hover .team-name,
.team-card:focus .team-name{
  color: white;
}

.team-card:hover .team-role,
.team-card:focus .team-role{
  color: rgba(255,255,255,0.85);
}

/* link/button */
.team-link{
  display:inline-block;
  padding:4px 12px;
  border-radius:20px;
  border:1px solid #092771;
  color:#092771;
  font-size:13px;
  text-decoration:none;
}
.team-card:hover .team-link,
.team-card:focus .team-link{
  background: white;
  color: #092771;
  border-color: white;
}
.team-section{ padding:40px 0px 20px 0px;}
/* small screens: reduce card size */
@media (max-width: 980px){
  :root{ --card-w: 300px; --card-h: 340px; --gap:18px; }
}

/* very small: allow full width single card snap */
@media (max-width: 580px){
  :root{ --card-w: 86vw; --card-h: 360px; }
  .team-arrow{ display:none; }
  .team-sub{ margin: 0;
    font-size: 12px;
    padding: 10px; }
}
/* Section wrapper */
.feedback-section{
  padding: 0px 20px 42px 20px;
  display:flex;
  justify-content:center;
  background: transparent;
}
/* Inner 'card' that matches the style used previously */
.feedback-inner{
  width:100%;
  max-width:1280px;
  border-radius: 12px;
  padding: 42px;
  background: radial-gradient(circle, rgba(44, 53, 194, 1) 0%,rgba(21, 25, 92, 1) 100%);
  color: var(--white);
  display:grid;
  grid-template-columns: 1fr minmax(320px, 620px);
  gap: 48px;
  align-items: start;
}
.feedback-left{ padding-right: 6px; align-self: center;}
.feedback-title{
  font-size:34px;
  margin:0 0 10px 0;
  line-height:1.02;
  font-weight:700;
}
.feedback-lead{
  margin:0 0 18px 0;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  font-size:15px;
}
.feedback-meta{ margin-top:12px; color: rgba(255,255,255,0.85); }
.feedback-meta .muted{ color: rgba(255,255,255,0.75); margin:6px 0 0 0; }
/* Right column / form */


/* Form layout */
.feedback-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
/* Two-column rows inside form */
.row.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
}

/* Field styles */
.feedback-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:14px;
  color: rgba(255,255,255,0.95);
}
.label-text{ font-size:16px; color: rgba(255,255,255,0.9); }

/* Inputs */
.feedback-field input,
.feedback-field textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color:var(--white);
  font-size:14px;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.feedback-field input::placeholder,
.feedback-field textarea::placeholder{ color: rgba(255,255,255,0.45); }

/* Focus state */
.feedback-field input:focus,
.feedback-field textarea:focus{
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 6px 18px rgba(6,18,42,0.28);
  background: rgba(255,255,255,0.04);
}

/* Error hint (hidden by default) */
.field-error{
  color: #ffd6d6;     /* pale red */
  font-size:12px;
  min-height:16px;
}

/* Actions */
.form-actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:6px;
}
.btn-submit{
  background:  #f4a800;
  color:#092771;
  border-radius:100px;
  padding:10px 22px;
  font-weight:600;
  cursor:pointer;
  font-size: 14px;
  border: none;
}
.btn-submit:active{ transform: translateY(1px); }

/* status text */
.feedback-status{
  color: rgba(255,255,255,0.95);
  font-size:14px;
  min-height:20px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 980px){
  .feedback-inner{ grid-template-columns: 1fr; padding: 28px; }
  .feedback-title{ font-size:28px; }
  .row.two{ grid-template-columns: 1fr; }
}

/* Accessibility small tweaks */
.feedback-field input[aria-invalid="true"],
.feedback-field textarea[aria-invalid="true"]{
  box-shadow: 0 0 0 3px rgba(255,90,90,0.08);
  border-color: #ff8a8a;
}
/* Footer styles */
.site-footer{
  
  color: #092771;
  padding: 40px 20px 60px 20px;
  
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 150px 360px 250px;
  gap: 26px;
  align-items: start;
  align-content: start;
}

/* logo column */
.footer-col--logo .footer-logo img{
  display:block;
  max-width:220px;
  height:auto;
}

/* nav column */
.footer-nav .footer-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav .footer-list li{
  margin: 8px 0;
}
.footer-nav a{
  text-decoration: none;
  color: #092771;
  font-size: 15px;
  transition: color .15s ease;
}
.footer-nav a:hover,
.footer-nav a:focus{
  text-decoration: underline;
}

/* contact column */
.contact-list{
  list-style:none;
  margin:0;
  padding:0;
}
.contact-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin: 12px 0;
  color:#092771;
  font-size:14px;
  line-height:1.45;
}
.contact-icon{
  min-width:20px;
  display:inline-flex;
  align-items:flex-start;
}
.contact-link{
  color: #092771;
  text-decoration:none;
}
.contact-link:hover,
.contact-link:focus{
  color:#0f4a91;
  text-decoration:underline;
}

/* copyright / small print */
.footer-copy{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
}
.footer-copy .copyright{
  color:#092771;
  font-size:14px;
  line-height:1.5;
  text-align:left;
  margin:0;
}

/* SMALLER SCREEN LAYOUT (Mobile) */
@media (max-width: 920px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .footer-copy{
    justify-content:flex-start;
  }

  .footer-col--logo{
    order: 1;
  }
  .footer-nav{ order: 3; }
  .footer-contact{ order: 2; }
}

/* Extra small: reduce spacing */
@media (max-width: 480px){
  .site-footer{ padding: 28px 16px; }
  .footer-inner{ gap: 14px; }
  .footer-nav a{ font-size:14px; }
  .contact-item{ font-size:13px; gap:10px; }
  .footer-nav .footer-list {
    display: flex;
    flex-wrap: wrap;        /* allows items to wrap to next line */
    gap: 12px 20px;         /* row-gap column-gap */
    padding: 0;
  }

  .footer-nav .footer-list li {
    margin: 0;              /* remove the vertical li margin */
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr; /* single column */
  }

  .footer-col--logo {
    order: 1;
  }

  .footer-contact {
    order: 2;
  }

  .footer-nav {
    order: 3;
    padding-bottom: 15px;
  }

  .footer-copy {
    order: 4;  /* ensure copyright is last */
    text-align: left; /* optional: align like other content */
  }
  .footer-copy .copyright{
  
    line-height:1;
   
  }
}


  
