/*-----------------------
RESET
------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

body {
  line-height: 1; }

a {
  color: #000; }

hr {
  border: none;
  border-top: 1px solid #ccc;
  color: #fff;
  height: 1px; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

img {
  display: block; }

p {
  margin-bottom: 16px; }

strong {
  font-weight: 600; }

* {
  box-sizing: border-box; }
  *::selection {
    color: black;
    background: #fff; }

.btn-primary {
  background: #FFF;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  font-size: 20px;
  font-weight: 600; }

.btn-secondary {
  background: #0b0b2a;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  font-size: 20px;
  color: #fff; }

.btn-tertiary {
  color: #fff;
  background: #000;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  border: none;
  font-size: 20px; }

.big-link {
  font-size: 20px;
  margin: 20px 0;
  display: block;
  color: #fff;
  display: inline-block; }
  @media (max-width: 440px) {
    .big-link {
      font-size: 18px; } }
  @media (min-width: 600px) and (max-width: 1024px) {
    .big-link {
      font-size: 30px; } }
  @media (min-width: 1400px) {
    .big-link {
      font-size: 30px; } }

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

html {
  scroll-behavior: smooth; }

html, body, * {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal; }

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #ffffff; }

h1, h2, h3 {
  margin: 0 0 20px 0;
  font-weight: 600; }

h2 {
  color: #0b0b2a;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  text-align: center;
  padding: 20px; }
  @media (max-width: 600px) {
    h2 {
      font-size: 40px; } }

h3 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 3px; }

p, li {
  line-height: 28px;
  font-weight: 300;
  font-size: 18px; }

ul {
  padding: 0 30px; }

li {
  margin-bottom: 10px; }

.bold {
  font-weight: 600; }

.no-wrap {
  white-space: nowrap; }

.pill-list {
  padding: 0; }
  .pill-list li {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 0 5px 10px 5px; }

.header {
  position: fixed;
  width: 100%;
  background: #04021F;
  color: white;
  padding: 15px 20px;
  text-transform: uppercase;
  z-index: 100;
  top: 0; }

.burger {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  float: right;
  z-index: 999999;
  position: fixed;
  right: 20px;
  top: 15px;
  mix-blend-mode: difference; }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    transition: background 0.3s ease;
    transition: all 0.3s ease; }
  .burger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg); }
  .burger.open span:nth-child(2) {
    opacity: 0; }
  .burger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg); }

.menu {
  position: fixed;
  top: 0;
  padding: 20px;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #fff;
  color: #000;
  transition: right 0.3s ease-in-out;
  padding-top: 60px;
  z-index: 999;
  box-shadow: 10px 10px 18px #000; }
  .menu ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .menu ul li {
      padding: 0;
      margin: 0; }
      .menu ul li a {
        color: #000;
        text-decoration: none;
        font-size: 30px;
        padding: 10px;
        display: block;
        line-height: 40px; }
        .menu ul li a:hover {
          text-decoration: underline; }
  .menu.open {
    right: 0; }
  .menu .contact {
    padding: 20px 0; }
    .menu .contact p {
      margin: 0; }
    .menu .contact a {
      font-size: 12px;
      text-transform: uppercase;
      color: #0b0b2a;
      font-weight: 500; }

hr.styled {
  margin-top: 20px;
  border: 0;
  height: 1px;
  background: #0b0b2a; }

.home-container {
  background: #0b0b2a;
  box-sizing: border-box;
  width: 100%;
  display: grid;
  min-height: 100vh; }
  .home-container img {
    max-width: 100%; }
  .home-container .btn-primary {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    margin: 20px 0 0 0; }

.vcenter {
  display: inline-grid;
  grid-auto-rows: 1fr;
  justify-self: center;
  align-self: center; }

.home-inner-container {
  padding: 100px 20px 40px 20px;
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 6fr 4fr;
  grid-column-gap: 100px;
  max-width: 1400px; }
  @media (max-width: 1200px) {
    .home-inner-container {
      grid-template-columns: 1fr 1fr;
      grid-column-gap: 40px; } }
  @media (max-width: 1024px) {
    .home-inner-container {
      grid-template-columns: 1fr; } }

.home__hero-text p {
  margin: 20px 0 40px 0; }
.home__hero-text ul {
  list-style: none;
  padding: 0;
  margin: 40px 0; }
.home__hero-text li {
  padding: 0;
  margin: 0; }
.home__hero-text li a {
  color: #fff; }
.home__hero-text img {
  width: 100%;
  max-width: 550px;
  margin-top: -30px; }

@media (max-width: 1024px) {
  .home__hero-image {
    display: none; } }
.home__hero-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px; }

.mobile-banner {
  display: none;
  min-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px; }
  @media (max-width: 1024px) {
    .mobile-banner {
      display: block; } }

.challenges-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center; }
  @media (min-width: 1025px) and (max-width: 1200px) {
    .challenges-container {
      flex-direction: column; } }
  @media (max-width: 700px) {
    .challenges-container {
      flex-direction: column; } }
  .challenges-container a.card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border: 1px solid #4A4367;
    border-radius: 12px;
    background-color: transparent;
    width: 33%;
    color: #fff;
    transition: all 0.5s ease; }
    @media (min-width: 1025px) and (max-width: 1200px) {
      .challenges-container a.card {
        width: 100%; } }
    @media (max-width: 700px) {
      .challenges-container a.card {
        width: 100%; } }
    .challenges-container a.card:hover {
      border-color: white;
      background-color: #ffffff10; }
  .challenges-container .icon {
    background-color: #fff;
    color: black;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: transparent;
    text-shadow: 0 0 0 #0b0b2a; }
  .challenges-container .text {
    font-size: 14px;
    line-height: 1.4; }

.portfolio {
  max-width: 800px;
  text-align: center;
  padding: 20px; }
  .portfolio h1 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 70px;
    margin-top: 60px;
    color: #fff; }
  .portfolio .btn-primary {
    max-width: 500px;
    width: 100%;
    display: inline-block; }

.portfolio-border {
  border: 2px solid #fff;
  margin: 0 20px; }
  .portfolio-border h1 {
    margin-top: 20px; }

.why-container {
  min-height: 100vh;
  border-top: 1px dashed #ffffff50;
  background: #0b0b2a; }

.why-inner-container {
  max-width: 1400px;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
  /* Responsive layout */ }
  .why-inner-container h2 {
    color: white;
    margin: 20px 0 20px 0; }
  .why-inner-container .card-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap; }
  .why-inner-container .info-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    width: 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; }
  .why-inner-container .info-card img {
    width: 100%;
    height: 180px;
    object-fit: cover; }
  .why-inner-container .card-content {
    padding: 30px;
    text-align: left; }
  .why-inner-container .card-content h3 {
    font-size: 18px;
    color: #0b0b2a;
    margin-bottom: 12px;
    font-weight: 500; }
  .why-inner-container .card-content ul {
    padding-left: 20px;
    margin: 0; }
  .why-inner-container .card-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333; }
  .why-inner-container .cta-button {
    margin-top: 40px; }
  .why-inner-container .cta-button a {
    display: inline-block;
    padding: 12px 28px;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 2px;
    transition: background 0.3s; }
  .why-inner-container .cta-button a:hover {
    background-color: white;
    color: #0A0620; }
  @media (max-width: 768px) {
    .why-inner-container .card-container {
      flex-direction: column;
      align-items: center; }
    .why-inner-container .info-card {
      width: 100%;
      max-width: 360px; } }

.services-container {
  background: #fff;
  min-height: 100vh;
  padding-top: 60px;
  /* Hotspot styling (unchanged) */
  /* Pulse Animation */ }
  .services-container img {
    max-width: 100%; }
  .services-container .description {
    color: #666;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px 40px 40px;
    margin: 0 auto; }
  .services-container .services-inner-container {
    max-width: 1400px;
    margin: 0 auto; }
  .services-container .services-section {
    display: flex;
    text-align: center; }
    .services-container .services-section img {
      width: 100%; }
    .services-container .services-section > div {
      position: relative; }
    @media (max-width: 1024px) {
      .services-container .services-section {
        flex-direction: column; } }
  .services-container .hotspot {
    position: absolute;
    color: black;
    background: #ffffff90;
    border-radius: 100%;
    padding: 0rem 1.1rem;
    font-size: 2.5rem;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #000;
    animation: pulse 2s infinite; }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1); }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    transform: translate(-50%, -50%) scale(1.05); }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transform: translate(-50%, -50%) scale(1); } }
  .services-container .hs-1 {
    top: 43%;
    left: 42%;
    /* Waitrose */ }
  .services-container .hs-2 {
    top: 85%;
    left: 55%;
    /* John Lewis */ }
  .services-container .hs-3 {
    top: 18%;
    left: 80%;
    /* adjust as needed */ }
  .services-container .hs-4 {
    top: 85%;
    left: 30%;
    /* adjust as needed */ }
  .services-container .hs-5 {
    top: 35%;
    left: 30%;
    /* adjust as needed */ }
  .services-container .hs-6 {
    top: 65%;
    left: 80%;
    /* adjust as needed */ }

