/* ================================================================
   Microsoft Surface Page — surface.css
   Prefix: ms- (avoids collision with global theme styles)
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  --ms-accent: #00abc5;
  --ms-dark: #1a1a24;
  --ms-light-bg: #f0f0f0;
  --ms-text: #333333;
  --ms-white: #ffffff;
  --ms-font: "Segoe UI", Arial, sans-serif;
  --ms-container: 1440px;
}

/* ----------------------------------------------------------------
   2. GLOBAL / UTILITIES
   ---------------------------------------------------------------- */
.ms-page {
  font-family: var(--ms-font);
  color: var(--ms-text);
}

.ms-container {
  max-width: var(--ms-container);
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.ms-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ms-section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.ms-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.ms-description {
  font-size: 22px;
  line-height: 1.5;
  color: #555;
}

.ms-text-link {
  font-size: 16px;
  color: var(--ms-accent);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transition: color 0.2s ease;
}

.ms-text-link:hover {
  color: #007f92;
  text-decoration: underline;
}

.ms-btn-link {
  background: var(--ms-accent);
  color: var(--ms-white);
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: 160px;
  padding: 0.8rem 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: background 0.2s ease;
}

.ms-btn-link:hover {
  background: #007f92;
  color: var(--ms-white);
}

/* ----------------------------------------------------------------
   3. HERO BANNER SLIDER
   ---------------------------------------------------------------- */
.ms-banner {
  padding-top: 84px;
  position: relative;
  overflow: hidden;
}

.ms-banner .ms-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ms-banner .ms-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

.ms-banner .ms-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--ms-container);
  margin: 0 auto;
  padding: 0 60px;
  pointer-events: none;
}

.ms-banner .ms-banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.1;
  pointer-events: auto;
}

.ms-banner .ms-banner-content p {
  font-size: 28px;
  margin: 0;
  pointer-events: auto;
}

.ms-banner .ms-banner-content .ms-btn-link {
  pointer-events: auto;
}

