*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  
}

html,
body {
    margin: 0;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
/* ── NAVBAR ── */


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        90deg,
        #6a3fa0 0%,
        #2ca7c9 50%,
        #39b54a 100%
    ) !important;

    transition: top 0.3s ease;
}

.nav-inner {
    position: relative;
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.nav-links-left,
.nav-links-right {
    flex: 1;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-left {
    justify-content: flex-end;   /* Push towards the logo */
    gap: 35px;
    padding-right: 200px;        /* Space for logo */
}

.nav-links-right {
    justify-content: flex-start; /* Push towards the logo */
    gap: 35px;
    padding-left: 200px;         /* Space for logo */
}

.nav-item {
    position: static;
}

/* Main navbar links */

.nav-item > a {
    display: flex;
    align-items: center;
    height: 100px;

    margin: 0 !important;
    padding: 0 !important;

    color: #fff;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-item > a:hover {
    opacity: 0.85;
}

/* Logo */

.nav-logo-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px 10px;
    text-decoration: none;

    z-index: 1001;
}

.nav-logo-box img {
    display: block;
    max-height: 70px; /* adjust as needed */
    width: auto;
    filter: brightness(0) invert(1);
}
.nav-logo-text {
    display: flex;
    align-items: center;
    gap: 2px;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ── FULL-WIDTH DROPDOWN ── */

.nav-dropdown {
    display: none !important;
    position: fixed !important;

    top: 100px !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 24px 0 38px !important;

    background: #f5f5f5 !important;
    border: 0 !important;
    border-radius: 0 !important;

    box-sizing: border-box !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08) !important;

    transform: none !important;
    z-index: 999 !important;
}

/* Keep dropdown open on hover or keyboard focus */

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-dropdown:hover {
    display: block !important;
}

/* Dropdown link column */

.nav-dropdown-inner {
    display: flex;
    flex-direction: column;

    width: 280px;
    margin-left: calc(50% + 110px);
}

/* Top decorative line */

.nav-dropdown-inner::before {
    content: "";
    display: block;

    width: 80px;
    height: 4px;
    margin-bottom: 2px;

    background: #666;
}

/* Dropdown links */

.nav-dropdown-inner > a {
    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 14px 0 !important;

    color: #333 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-decoration: none !important;

    border-bottom: 1px solid #d8d8d8;
    box-sizing: border-box;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.nav-dropdown-inner > a:hover {
    color: #5b18c3 !important;
    padding-left: 8px !important;
    opacity: 1 !important;
}

.nav-dropdown-inner > a::after {
    display: none !important;
}


/* Mobile elements hidden on desktop */

.nav-ham,
.mobile-menu {
    display: none;
}

/* Mobile navbar */

@media (max-width: 900px) {

    nav {
        min-height: 80px;
        justify-content: center;
    }

    .nav-inner {
        width: 100%;
        justify-content: center;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .nav-logo-box {
        padding: 5px 10px;
    }

    .nav-logo-box img {
        display: block;
        max-width: 100px;
        height: auto;
    }

    /* Hamburger button */

    .nav-ham {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        z-index: 1002;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;
        padding: 0;

        color: #fff;
        font-size: 28px;
        line-height: 1;

        background: transparent;
        border: 0;
        cursor: pointer;

        transform: translateY(-50%);
    }

    /* Mobile menu container */

    .mobile-menu {
        display: block;
        position: fixed;

        top: 80px;
        left: 0;
        right: 0;

        max-height: 0;
        overflow: hidden;

        background: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;

        z-index: 1001;
    }

    .mobile-menu.is-open {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }

    /* Mobile top-level links */

    .mobile-main-link,
    .mobile-submenu-button {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 56px;
        padding: 15px 22px;

        color: #333;
        font-family: inherit;
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        text-decoration: none;

        background: #fff;
        border: 0;
        border-bottom: 1px solid #e5e5e5;

        box-sizing: border-box;
        cursor: pointer;
    }

    .mobile-main-link:hover,
    .mobile-submenu-button:hover {
        color: #5b18c3;
        background: #f7f7f7;
    }

    /* Mobile submenus */

    .mobile-submenu {
        display: none;
        background: #f5f5f5;
    }

    .mobile-menu-item.is-open .mobile-submenu {
        display: block;
    }

    .mobile-submenu a {
        display: block;
        padding: 14px 22px 14px 40px;

        color: #444;
        font-size: 15px;
        text-decoration: none;

        border-bottom: 1px solid #ddd;
    }

    .mobile-submenu a:hover {
        color: #5b18c3;
        background: #eee;
    }

    .mobile-arrow {
        font-size: 23px;
        font-weight: 400;
        transition: transform 0.25s ease;
    }

    .mobile-menu-item.is-open .mobile-arrow {
        transform: rotate(45deg);
    }
}

.ebay-banner {
    width: 100%;
    margin: 40px 0;
}

.ebay-banner a {
    display: block;
    width: 60%;
    margin: 0 auto;
}

.ebay-banner img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.ebay-banner img:hover {
    transform: scale(1.02);
}
.components-body
{
  background-image: url('../images/background.png');
}
/* The areera logo with arrows */
.logo-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.logo-word {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
.logo-arrows {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: #fff;
}

/* dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 180px;
  border-top: 3px solid #6c63ff;
  z-index: 200;
  padding: 8px 0;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: #333 !important;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #f5f5f5; }

/* ham */
.nav-ham {
  display: none;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  padding: 0 16px;
}

/* ── HERO VIDEO SLIDER ── */
.hero {

  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  background: #000;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* green tint overlay on hero */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80,180,100,0.25) 0%, rgba(34,197,94,0.35) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slider-btn {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 5px 14px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 2px;
}
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.slider-speed {
  color: #fff;
  font-size: 12px;
  background: rgba(0,0,0,0.3);
  padding: 5px 10px;
  border-radius: 2px;
}
/* progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.2);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: rgba(255,255,255,0.7);
  width: 0%;
  transition: width linear;
}

/* ── SECTION: UK LARGEST ── */
.section-dark {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 40px 70px;
  text-align: center;
  border-bottom: #38b44c 2px solid;
}
.section-dark h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 14px;
  color: #fff;
}
.heading-hr {
  width: 130px;
  height: 2px;
  background: linear-gradient(to right, #9b59b6, #6c63ff);
  margin: 0 auto 50px;
  border: none;
}

/* 3-col + center image layout */
.features-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 600px;
}
.feature-item {
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}
.feature-item:last-child { border-bottom: none; }
.features-left .feature-item { text-align: right; }
.features-right .feature-item { text-align: left; }
.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.feature-item p {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}
.features-center-img {
  width: 240px;
  flex-shrink: 0;
}
.features-center-img img {
  width: 100%;
  border-radius: 10px;
  display: block;
  height:600px;
}

/* ── SECTION: ALL TYPES — light blue ── */
.section-light {
  background: #eaf3f8;
  padding: 0px;
}
.section-light-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
}
/* left: image */
.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
/* right: text */
.split-text {
  padding: 20px 40px 0px 40px;
}
.split-text h2 {
  font-family: "Open Sans", "Lobster Two", Arial, Tahoma, sans-serif;
  font-size: 52px;
  line-height: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  background: -webkit-linear-gradient(315deg, rgba(102,36,131,1) 0%, rgba(36,170,225,1) 48%, rgba(18,167,157,1) 65%, rgba(43,181,114,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.split-text h2 span { color: #22b8a0; }

.feature-icon-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.feature-bookmark {
  width: 18px;
  height: 24px;
  background: #c8a84b;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-icon-item h4 {
  font-size: 21px;
  font-weight: 400;
  color: #5b18c3;
  margin-bottom: 8px;
}
.feature-icon-item p {
  padding-bottom: 30px;
  color: #3e3e3f;
  line-height: 1.7;
  text-align: justify;
}

/* second all-types block */
.section-light-2 {
  background: #eaf3f8;
  padding: 0px;
}
.section-light-2-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
}
.split-text-left {
  padding: 20px 40px 0px 40px;
}
.split-text-left h2 {
  font-family: "Open Sans", "Lobster Two", Arial, Tahoma, sans-serif;
  font-size: 52px;
  line-height: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  background: -webkit-linear-gradient(315deg, rgba(102,36,131,1) 0%, rgba(36,170,225,1) 48%, rgba(18,167,157,1) 65%, rgba(43,181,114,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-text-left h2 span { color: #22b8a0; }
.split-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: #ccc;
  border-top: 2px #30a1c7 solid;
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li::before {
  font-size: 10px;
  color: #888;
}
.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  background: #0a0a0a;
  text-align: center;
  padding: 32px 20px;
  border-top: 2px solid #5b18c3!important;
}
.footer-logo-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
/* footer logo — same box as nav */
.footer-logo-box {
  padding: 8px 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo-box .logo-word {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
.footer-logo-box .logo-arrows-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  color: #fff;
  margin-top: 1px;
}
.footer-copy {
  font-size: 12px;
  color: #666;
  line-height: 1.9;
}

/* scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: #7b3fbf;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.scroll-top.show { opacity: 1; }
.scroll-top:hover { background: #6430a8; }


.contact-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: calc(100vh - 100px); /* 100px = navbar height */
}

.contact-map {
    position: sticky;
    top: 100px; /* same as navbar height */
    height: calc(100vh - 100px);
}

.map-shadow,
.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-info {
    padding: 60px;

    background-image: url('../images/background.png');
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-h1{
    font-family: "Open Sans", "Lobster Two", Arial, Tahoma, sans-serif;
  font-size: 52px;
  line-height: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  background: -webkit-linear-gradient(315deg, rgba(102,36,131,1) 0%, rgba(36,170,225,1) 48%, rgba(18,167,157,1) 65%, rgba(43,181,114,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-h2
{
  font-size: 40px;
    font-weight: 400;
    color: #5b18c3;
    margin-bottom: 8px;
}

.contact-h3
{
  font-size: 25px;
    font-weight: 300;
    color: #111;
    margin-bottom: 16px;
}

.small-hr {
    width: 40%;
    height: 2px;
    background: -webkit-linear-gradient(315deg, rgba(102,36,131,1) 0%, rgba(36,170,225,1) 48%, rgba(18,167,157,1) 65%, rgba(43,181,114,1) 100%);
    border: none;
    border-radius: 2px;
    margin: 20px auto; /* centers it */
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: 600;
    font-size: 15px;
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background-color: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5b18c3;
    background-color: white;
    box-shadow: 0 0 8px rgba(91,24,195,0.25);
}

.contact-info button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #5b18c3, #8a3ffc);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-info button:hover {
    background: linear-gradient(135deg, #46109b, #6f28d9);
    transform: translateY(-2px);
}

.contact-info button[type="submit"] {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0;
    
    background: #5b18c3;
    color: white;
    
    border: none;
    border-radius: 10px;
    
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    appearance: none;
}

.contact-info button[type="submit"]:hover {
    background: #46109b;
    transform: translateY(-2px);
}

.contact-info button[type="submit"]:active {
    transform: translateY(0);
}

button {
    width:auto;
}


h1.page-title {
    text-align: center;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--purple);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 60px;
  }

  .team-h1{
  font-family: "Open Sans", "Lobster Two", Arial, Tahoma, sans-serif;
  font-size: 52px;
  line-height: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin: 50px 0px;
  color: #6a41a1;
  text-align: center;
}

  .team-grid {
    margin-bottom: 80px!important;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

.last-card {
    grid-column: 2;
}

/*
.last-card {
    grid-column: 1 / -1;
    max-width: 100%;
}
*/
/* Larger image */
.last-card img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.last-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    padding: 25px 35px;

    background: rgba(0, 0, 0, 0.65);
    box-sizing: border-box;
}

.last-card .name {
    width: 100%;
    max-width: none;

    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

    text-align: justify;
    letter-spacing: normal;
    word-spacing: normal;

    font-family: "Open Sans", "Lobster Two", Arial, Tahoma, sans-serif;
}

.last-card .tags {
    display: none;
}
  .card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  }

  .card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .card:hover img {
    transform: scale(1.06);
  }

  .overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
  }

  .name {
    color: #eee;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  }

  .team-body
{
  background-image: url('../images/background.png');
  margin-top:50px
}
  .tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    flex-shrink: 0;
  }

  .badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
  }

  .badge.role {
    background-color: #6a41a1;
  }

  .badge.linkedin {
    background-color: #0867bf;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .badge.linkedin:hover {
    background: #1665b8;
  }

  .badge.no-link {
    background: #6b6b73;
  }
.video-body
{
  background-image: url('../images/background.png');
  margin-top:50px
}
  .video-h1{
  font-family: "Open Sans", "Lobster Two", Arial, Tahoma, sans-serif;
  font-size: 52px;
  line-height: 52px;
  font-weight: 300;
  line-height: 1.2;
    margin-bottom: 50px;
  color: #6a41a1;
  text-align: center;
}
  
    .video-slider-wrapper {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto 50px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.video-slider {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    border-radius: 4px;
}

.video-slide {
    display: none;
    position: relative;
    width: 100%;
}

.video-slide.active {
    display: block;
}

.video-slide video {
    display: block;
    width: 100%;
    height: 692px;
    max-height: 70vh;
    object-fit: cover;
    background: #000;
}

.video-slide h3 {
    position: absolute;
    left: 25px;
    bottom: 75px;
    color: #fff;
    background: rgba(0,0,0,0.65);
    padding: 10px 18px;
    margin: 0;
    font-size: 22px;
    z-index: 5;
}

.video-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    font-size: 34px;
    padding: 10px 16px;
    cursor: pointer;
}

.video-nav.prev {
    left: 10px;
}

.video-nav.next {
    right: 10px;
}

.video-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #333;
    padding: 15px;
    flex-wrap: wrap;
}

.video-thumbs button {
    background: #111;
    color: #fff;
    border: 1px solid #666;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
}

.video-thumbs button:hover,
.video-thumbs button.active-thumb {
    background: #6a41a1;
    border-color: #6a41a1;
}

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.store-button-container {
    text-align: center;
    margin: 20px 0 30px;
}

.store-button {
    display: inline-block;
    background: #6a41a1; /* eBay blue */
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.store-button:hover {
    background: #2ea2c7;
    transform: translateY(-2px);
    color: #fff;
}

/* ── CAREER PAGE ── */

.career-page {
    width: 100%;
    padding: 40px 20px 80px;
    box-sizing: border-box;
}

.career-heading {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.career-heading p {
    max-width: 720px;
    margin: 15px auto 0;

    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.career-form-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.career-form {
    padding: 40px;

    background: #f7f7f7;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.career-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.career-form-group {
    margin-bottom: 24px;
}

.career-form-group label {
    display: block;
    margin-bottom: 8px;

    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.career-form-group label span,
.career-consent label span {
    color: #b00020;
}

.career-form-group input,
.career-form-group select,
.career-form-group textarea {
    width: 100%;
    padding: 13px 15px;

    color: #333;
    font-family: inherit;
    font-size: 15px;

    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.career-form-group input:focus,
.career-form-group select:focus,
.career-form-group textarea:focus {
    border-color: #6a3fa0;
    box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.12);
}

.career-form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.career-form-group input[type="file"] {
    padding: 10px;
    background: #fff;
}

.career-form-group small {
    display: block;
    margin-top: 8px;

    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.career-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 5px 0 28px;
}

.career-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.career-consent label {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.career-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    min-height: 50px;
    padding: 13px 28px;

    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    background: linear-gradient(
        90deg,
        #6a3fa0,
        #2ca7c9,
        #39b54a
    );

    border: 0;
    border-radius: 4px;
    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.career-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.18);
}

.career-submit-button:active {
    transform: translateY(0);
}

/* Hidden anti-spam field */

.career-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── MOBILE ── */

@media (max-width: 700px) {

    .career-page {
        padding: 120px 15px 50px;
    }

    .career-form {
        padding: 25px 18px;
    }

    .career-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .career-submit-button {
        width: 100%;
    }
}


/* Small phones */
@media (max-width: 480px) {

    .contact-layout {
        padding: 10px;
    }

    .contact-h1 {
        font-size: 20px;
    }

    .map-container iframe {
        height: 250px;
    }

    .contact-info {
        padding: 15px !important;
    }

}

/* Mobile responsive */
@media (max-width: 768px) {

    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .contact-map,
    .contact-info {
        width: 100%;
    }

    .map-container iframe {
        height: 300px;
        width: 100%;
    }

    .contact-info {
        padding: 20px !important;
    }

    .contact-h1 {
        font-size: 24px;
        text-align: center;
    }

    .contact-h2 {
        font-size: 20px;
    }

    .contact-h3 {
        font-size: 15px;
        line-height: 1.5;
    }

    .contact-box {
        padding: 20px !important;
    }

    .contact-form,
    form {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        font-size: 16px; /* avoids iPhone zoom */
    }

    .contact-form button,
    button[type="submit"] {
        width: 100%;
    }

        .video-slider-wrapper {
        padding: 0;
    }

    .video-slide video {
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: none;
    }

    .video-slide h3 {
        font-size: 15px;
        left: 12px;
        bottom: 55px;
    }

    .video-nav {
        font-size: 24px;
        padding: 6px 10px;
    }

    .video-thumbs button {
        width: 100%;
    }

}

@media (max-width: 900px) {
  .nav-links-left, .nav-links-right { display: none; }
  .nav-ham { display: block; }
  .features-layout { grid-template-columns: 1fr; }
  .features-center-img { width: 100%; order: -1; }
  .features-left .feature-item, .features-right .feature-item { text-align: left; }
  .section-light-inner, .section-light-2-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
      .contact-layout{
        grid-template-columns:1fr;
    }

    .contact-info{
        padding:30px;
    }

    .map-container iframe{
        height:400px;
    }


        .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .contact-map,
    .contact-info {
        width: 100%;
    }

    .map-container iframe {
        height: 300px;
        width: 100%;
    }

    .contact-info {
        padding: 20px !important;
    }

    .contact-h1 {
        font-size: 24px;
        text-align: center;
    }

    .contact-h2 {
        font-size: 20px;
    }

    .contact-h3 {
        font-size: 15px;
        line-height: 1.5;
    }

    .contact-box {
        padding: 20px !important;
    }

    .contact-form,
    form {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        font-size: 16px; /* avoids iPhone zoom */
    }

    .contact-form button,
    button[type="submit"] {
        width: 100%;
    }

    .team-grid { grid-template-columns: repeat(2, 1fr); }
}





  @media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
  }

@media (max-width: 767px) {

    .team-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
        width: 100%;
        padding: 0 15px;
        gap: 20px;
        box-sizing: border-box;
    }

    .team-grid > .card {
        display: block !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;

        grid-column: auto !important;
        grid-row: auto !important;

        width: 100% !important;
        max-width: 420px;
        margin: 0 auto !important;

        float: none !important;
        clear: none !important;
    }

    .team-grid > .card:nth-child(odd),
    .team-grid > .card:nth-child(even) {
        display: block !important;
    }

    .card {
        aspect-ratio: 1 / 1;
    }

    .last-card {
        grid-column: auto !important;
    }
}