/* Side Tray */
.side-tray {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 400px;
  max-width: 90%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 30;
  padding: 2rem 1.5rem;
  overflow-y: auto; }
  .side-tray h3, .side-tray p {
    color: black; }
  .side-tray h3 {
    font-weight: 400; }

.side-tray.open {
  right: 0; }

/* Close Button */
.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 70px;
  right: 28px;
  cursor: pointer; }

/* Tray content spacing */
.tray-content {
  margin-top: 3rem; }

/* Responsive */
@media (max-width: 600px) {
  .side-tray {
    width: 100%; } }
/* Overlay behind tray */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 20; }

.service-logos {
  padding: 20px; }

.swiper {
  max-width: 1400px;
  height: 300px; }

.slide-container {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF;
  padding: 40px; }
  .slide-container * {
    color: #0b0b2a; }

.swiper-pagination {
  color: #0b0b2a !important; }
  .swiper-pagination span {
    color: #0b0b2a; }

.testimonials-container {
  background: url("../img/testimonials-bg.jpg");
  min-height: 100vh;
  max-width: 100%;
  padding: 60px 20px 0 20px;
  --swiper-navigation-color: #0b0b2a;
  --swiper-pagination-color: #0b0b2a; }
  .testimonials-container .swiper-scrollbar {
    display: none; }
  .testimonials-container .swiper-horizontal > .swiper-pagination-bullets, .testimonials-container .swiper-pagination-bullets.swiper-pagination-horizontal, .testimonials-container .swiper-pagination-custom, .testimonials-container .swiper-pagination-fraction {
    top: 15px;
    font-size: 12px;
    font-weight: bold; }
  .testimonials-container .swiper {
    max-width: 1400px;
    height: auto; }
  .testimonials-container .swiper-button-next,
  .testimonials-container .swiper-button-prev {
    background-color: white;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    border-radius: 100%;
    right: 10px;
    padding: 30px;
    color: #000 !important;
    fill: black !important;
    stroke: black !important;
    border-radius: 100%;
    border: 1px solid #0b0b2a; }
    @media (max-width: 1024px) {
      .testimonials-container .swiper-button-next,
      .testimonials-container .swiper-button-prev {
        padding: 0px;
        border: none;
        background: none; } }
  .testimonials-container .swiper-button-next:after, .testimonials-container .swiper-button-prev:after {
    font-size: 25px; }
  .testimonials-container .slide-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF;
    padding: 40px;
    border-radius: 20px;
    text-align: center; }
    .testimonials-container .slide-container * {
      color: #0b0b2a; }
    .testimonials-container .slide-container h3 {
      font-size: 30px;
      font-weight: 400; }
    .testimonials-container .slide-container h4 {
      font-size: 20px; }
  .testimonials-container .button-container {
    text-align: center;
    padding: 40px; }
    .testimonials-container .button-container a {
      margin: 0 auto;
      display: inline-block; }

.contact-container {
  min-height: 100vh;
  /* Responsive Layout */ }
  .contact-container .contact-section {
    background: #fff;
    padding: 0; }
  .contact-container .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh; }
  .contact-container .left-panel {
    background: #fff;
    padding: 6rem;
    justify-content: center; }
  .contact-container .left-panel h2 {
    font-size: 40px;
    margin: 50px 0 30px 0;
    text-align: left;
    padding: 0;
    line-height: 50px; }
  .contact-container .left-panel ul {
    padding-left: 1.2rem;
    line-height: 1.6;
    color: #0b0b2a; }
  .contact-container .right-panel {
    background: #0f0d2b;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 6rem; }
  .contact-container .right-panel h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
    padding: 0; }
  .contact-container .right-panel p {
    margin-bottom: 1.5rem; }
  .contact-container .right-panel a {
    color: #fff;
    text-decoration: underline; }
  .contact-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .contact-container input, .contact-container textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    background: #FFFFFF30;
    border-radius: 10px;
    color: #fff; }
    .contact-container input::placeholder, .contact-container textarea::placeholder {
      color: #fff; }
  .contact-container button {
    background: white;
    color: #0f0d2b;
    padding: 0.8rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s; }
  .contact-container button:hover {
    background: #ddd; }
  @media (max-width: 1024px) {
    .contact-container .contact-content {
      grid-template-columns: 1fr; }
    .contact-container .left-panel,
    .contact-container .right-panel {
      padding: 2rem;
      min-height: auto; } }