/* HoloLens slide — gradient heading & white text */
.ms-banner .ms-hololens-content h1 {
  background: linear-gradient(to right, #ea9fb8 0%, #1098e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ms-banner .ms-hololens-content p {
  color: var(--ms-white);
}

/* Owl carousel nav for primary banner */
.ms-banner .owl-nav {
  margin: 0 !important;
}

.ms-banner .owl-nav [class*="owl-"] {
  width: 40px;
  height: 40px;
  background: var(--ms-white) !important;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ms-banner .owl-nav button.owl-prev {
  left: 16px;
}

.ms-banner .owl-nav button.owl-next {
  right: 16px;
}

.ms-banner .owl-nav button span {
  font-size: 28px;
  line-height: 1;
  color: #333;
}

/* ----------------------------------------------------------------
   4. SURFACE FOR BUSINESS — 3-column feature grid
   ---------------------------------------------------------------- */
.ms-surface-biz {
  background: var(--ms-white);
}

.ms-surface-biz .ms-card-head img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ms-surface-biz .ms-card-body {
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.ms-surface-biz .ms-card-body h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.ms-surface-biz .ms-card-body p {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}

/* ----------------------------------------------------------------
   5. HUB PROMO SECTIONS (full-width background image)
   ---------------------------------------------------------------- */
.ms-hub-promo {
  background-size: cover;
  background-position: 64% 50%;
  background-repeat: no-repeat;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.ms-hub-promo.ms-hub-2s {
  min-height: 660px;
  background-position: center;
}

.ms-hub-promo .ms-promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 60px 0;
}

.ms-hub-promo .ms-promo-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.ms-hub-promo .ms-promo-content p {
  font-size: 20px;
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   6. LAPTOP / 2-IN-1 PRODUCT CAROUSELS
   ---------------------------------------------------------------- */
.ms-products {
  background: var(--ms-white);
}

.ms-products-dark {
  background: #f7f7f7;
}

.ms-laptop-card {
  background: var(--ms-light-bg);
  padding: 36px;
  height: 100%;
}

.ms-laptop-card .ms-laptop-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ms-laptop-card .ms-laptop-img img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

.ms-laptop-card .ms-laptop-specs {
  margin-top: 2rem;
}

.ms-laptop-card .ms-laptop-specs h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.ms-laptop-card .ms-laptop-specs p {
  font-size: 17px;
  margin: 0 0 1.5rem;
  line-height: 1.5;
  color: #555;
}

/* Carousel wrapper with side padding for nav buttons */
.ms-carousel-wrap {
  position: relative;
  padding: 0 60px;
}

/* Owl nav buttons for both product carousels */
.ms-laptop-carousel .owl-nav button,
.ms-twoinone-carousel .owl-nav button {
  width: 36px;
  height: 36px;
  background: #fcfcfc !important;
  border: 1px solid #bebebe !important;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-laptop-carousel .owl-nav button.owl-prev,
.ms-twoinone-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.ms-laptop-carousel .owl-nav button.owl-next,
.ms-twoinone-carousel .owl-nav button.owl-next {
  right: -50px;
}

.ms-laptop-carousel .owl-nav button svg,
.ms-twoinone-carousel .owl-nav button svg {
  width: 8px;
  height: 14px;
}

/* ----------------------------------------------------------------
   7. CONTACT SECTION (dark)
   ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   8. RESPONSIVE
   ---------------------------------------------------------------- */

/* Tablet ≤1024px */
@media (max-width: 1024px) {
  .ms-heading {
    font-size: 36px;
  }

  .ms-banner .ms-banner-content h1 {
    font-size: 38px;
  }

  .ms-banner .ms-banner-content p {
    font-size: 22px;
  }

  .ms-hub-promo .ms-promo-content {
    max-width: 420px;
  }

  .ms-hub-promo .ms-promo-content h2 {
    font-size: 32px;
  }

}

/* Mobile ≤768px */
@media (max-width: 768px) {
  .ms-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ms-heading {
    font-size: 28px;
  }

  .ms-description {
    font-size: 18px;
  }

  .ms-banner {
    padding-top: 70px;
  }

  .ms-banner .ms-banner-content {
    padding: 0 20px;
  }

  .ms-banner .ms-banner-content h1 {
    font-size: 28px;
  }

  .ms-banner .ms-banner-content p {
    font-size: 18px;
  }

  .ms-hub-promo {
    min-height: 400px;
    background-position: center;
  }

  .ms-hub-promo.ms-hub-2s {
    min-height: 450px;
  }

  .ms-hub-promo .ms-promo-content {
    max-width: 100%;
    padding: 40px 20px;
  }

  .ms-hub-promo .ms-promo-content h2 {
    font-size: 26px;
  }

  .ms-hub-promo .ms-promo-content p {
    font-size: 17px;
  }

  .ms-laptop-card {
    padding: 24px;
  }

  .ms-laptop-card .ms-laptop-specs h3 {
    font-size: 22px;
  }

  .ms-carousel-wrap {
    padding: 0 30px;
  }

  .ms-laptop-carousel .owl-nav button.owl-prev,
  .ms-twoinone-carousel .owl-nav button.owl-prev {
    left: -25px;
  }

  .ms-laptop-carousel .owl-nav button.owl-next,
  .ms-twoinone-carousel .owl-nav button.owl-next {
    right: -25px;
  }

}

/* Small mobile ≤480px */
@media (max-width: 480px) {
  .ms-banner .ms-banner-content h1 {
    font-size: 22px;
  }

  .ms-banner .ms-banner-content p {
    font-size: 15px;
  }

  .ms-carousel-wrap {
    padding: 0 15px;
  }

  .ms-laptop-carousel .owl-nav button.owl-prev,
  .ms-twoinone-carousel .owl-nav button.owl-prev {
    left: -12px;
  }

  .ms-laptop-carousel .owl-nav button.owl-next,
  .ms-twoinone-carousel .owl-nav button.owl-next {
    right: -12px;
  }
}

/* ================================================================
   9. SOURCE STYLES — Surface Go 3 / Surface Hub 2S / Surface Pro 8
   Ported from Desktop\microsoft source templates (unprefixed classes)
   ================================================================ */

/* ----------------------------------------------------------------
   9.1 Base / Utilities
   ---------------------------------------------------------------- */
.custom-container {
  max-width: 1140px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.common-space {
  padding-top: 45px;
  padding-bottom: 45px;
}

.common-spacing {
  padding-top: 45px;
  padding-bottom: 45px;
}

.heading {
  font-size: 32px;
  font-weight: 500;
  font-family: "Segoe UI", "Segoe UI Bold", Arial, sans-serif;
  line-height: 1;
  margin: 0 0 1rem;
}

.description {
  font-size: 18px;
}

.section-header {
  text-align: center;
  margin: 0 0 3.75rem;
}

.btn-link {
  background: #00abc5;
  color: #fff;
  text-decoration: none;
  text-align: center;
  justify-content: space-evenly;
  width: 144px;
  padding: 0.75rem 0;
  text-transform: uppercase;
  font-size: 15px;
  margin: 2rem 0 0 0;
}

.text-link {
  font-size: 13px;
  color: #00abc5;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.coming-soon {
  background: #ffd801;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  font-weight: 400;
}

/* ----------------------------------------------------------------
   9.2 Navigation
   ---------------------------------------------------------------- */
.surface-nav {
  background-color: #fff !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.17);
}

.surface-nav .nav-item {
  margin-left: 2rem;
}

.surface-nav .nav-link {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.surface-nav .dropdown-menu {
  min-width: max-content;
  padding: 1rem;
  border: 1px solid #e6e3e3;
  border-bottom: 6px solid #00abc5;
  border-radius: 0;
  background: #f2f2f2;
  margin: 0;
}

.surface-nav .dropdown-menu a.dropdown-item {
  padding-left: 0;
  font-size: 13px;
  display: block;
  margin: 0 0 0.5rem;
}

.surface-nav .dropdown-menu a.dropdown-item:last-child {
  margin: 0;
}

.surface-nav .dropdown-menu a.dropdown-item:hover,
.surface-nav .dropdown-menu a.dropdown-item:active {
  color: #00abc5;
  text-decoration: none;
  background-color: transparent;
}

/* ----------------------------------------------------------------
   9.3 Primary Banner (inner product pages)
   ---------------------------------------------------------------- */


.banner .banner-content {
  width: 100%;
  max-width: 1140px;
  padding: 0 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  right: 0;
}

.banner .banner-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.banner .banner-content p {
  font-size: 20px;
  margin: 0;
}

.banner .hololens h1 {
  background: linear-gradient(to right, #ea9fb8 0%, #1098e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner .hololens p {
  color: #fff;
}

.banner .owl-nav {
  margin: 0 !important;
}

.banner .owl-nav button.owl-prev {
  left: 8px;
  top: 50%;
  bottom: 0;
  margin: 0;
}

.banner .owl-nav button.owl-next {
  right: 8px;
  top: 50%;
}

.banner .owl-nav button span {
  font-size: 34px;
  line-height: 14px;
  height: auto;
}

.banner .owl-nav [class*="owl-"] {
  width: 36px;
  height: 36px;
  background: #fff !important;
  border-radius: 50%;
  position: absolute;
}

.banner .owl-nav button svg {
  width: 18px;
  height: 18px;
}

/* ----------------------------------------------------------------
   9.4 Product info & Microsoft Pro 8 banner layout
   ---------------------------------------------------------------- */
.microsoft-pro-8.banner {
  background: #e0e2e5;
  display: flex;
  align-items: center;
}

.product-info h1 {
  font-weight: 500;
  font-family: "Segoe UI", "Segoe UI Bold", Arial, sans-serif;
  font-size: 36px;
  margin: 1rem 0 1rem;
}

.product-info p {
  font-size: 18px;
  margin: 0 0 3rem;
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   9.5 Carousel thumbs
   ---------------------------------------------------------------- */
.carousel-thumbs .item {
  width: 80px;
}

.carousel-thumbs .item img {
  width: 100%;
  border: 1px solid #dcdcdd;
  border-radius: 8px;
  margin: 0 !important;
  transform: scale(0.8);
}

.carousel-thumbs .active.current .item img {
  transform: scale(0.9);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.07);
  border-color: #005eba;
  border-width: thick;
}

.carousel-thumbs {
  padding: 1rem 0;
  width: 100% !important;
  max-width: 430px;
}

.carousel-thumbs .item p {
  text-align: center;
  font-size: 13px;
  margin: 0;
}

.carousel-thumbs .active.current .item p {
  font-weight: bold;
}

.carousel-images .owl-nav button.owl-prev {
  left: -104%;
}

.carousel-images .owl-stage {
  display: flex;
  align-items: center;
}

.carousel-images .item img {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.carousel-images button svg {
  width: 24px;
  height: 24px;
}

/* Surface Go thumbs (small thumbnails for hub 2s) */
.surface-go-thumbs {
  display: flex !important;
  max-width: 240px !important;
}

.surface-go-thumbs .item {
  max-width: 44px;
  padding-bottom: 1rem;
}

.surface-go-thumbs img {
  width: auto !important;
  margin: auto;
}

.surface-go-thumbs .current .item {
  border-bottom: 5px solid #00abc5;
}

/* Laptop 4-thumb layout (hub-2s banner overlay) */
.laptop-4-thumb {
  position: absolute;
  top: 31%;
  z-index: 999;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ----------------------------------------------------------------
   9.6 Surface Hub 2S promo section
   ---------------------------------------------------------------- */
.surface-hub-2s {
  background: url(https://www.teamcomputers.com/images/microsoftsurface/images/home-surface-hub-2s-banner.jpg) 64% 50% no-repeat;
  height: 580px;
  display: flex;
  background-size: cover;
}

.surface-hub-2s .about-product {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  width: 540px;
}

.surface-hub-2s .about-product h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Segoe UI", "Segoe UI Bold", Arial, sans-serif;
  margin: 0 0 1rem;
}

.surface-hub-2s .about-product p {
  font-size: 16px;
  margin: 0 0 2rem;
}

/* ----------------------------------------------------------------
   9.7 Laptop cards
   ---------------------------------------------------------------- */
.laptop-cards {
  background: #f0f0f0;
  padding: 42px;
}

.laptop-cards .laptop-image {
  height: 172px;
  display: flex;
}

.laptop-cards .laptop-image img {
  width: auto !important;
  margin: auto;
  max-width: 100%;
  height: 150px;
}

.laptop-cards .laptop-specs {
  margin: 100px 0 0;
  position: relative;
}

.laptop-cards .laptop-specs .coming-soon {
  position: absolute;
  background: #ffd801;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0.25rem 0.5rem;
  top: -42px;
}

.laptop-cards .laptop-specs h3 {
  font-size: 24px;
  font-weight: bold;
}

.laptop-cards .laptop-specs p {
  font-size: 15px;
  margin-bottom: 2rem;
}

/* Inner page card overrides */
.inner-page-card .laptop-cards .laptop-specs h3 {
  font-size: 24px;
}

.inner-page-card .laptop-cards .laptop-specs p {
  font-size: 16px;
  margin: 0 0 1rem;
}

.inner-page-card .laptop-cards ul {
  margin: 0 0 1.5rem;
  padding: 0 0 0 18px;
}

.inner-page-card .laptop-cards ul li {
  margin: 0 0 0.75rem;
}

/* ----------------------------------------------------------------
   9.8 Laptop carousel (inner page)
   ---------------------------------------------------------------- */
#laptop-carousel button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.17);
}

#laptop-carousel button.owl-prev {
  left: -50px;
}

#laptop-carousel button.owl-next {
  right: -50px;
}

#laptop-carousel button svg {
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
}

#laptop-carousel-1 .owl-nav button,
#sync3 .owl-nav button,
#sync5 .owl-nav button {
  width: 32px;
  height: 32px;
  background: #fcfcfc;
  border: 1px solid #bebebe;
  border-radius: 50%;
  position: absolute;
}

#laptop-carousel-1 .owl-nav button.owl-prev,
#sync3 .owl-nav button.owl-prev,
#sync5 .owl-nav button.owl-prev {
  left: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#laptop-carousel-1 .owl-nav button.owl-next,
#sync3 .owl-nav button.owl-next,
#sync5 .owl-nav button.owl-next {
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#laptop-carousel-1 .owl-nav button svg,
#sync3 .owl-nav button svg,
#sync5 .owl-nav button svg {
  width: 6px;
}

/* ----------------------------------------------------------------
   9.9 C-head / c-content cards (3-column feature cards)
   ---------------------------------------------------------------- */
.c-head img {
  width: 100%;
}

.c-content {
  margin: 2rem 0 0;
  padding: 0 0.75rem;
}

.c-content .title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Segoe UI", "Segoe UI Bold", Arial, sans-serif;
}

.c-content p {
  font-size: 16px;
}

/* ----------------------------------------------------------------
   9.10 Feature wrapper (icon + title + description column)
   ---------------------------------------------------------------- */
.feature-wrapper {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-wrapper .img {
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  height: 56px;
  margin-bottom: 2rem;
}

.feature-wrapper .img img {
  height: 56px;
}

.feature-wrapper .desc h4 {
  font-size: 20px;
  font-weight: bold;
}

.feature-wrapper .desc p {
  font-size: 16px;
  padding: 0 1rem;
  line-height: 1.2;
}

/* ----------------------------------------------------------------
   9.11 Task flexibility section
   ---------------------------------------------------------------- */
.task-flexibility .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.task-flexibility .row h4 {
  font-size: 24px;
  font-weight: bold;
  padding: 0 2rem;
  margin: 0 0 1rem;
}

.task-flexibility .row p {
  font-size: 16px;
  margin: 0;
  padding: 0 2rem;
}

/* ----------------------------------------------------------------
   9.12 Accordion — team/feature member tabs
   ---------------------------------------------------------------- */
.accordion-item {
  background-color: transparent;
  border: 0;
}

.accordion-button {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  background-color: transparent;
}

.accordion-button::after {
  margin-left: 16px;
  transform: rotate(-90deg);
  margin-top: 6px;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.selected .accordion-button::after {
  display: none;
}

.selected .accordion-button {
  font-size: 24px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  color: #000;
}

.accordion-body {
  font-size: 15px;
  padding-top: 0;
}

.accordion-item.selected {
  border-left: 4px solid #00abc5;
  border-radius: 0;
}

/* ----------------------------------------------------------------
   9.13 Team pic (crossfade image gallery)
   ---------------------------------------------------------------- */
.team-pic {
  position: relative;
  height: 575px;
}

.team-pic img {
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.team-pic img.opaque {
  opacity: 1;
  z-index: 2;
}

/* ----------------------------------------------------------------
   9.14 Feature carousel (Surface Pro 8 expect-more section)
   ---------------------------------------------------------------- */
.feature-carousel .item {
  display: flex;
  align-items: center;
  position: relative;
}

.feature-content {
  width: 100%;
  max-width: 641px;
  padding: 80px 44px;
  z-index: 2;
  position: relative;
}

.feature-image {
  z-index: 1;
  width: 110%;
  margin-left: -10%;
  height: 550px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-content:after {
  position: absolute;
  content: "";
  background: #505050;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  left: 0;
}

.feature-content h3 {
  font-weight: bold;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.feature-content p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.feature-carousel .owl-nav button svg {
  width: 8px;
}

.feature-carousel .owl-nav button {
  background: #f3f3f3 !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 0.25rem;
}

.feature-carousel .owl-nav {
  position: absolute;
  bottom: 40px;
}

/* ----------------------------------------------------------------
   9.15 Work every angle / parallel cards
   ---------------------------------------------------------------- */
.work-every-angle .row {
  display: flex;
  align-items: center;
}

.work-every-angle .row h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 1rem;
  padding: 0 40px;
}

.work-every-angle .row p {
  font-size: 16px;
  margin: 0;
  padding: 0 40px;
}

.work-every-angle .row img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
  max-height: 442px;
}

.work-every-angle .row.parallel-cards {
  margin-top: 2rem;
}

.work-every-angle .row.parallel-cards h3 {
  margin-top: 2rem;
  padding: 0;
}

.work-every-angle .row.parallel-cards p {
  padding: 0 40px 0 0;
}

/* ----------------------------------------------------------------
   9.16 Sync carousels (#sync3, #sync5)
   ---------------------------------------------------------------- */
#sync3,
#sync5 {
  position: relative;
}

#sync3 .item-text,
#sync5 .item-text {
  max-width: 50%;
  margin-top: 3rem;
}

#sync3 .item-text h4,
#sync5 .item-text h4 {
  font-size: 32px;
  font-weight: bold;
}

#sync3 .item-text p,
#sync5 .item-text p {
  font-size: 16px;
}

#sync3 .owl-nav button.owl-prev,
#sync5 .owl-nav button.owl-prev {
  left: 4rem;
  bottom: unset;
  top: 35%;
}

#sync3 .owl-nav button.owl-next,
#sync5 .owl-nav button.owl-next {
  right: 4rem;
  bottom: unset;
  top: 35%;
}

div#sync4,
div#sync6 {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ----------------------------------------------------------------
   9.17 Footer contact section
   ---------------------------------------------------------------- */
footer .section-content {
  background: url(../images/surface/contact-bg.jpg) top center no-repeat;
  background-size: cover;
}

footer form {
  width: 775px;
  margin: auto;
  padding: 64px 0;
}

footer .form-control {
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  margin: 0 0 1.5rem;
}

footer .footer-sec {
  background: #62757d;
  padding: 0.5rem 0;
  color: #fff;
}

footer .footer-sec a {
  color: #fff;
  text-decoration: none;
  margin: 0 0 0 36px;
}

/* ----------------------------------------------------------------
   9.18 Source responsive — large screens (≥1440px)
   ---------------------------------------------------------------- */
@media (min-width: 1440px) and (max-width: 1920px) {
  .custom-container {
    max-width: 1440px;
  }

  .banner .banner-content {
    max-width: 1440px;
    margin: auto;
  }

  .banner .banner-content h1 {
    font-size: 48px;
  }

  .banner .banner-content p {
    font-size: 24px;
  }

  .heading {
    font-size: 36px;
  }

  .description {
    font-size: 20px;
  }

  .c-content .title {
    font-size: 20px;
  }

  .c-content p {
    font-size: 18px;
  }

  .surface-hub-2s .about-product h2 {
    font-size: 36px;
  }

  .surface-hub-2s .about-product p {
    font-size: 20px;
  }

  .laptop-cards .laptop-specs h3 {
    font-size: 30px;
  }

  .laptop-cards .laptop-specs p {
    font-size: 16px;
  }
}

/* ----------------------------------------------------------------
   9.19 Source responsive — mobile (320px–767px)
   ---------------------------------------------------------------- */
@media (min-width: 320px) and (max-width: 767px) {
  .banner .banner-content h1 {
    font-size: 20px;
  }

  .banner .banner-content p {
    font-size: 13px;
  }

  .banner .banner-content {
    max-width: 250px;
  }

  .btn-link {
    margin: 1rem 0 0;
    width: 96px;
    padding: 0.5rem 0;
    font-size: 13px;
  }

  .banner .owl-nav button.owl-prev,
  .banner .owl-nav button.owl-next {
    top: 40%;
    right: 0% !important;
  }

  .banner .owl-nav button.owl-prev {
    left: 1% !important;
  }

  .heading {
    font-size: 20px;
  }

  .description {
    font-size: 13px;
  }

  .c-content .title {
    font-size: 18px;
  }

  .c-content p {
    font-size: 15px;
  }

  .surface-hub-2s .about-product h2 {
    font-size: 24px;
  }

  .surface-hub-2s .about-product p {
    font-size: 15px;
  }

  .custom-container {
    max-width: 100%;
  }

  .surface-hub-2s .about-product {
    width: 100%;
  }

  .surface-hub-2s {
    height: 100%;
    background-size: cover;
  }

  .text-link {
    font-size: 13px;
  }

  .laptop-cards {
    padding: 21px;
  }

  .laptop-cards .laptop-specs {
    margin: 0;
  }

  .laptop-cards .laptop-specs h3 {
    font-size: 18px;
  }

  .laptop-cards .laptop-specs p {
    font-size: 15px;
    margin-bottom: 1rem;
  }

  .laptop-cards .laptop-specs .coming-soon {
    position: relative;
    top: unset;
    max-width: 115px;
    font-size: 12px;
  }

  footer form {
    max-width: 100%;
    padding: 1rem;
  }

  #laptop-carousel-1 .owl-nav button.owl-next,
  #sync3 .owl-nav button.owl-next,
  #sync5 .owl-nav button.owl-next {
    right: 0;
  }

  #laptop-carousel-1 .owl-nav button.owl-prev,
  #sync3 .owl-nav button.owl-prev,
  #sync5 .owl-nav button.owl-prev {
    left: 0;
  }

  .surface-nav .dropdown-menu {
    margin: 0;
    min-width: unset;
  }

  .surface-nav .nav-item {
    margin: 0;
  }

  .footer-sec div {
    font-size: 12px;
    text-align: center !important;
    justify-content: center !important;
  }

  footer .footer-sec a {
    margin: 0 8px;
  }

  .product-info h1 {
    font-size: 36px;
  }

  .product-info p {
    font-size: 18px;
    margin: 0 0 1rem;
  }

  .feature-content h3 {
    font-size: 24px;
    margin: 0 0 1rem;
  }

  .feature-content {
    max-width: 100%;
    padding: 32px;
  }

  .feature-carousel .item {
    display: block;
  }

  .section-header {
    margin: 0 0 1.5rem;
  }

  .feature-content p {
    font-size: 14px;
  }

  .feature-image {
    height: 100%;
    object-fit: unset;
    object-position: unset;
  }

  .feature-carousel .owl-nav {
    bottom: unset;
    position: relative;
  }

  .selected .accordion-button {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 14px;
  }

  .accordion-button {
    font-size: 16px;
  }

  .team-pic {
    height: 203px;
  }

  .inner-page-card .laptop-cards .laptop-specs p {
    font-size: 12px;
  }

  .inner-page-card .laptop-cards .laptop-specs h3 {
    font-size: 18px;
  }

  .inner-page-card .laptop-cards ul li {
    font-size: 13px;
  }

  .feature-wrapper {
    padding: 0;
  }

  .feature-wrapper .img {
    height: 48px;
    margin-bottom: 1rem;
  }

  .feature-wrapper .img img {
    height: 100%;
  }

  .feature-wrapper .desc h4 {
    font-size: 18px;
  }

  .feature-wrapper .desc p {
    font-size: 14px;
  }

  .common-space {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .task-flexibility img {
    width: 100%;
  }

  .task-flexibility .row h4 {
    font-size: 18px;
    margin: 1rem 0 0;
    padding: 0;
  }

  .task-flexibility .row p {
    font-size: 15px;
    padding: 0;
  }

  #sync3 .item-text h4,
  #sync5 .item-text h4 {
    font-size: 24px;
  }

  #sync3 .item-text p,
  #sync5 .item-text p {
    font-size: 14px;
  }

  #sync3 .item-text,
  #sync5 .item-text {
    max-width: 100%;
  }

  div#sync4,
  div#sync6 {
    position: relative;
    top: unset;
    padding: 0;
    max-width: 100%;
  }

  .banner {
    padding-top: 3.8rem;
  }

  .work-every-angle .row h3 {
    font-size: 18px;
    padding: 0;
  }

  .work-every-angle .row p {
    font-size: 14px;
    padding: 0;
    margin: 0 0 1rem;
  }

  .laptop-4-thumb {
    position: relative;
    width: 100%;
  }
}