.hero {
  background: transparent !important;
}
.partners-section {
  background: transparent !important;
}
.intro {
  background: transparent !important;
}
.horizontal-scroll-section {
  background: transparent !important;
}
.sticky-wrapper {
  background: transparent !important;
}
.card {
  background: transparent !important;
}
.techstack-section {
  background: transparent !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: linear-gradient(to right, #071019 100%, #227ea6 0%) !important;
  transition: background 0.4s ease, color 0.4s ease;
  z-index: 0;
}

html body.news-visible {
  background: #e6ddca !important;
  color: black !important;
  z-index: 0;
}


html body.techstack-visible {
  background: #eaf2f2 !important;
  color: black !important;
  z-index: 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

.container {
  width: 100%;
  box-sizing: border-box;
}


a {
  text-decoration: none;
  color: inherit;
}

/* ==========================
NAVBAR
========================== */
/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  font-size: 15px;
  font-weight: 500;
  color: #E4EDED;
  position: relative;
  z-index: 100;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-left a:not(.dropdown-toggle), 
.nav-right > a {
  color: #E4EDED;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-left a:hover, 
.nav-right a:hover {
  color: #F1C551;
}

/* Logo */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.dot { color: #F1C551; }

/* Contact Button & Meeting Button */
.btn-outline {
  padding: 10px 24px;
  border: 1px solid #E4EDED;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #E4EDED;
  color: #0a1628;
}

.meeting-button {
  display: flex;
  align-items: center;
}

.book-text {
  padding: 12px 20px;
  background: none;
  border: none;
  color: #0a1628;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.circle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Hover only rotates the CIRCLE */
.circle-arrow:hover {
  transform: rotate(45deg);
}

/* Arrow stays fixed */
.arrow {
  font-size: 16px;
  pointer-events: none;
}

.language {
  cursor: pointer;
}

/* ===== DROPDOWN BASE ===== */
.dropdown {
  position: static;
}

.dropdown-toggle {
  cursor: pointer;
  color: #E4EDED;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.dropdown-toggle:hover { 
  color: #F1C551; 
}

/* ===== MEGA MENU OVERLAY ===== */
.mega-menu-overlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #071019 100%, #227ea6 0%);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
  overflow-y: auto;
}

.dropdown:hover .mega-menu-overlay {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHAT WE DELIVER MENU ===== */
.mega-menu-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  gap: 90px;
}

.mega-column {
  flex: 1;
  /* min-width: 250px; */
}

.mega-column h3 {
  color: #E4EDED;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column li {
  color: #B6C8CA;
  padding: 12px 0;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: color 0.3s ease;
}

.mega-column li:hover { 
  color: #F1C551; 
}

.mega-column li .arrow {
  font-size: 18px;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.3s, transform 0.3s;
}

.mega-column li:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CASES MENU ===== */
.cases-menu-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.cases-container { 
  flex: 3;
}

.cases-container h2 {
  color: #E4EDED;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  color: #E4EDED;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  background-color: #1F2833;
}

.case-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.case-card p {
  font-size: 15px;
  color: #B6C8CA;
  margin-bottom: 16px;
  line-height: 1.5;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #2C3A48;
  font-weight: 500;
}

.tag.yellow { 
  background-color: #F1C551; 
  color: #0C121C;
  border-color: #F1C551;
}

.tag.gray { 
  background-color: #1F2833; 
  color: #E4EDED; 
}

/* Cases Sidebar */
.cases-sidebar {
  flex: 1;
  min-width: 280px;
  border-left: 1px solid #2C3A48;
  padding-left: 40px;
}

.cases-sidebar h3 {
  color: #E4EDED;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.cases-sidebar h3:hover {
  color: #F1C551;
}

.cases-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cases-sidebar li {
  color: #B6C8CA;
  font-size: 16px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2C3A48;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cases-sidebar li:hover {
  color: #F1C551;
}

.sidebar-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cases-sidebar li img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #2C3A48;
}

.cases-sidebar .arrow {
  font-size: 16px;
  color: #F1C551;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s ease;
}

.cases-sidebar li:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ===== RESPONSIVE ===== */
/* ✅ Large Tablets (≤1200px) */
@media (max-width: 1200px) {
  .mega-menu-content,
  .cases-menu-content {
    padding: 60px 40px;
    gap: 40px;
  }
  .mega-column h3 { font-size: 22px; }
  .mega-column li { font-size: 16px; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ✅ Tablets (≤992px) */
@media (max-width: 992px) {
  .navbar { padding: 20px 40px; flex-wrap: wrap; }
  .nav-left, .nav-right { gap: 20px; flex-wrap: wrap; }
  .nav-center { position: static; transform: none; margin-bottom: 10px; }

  .cases-menu-content,
  .mega-menu-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cases-sidebar {
    border-left: none;
    border-top: 1px solid #2C3A48;
    padding-left: 0;
    padding-top: 30px;
    width: 100%;
  }

  .cases-grid { grid-template-columns: 1fr; }
}

/* ✅ Small Tablets & Mobiles (≤768px) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
  }

  .nav-left, .nav-right {
    flex-direction: column;
    gap: 12px;
  }

  .mega-menu-content,
  .cases-menu-content {
    padding: 40px 24px;
  }

  .cases-container h2 { font-size: 24px; }
  .case-card h3 { font-size: 18px; }
  .mega-column h3 { font-size: 20px; }
}

/* ✅ Phones (≤480px) */
@media (max-width: 480px) {
  .navbar { padding: 14px 16px; }
  .logo-img { height: 22px; }
  .mega-menu-content, .cases-menu-content { padding: 24px 16px; gap: 24px; }
  .mega-column h3 { font-size: 18px; }
  .mega-column li, .cases-sidebar li { font-size: 14px; }
  .case-card img { height: 180px; }
  .cases-sidebar li img { width: 40px; height: 40px; }
}

/* Hero Section */
.hero {
  padding: 80px 20px 100px;
  text-align: center;
}

.hero h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.animated-heading {
  font-size: 72px;
  font-weight: 700;
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.rotating-word {
  display: inline-block;
  will-change: opacity, transform;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
}

/* Hidden state */
.rotating-word.hide {
  opacity: 0;
  transform: translateY(-100%);
}

/* Visible state */
.rotating-word.show {
  opacity: 1;
  transform: translateY(0);
}


.hero p {
  font-size: 20px;
  color: #E4EDED;
  margin-top: 10px;
}

/* Hero Buttons Wrapper */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Main container for the two buttons */
.meeting-button {
  display: flex;
  align-items: center;
}

/* "Book a meeting" - pill shape */
.book-text {
  background-color: #F1C551;
  color: black;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Right circular button with arrow */
.circle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Hover only rotates the CIRCLE */
.circle-arrow:hover {
  transform: rotate(45deg);
}

/* Arrow stays fixed */
.arrow {
  font-size: 16px;
  pointer-events: none;
}



/* Secondary Ghost Button */
.btn-ghost {
  background: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 9999px;
  padding: 14px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background-color: white;
  color: black;
}

/* ✅ Remove unused old button styles */
.book-btn,
.arrow-btn,
.arrow-icon {
  display: none !important;
}

@media (max-width: 1440px) {
  .hero h1 {
    font-size: 80px;
  }

  .animated-heading {
    font-size: 60px;
  }
}

/* Medium screens: laptops/tablets landscape */
/* Medium screens: laptops/tablets landscape */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 60px;
  }

  .animated-heading {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  /* ✅ Keep button + arrow side by side */
  .meeting-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .circle-arrow {
    margin: 0;
    width: 46px;
    height: 46px;
  }
}

/* Small tablets and phones */
@media (max-width: 768px) {
  .hero {
    padding: 60px 10px 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .animated-heading {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  /* ✅ Keep buttons aligned in one line */
  .meeting-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .book-text {
    font-size: 15px;
    padding: 12px 20px;
  }

  .circle-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Very small devices (mobile landscape, small phones) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .animated-heading {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  /* ✅ Still side by side even on smallest screens */
  .meeting-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .book-text {
    font-size: 14px;
    padding: 12px 18px;
  }

  .circle-arrow {
    width: 40px;
    height: 40px;
  }

  .arrow {
    font-size: 14px;
  }
}


/* Partners Section */
.partners-section {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.logos-container {
  width: 1300px; /* set exactly the width of one logo-set */
  overflow: hidden;
  margin: 0 auto;
}

.logo-scroll {
  display: flex;
  width: 2600px; /* twice logo-set width */
  will-change: transform;
}

.logo-set {
  display: flex;
  flex-shrink: 0;
}

.logo-set img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-right: 10px;
  user-select: none;
  pointer-events: none;
}

.logo-set img:last-child {
  margin-right: 0;
}

.office-image-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.5); */
}

.office-image-container img {
  width: 100%;
  display: block;
  border-radius: 12px;
}


/* Tech Section */

#tech-section {
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 80px 80px;
  font-family: 'Inter', sans-serif;
}

/* Tagline */
.tagline {
  font-size: 14px;
  font-weight: 400;
  color: #E4EDED;
  margin-bottom: 30px;
  display: flex;
  text-align: center;
  gap: 10px;
}

/* Animate Text */
#animate-text {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(228, 237, 237, 1);
  margin: 0;
  word-wrap: break-word;
  transition: color 0.3s ease;
}

.line {
  display: block;
  margin-bottom: 0.15em;
  white-space: normal;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  #tech-section {
    padding: 50px 30px;
  }

  #animate-text {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  #tech-section {
    padding: 40px 20px;
  }

  #animate-text {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  #tech-section {
    padding: 30px 15px;
  }

  .tagline {
    font-size: 12px;
    gap: 6px;
  }

  #animate-text {
    font-size: 28px;
  }
}


/* Solution Section */
/* Main section styling */
#solutions-section {
  color: #E4EDED;
  font-family: Arial, sans-serif;
  margin: 50px 0;
  padding: 0 90px; /* Consistent horizontal padding */
}

#solutions-section .inner {
  display: flex;
  gap: 40px;
  flex-direction: row;
  align-items: stretch; /* ✅ Make both columns same height */
}

/* Image block */
#image-container {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
}

#solution-image {
  width: 100%;
  height: 100%; /* ✅ Fill full height */
  object-fit: cover; 
  display: block;
  border-radius: 16px;
  flex: 1;
}

#solution-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #E4EDED;
  font-weight: 700;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 90%;
}

/* Navigation */
.navtab {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Tabs */
#tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-button {
  border: none;
  background: none;
  cursor: pointer;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 24px;
  color: #E4EDED;
  border-bottom: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.tab-button.active {
  color: #FDD34A;
  border-bottom: 3px solid #FDD34A;
}

/* Solution List */
#solution-list {
  list-style: none;
  padding-left: 0;
  border-top: 1px solid #2A2F38;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #B6C8CA;
}

#solution-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #2A2F38;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #B6C8CA;
  position: relative;
}

.list-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  padding: 0;
}


#solution-list li:last-child {
  border-bottom: none;
}

.hover-arrow {
      background-color: #F1C551;
      color: black;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      transform: translateX(10px);
      pointer-events: none;
    }

    #solution-list li:hover .hover-arrow {
      opacity: 1;
      transform: translateX(0);
    }

/* -------------------- RESPONSIVENESS -------------------- */

/* Tablets & below (<= 1024px) */
@media (max-width: 1024px) {
  #solutions-section .inner {
    flex-direction: column;
  }

  .navtab {
    margin-top: 30px;
  }

  #image-container {
    max-width: 100%;
    height: auto;
  }

  #solution-image {
    height: auto;
    object-fit: contain;
  }

  #solution-title {
    font-size: 22px;
    padding: 8px 16px;
    bottom: 16px;
    left: 16px;
  }

  .tab-button {
    font-size: 14px;
  }

  #solution-list li {
    padding: 30px 0;
    font-size: 14px;
  }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  #solution-title {
    font-size: 18px;
    padding: 6px 12px;
    bottom: 12px;
    left: 12px;
  }

  .tab-button {
    font-size: 13px;
  }

  .navtab {
    font-size: 14px;
  }

  #solution-list li {
    padding: 24px 0;
    font-size: 13px;
  }
  .hover-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
}
/* ---------- Intro Section ---------- */

.intro {
  padding: 6rem 6vw 0;
  background-color: #0a121f;
  font-family: 'Helvetica Neue', sans-serif;
}

.aligned-row {
  display: flex;
  align-items: flex-end; 
  gap: 3rem;
  width: 100%;
}

.small-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 200px;
  padding-top: 3.5rem;
}

.intro-text {
  font-size: 6.5rem;
  font-weight: 700;
  color: #e3edf5;
  line-height: 1.1;
  white-space: nowrap;
}

.discover-button {
  display: flex;
  align-items: flex-end;
  margin-left: auto;
}

.discover-text {
  background-color: #F1C551;
  color: black;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.discovercircle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.discovercircle-arrow:hover {
  transform: rotate(45deg);
}

.discoverarrow {
  font-size: 16px;
  pointer-events: none;
}

/* ---------- Responsive Intro Section ---------- */

@media (max-width: 1024px) {
  .intro-text {
    font-size: 4rem;
    white-space: normal;
  }

  .aligned-row {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 4rem 5vw 0;
  }

  .aligned-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .intro-text {
    font-size: 2.6rem;
    white-space: normal;
  }

  .small-text {
    padding-top: 0;
    max-width: 100%;
    font-size: 0.95rem;
  }

  .discover-button {
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }

  .discover-text {
    font-size: 14px;
    padding: 10px 16px;
  }

  .discovercircle-arrow {
    width: 40px;
    height: 40px;
  }

  .discoverarrow {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .intro {
    padding: 4rem 5vw 0;
  }

  .intro-text {
    font-size: 2.2rem;
  }

  .discover-text {
    padding: 12px 20px;
    font-size: 14px;
  }

  .discovercircle-arrow {
    width: 40px;
    height: 40px;
  }

  .discoverarrow {
    font-size: 14px;
  }
}

/* ---------- Horizontal Scroll Section ---------- */

.horizontal-scroll-section {
  height: 300vh;
  position: relative;
  background: transparent !important;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: transparent !important;
  display: flex;
  align-items: center;
}

.card-container {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

/* Card Styling */
.card {
  flex: 0 0 auto;
  width: 420px;
  background: transparent !important;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.card-image {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}

.tag.website {
  background: var(--tag-website);
  /* color: #000; */
}

.tag.app {
  background: var(--tag-app);
  /* color: white; */
}

.tag.extra {
  background: var(--tag-extra);
  /* color: #1e293b; */
}

/* ---------- Responsive Horizontal Scroll Section ---------- */

/* Desktop: Sticky Scroll with large cards */
@media (min-width: 1025px) {
  .horizontal-scroll-section {
    height: 300vh;
    position: relative;
  }

  .sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent !important;
  }

    .card-container > .card:last-child {
    margin-right: 13rem; /* Add margin to last card */
  }

  .card-container {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    will-change: transform;
    padding-right: 4rem;
  }

  .card {
    width: 420px;
    flex: 0 0 auto;
  }
}

/* Tablet & Mobile: Normal Horizontal Scroll with smaller cards */
@media (max-width: 1024px) {
  .horizontal-scroll-section {
    height: auto;
    padding: 2rem 1rem;
    background: transparent !important;
  }

  .sticky-wrapper {
    position: relative;
    height: auto;
    overflow: auto;
  }

  .card-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
    scroll-padding: 1rem;
  }

  .card-container::-webkit-scrollbar {
    height: 8px;
  }

  .card-container::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
  }

  .card {
    flex: 0 0 80%;
    max-width: 280px;
    scroll-snap-align: start;
    background: transparent !important;
    padding: 1rem;
    border-radius: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.85rem;
  }

  .card-tags {
    gap: 0.4rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Small Mobile tweaks */
@media (max-width: 480px) {
  .card {
    flex: 0 0 90%;
  }

  .card-container {
    padding-left: 1rem;
    gap: 0.8rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }

  .tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ========== New Section ========== */
.news-section {
  /* width: 100vw;  */
  /* margin: 0;     */
  padding: 60px 80px;
  /* background-color: #e6ddca; */
  position: relative;
}


.news-header {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  width: 100%;
  flex-wrap: wrap; /* allow wrapping */
}

.news-tagline {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 200px;
  padding-top: 3.5rem;
  margin: 0;
}

.news-title {
  font-size: 6.5rem;
  font-weight: 500;
  color: black;
  line-height: 1.1;
  white-space: nowrap;
  margin: 0;
}

.view-button {
  display: flex;
  align-items: flex-end;
  margin-left: auto;
  /* white-space: nowrap; */
}

.view-text {
  background-color: transparent;
  color: black;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid black;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.viewcircle-arrow {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.viewcircle-arrow:hover {
  transform: rotate(45deg);
}

.viewarrow {
  font-size: 16px;
  pointer-events: none;
}

.floating-profile {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 9999;
}

.floating-profile img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.news-list {
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid #d6cdb8;
}

.news-item:last-child {
  border-bottom: none;
}

.profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.author {
  font-weight: 600;
  margin-right: 35px;
  color: black;
}

.divider {
  height: 32px;
  width: 1px;
  background-color: #a49e8f;
  margin-right: 35px;
}

.article-title {
  flex-grow: 1;
  color: #000;
}

.date {
  font-weight: 500;
  white-space: nowrap;
  color: black;
}

/* ========== Responsive Rules ========== */

/* For screens narrower than 1200px */
@media (max-width: 1199px) {
  .news-section {
    padding: 50px 40px;
  }
  .news-title {
    font-size: 5rem;
    white-space: normal; /* allow wrap */
  }
  .news-header {
    gap: 2rem;
  }
}

/* For screens narrower than 992px */
@media (max-width: 991px) {
  .news-section {
    padding: 40px 30px;
  }
  .news-title {
    font-size: 4rem;
  }
  .news-tagline {
    font-size: 0.9rem;
    padding-top: 2rem;
  }
  .view-text {
    padding: 12px 20px;
    font-size: 16px;
  }
  .viewcircle-arrow {
    width: 40px;
    height: 40px;
  }
}

/* For screens narrower than 768px (mobile) */
@media (max-width: 767px) {
  .news-section {
    padding: 30px 20px;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .view-button {
    margin-left: 0;
  }
  .news-title {
    font-size: 3rem;
    white-space: normal;
  }
  .news-tagline {
    font-size: 0.9rem;
    padding-top: 0;
    max-width: 100%;
  }

  .news-list {
    padding-top: 2rem;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    padding: 16px 0;
  }
  .profile-pic {
    margin-right: 12px;
  }
  .author {
    margin-right: 16px;
  }
  .divider {
    display: none; /* hide divider on small */
    margin-right: 0;
  }
  .date {
    white-space: normal;
    margin-top: 8px;
  }

  .floating-profile {
    display: none; /* hide floating image on mobile, or adjust */
  }
}



/* Techstack Section */

/* Section */
.techstack-section {
  /* background-color: #eaf2f2; */
  padding: 60px 20px;
}

.techstack-container {
  /* max-width: 1200px; */
  margin: auto;
}

.techstack-subtitle {
  font-size: 18px;
  color: #6b6f76;
  margin: 10px 0 40px;
}

/* Filters */
.techstack-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.techstack-filter-btn {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 30px;
  border: 2px solid #0c121c20;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.techstack-filter-btn.active {
  background-color: #0c121c;
  color: white;
}

/* Actions */
.techstack-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}


/* Button wrapper */
.techstack-button {
  display: flex;
  align-items: flex-end;
  margin-left: auto; /* This pushes it to the end */
  /* gap: 1rem;  */
  white-space: nowrap;
}
/* Pill button */
.techstack-text {
  background-color: #F1C551;
  color: black;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* margin-right: auto;  */
}

.techstack-title-row {
  display: flex;
  flex-direction: column;
}

.techstack-title-left {
  display: flex;
  flex-direction: column;
}

.techstack-title-line {
  font-size: 6.5rem;
  font-weight: 500;
  color: #0c121c;
  line-height: 1.1;
}

.techstack-title-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.techstack-button-group {
  display: flex;
  align-items: center;
  gap: 0; /* No gap between button and arrow */
}

/* Subtitle + Check Integrations */
.techstack-subsection-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 40px;
  justify-content: space-between;
}


.techstack-subtitle {
  font-size: 18px;
  color: #6b6f76;
  margin: 0;
}

/* Circular arrow */
.techstackcircle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  /* margin-left: 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.techstackcircle-arrow:hover {
  transform: rotate(45deg);
}

.techstackarrow {
  font-size: 16px;
  pointer-events: none;
}


.techstack-btn{
  padding: 12px 35px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #0c121c;
  color: #0c121c;
}

.techstack-outline-btn {
  margin-left: 0;
}


/* Cards */
.techstack-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.techstack-card {
  border-radius: 10px;
  padding: 10px 30px;
  width: calc(33.333% - 16px);
  min-width: 300px;
  min-height: 300px;
  transition: transform 0.3s;
  display: flex; /* ← changed */
  flex-direction: column; /* ← added */
}


.techstack-card:hover {
  transform: translateY(-5px);
}

.techstack-card-title {
  margin: 16px 0 8px;
  font-size: 20px;
  color: #0c121c;
}

.techstack-card-desc {
  font-size: 14px;
  color: #6b6f76;
}

/* Icons */
.techstack-icon {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 8px;
}


.techstack-icon-wrapper {
  width: 170px;
  height: 170px;
  border: 1px solid #48545C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}


/* Specific Icons */
.techstack-laravel-icon {
  background-image: url('https://laravel.com/img/logomark.min.svg');
}

.techstack-vue-icon {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/95/Vue.js_Logo_2.svg');
}

.techstack-filament-icon {
  background-color: transparent;
  color: #fca652;
  font-weight: bold;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ----------- Responsive Styles ----------- */
/* Tablets (768px and below) */
@media (max-width: 768px) {
  .techstack-title-line {
    font-size: 3.5rem;
  }

  .techstack-card {
    width: 100%;
  }

  .techstack-filters {
    flex-direction: column;
    gap: 10px;
  }

  .techstack-subsection-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .techstack-title-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ✅ Keep button and arrow side by side */
  .techstack-button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .techstack-text {
    font-size: 15px;
    padding: 12px 20px;
  }

  .techstackcircle-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Phones (480px and below) */
@media (max-width: 480px) {
  .techstack-title-line {
    font-size: 2.8rem;
  }

  .techstack-card {
    width: 100%;
    min-width: auto;
    padding: 16px;
  }

  .techstack-icon-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .techstack-icon {
    width: 40px;
    height: 40px;
  }

  .techstack-btn,
  .techstack-filter-btn {
    width: 100%;
    text-align: center;
  }

  /* ✅ Still side by side on mobile */
  .techstack-button-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .techstack-text {
    width: auto;
    font-size: 14px;
    padding: 10px 18px;
    text-align: center;
  }

  .techstackcircle-arrow {
    width: 38px;
    height: 38px;
  }

  .techstack-title-row {
    gap: 20px;
  }
}



/* Team Hero Section */
.team-hero {
  display: flex;
  line-height: 1.1;
  flex-direction: column;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

/* Content */
.team-hero__content {
  width: 100%;
}

/* Heading */
.team-hero__heading {
  font-size: 6.5rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
  text-align: left;
  /* padding: 60px 20px; */
}

.team-hero__highlight {
  color: #ffffff;
}

/* Flex container for paragraph + buttons */
.team-hero__subsection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 20px;
  flex-wrap: wrap;
}

/* Subtext */
.team-hero__subtext {
  font-size: 1rem;
  color: #b0c4d2;
  margin: 0;
  padding: 0;
  flex: 1 1 0px;
  text-align: left;
  line-height: 1.6;
}

/* Button group */
.team-hero__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

/* Combined wrapper for text + arrow */
.team-hero__button {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Our Vacancies button */
.team-hero-text {
  background-color: #F1C551;
  color: black;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.team-hero-text:hover {
  /* background-color: #e0b541; */
  transform: translateY(-2px);
}

/* Circle arrow button */
.team-herocircle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  /* margin-left: -12px; */
}

.team-herocircle-arrow:hover {
  transform: rotate(45deg);
  /* background-color: #e0b541; */
}

.team-heroarrow {
  font-size: 20px;
  pointer-events: none;
}

/* About us button */
.team-hero__btn--secondary {
  background-color: transparent;
  border: 1px solid #e6f0f3;
  color: #e6f0f3;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.team-hero__btn--secondary:hover {
  background-color: rgba(230, 240, 243, 0.1);
  transform: translateY(-2px);
}

/* Team Slider Section */
.team-slider {
  width: 100%;
  padding: 40px 20px 60px;
  position: relative;
  display: flex;
  justify-content: center;
}

.team-slider-arc-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1200px;
}

/* Each card wrapper is absolutely positioned */
.team-slider-card-wrapper {
  position: absolute;
  transition: transform 0.3s ease;
  animation: team-slider-float 4s ease-in-out infinite;
}

/* Stagger animation delays for each card */
.team-slider-card-wrapper:nth-child(1) { animation-delay: 0s; }
.team-slider-card-wrapper:nth-child(2) { animation-delay: 0.5s; }
.team-slider-card-wrapper:nth-child(3) { animation-delay: 1s; }
.team-slider-card-wrapper:nth-child(4) { animation-delay: 1.5s; }
.team-slider-card-wrapper:nth-child(5) { animation-delay: 2s; }

/* Card styles */
.team-slider-card {
  width: 270px;
  height: 350px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-slider-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.team-slider-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-slider-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-slider-card:hover .team-slider-card-inner img {
  transform: scale(1.1);
}

.team-slider-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 22, 37, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-slider-card:hover .team-slider-card-overlay {
  opacity: 1;
}

/* Hover details content */
.team-slider-card-details {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  max-width: 230px;
}

.team-slider-card-details h3 {
  font-size: 20px;
  margin: 0 0 5px;
}

.team-slider-card-details p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.3;
}

/* Floating animation */
@keyframes team-slider-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Award Section */
.awards-section {
  padding: 60px 20px;
  margin: 0 auto;
}

.awards-header {
  text-align: left;
  padding: 60px 0px;
}

.awards-count {
  color: #cbd5e1;
  font-size: 16px;
  margin: 0 0 20px 0;
}

.awards-count span {
  margin-left: 4px;
}

.awards-header h2 {
  font-size: 6.5rem;
  font-weight: 500;
  color: #e2e8f0;
  max-width: 900px;
  line-height: 1.1;
  margin: 0;
}

.awards-carousel {
  display: flex;
  overflow: hidden;
  gap: 20px;
  position: relative;
  padding: 10px 0;
}

.award-card {
  border: 1px solid #2c3e50;
  border-radius: 8px;
  width: 200px;
  min-width: 200px;
  height: 200px;
  padding: 20px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.award-card:hover {
  transform: scale(1.05);
  border-color: #4a5568;
}

.award-card img {
  max-height: 50px;
  max-width: 100%;
  margin-bottom: 10px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.award-card .big-number {
  font-size: 48px;
  margin: 0;
  color: #e2e8f0;
}

.award-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #64748b;
  color: #e2e8f0;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .team-hero__heading {
    font-size: 4.5rem;
    padding: 40px 40px 20px;
  }

  .team-hero__subsection {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 40px;
  }

  .team-hero__subtext {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .team-hero__buttons {
    justify-content: flex-start;
  }

  .team-slider {
    padding: 30px 20px 50px;
  }

  .team-slider-arc-container {
    height: 500px;
  }

  .team-slider-card {
    width: 220px;
    height: 300px;
  }

  .team-slider-card-details {
    max-width: 180px;
    font-size: 16px;
  }

  .awards-header {
    padding: 50px 60px;
  }

  .awards-header h2 {
    font-size: 5rem;
  }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  .team-hero {
    padding: 20px 16px 40px;
  }

  .team-hero__heading {
    font-size: 3rem;
    padding: 20px 0 10px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .team-hero__subsection {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; /* smaller gap between text and buttons */
    padding: 10px;
  }

  .team-hero__subtext {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0; /* remove unwanted space below text */
    padding: 0;
  }

  .team-hero__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* gap: 10px; */
    margin-top: 10px; /* ensure no top margin */
  }

  .team-hero__button {
    display: flex;
    align-items: center;
    /* gap: 6px; */
    margin: 0; /* ensure no margin causing gap */
  }

  .team-hero-text,
  .team-hero__btn--secondary {
    padding: 10px 18px;
    font-size: 14px;
  }

  .team-herocircle-arrow {
    width: 40px;
    height: 40px;
    display: flex; /* ensure visible */
  }

  .team-slider {
    padding: 25px 15px 40px;
  }

  .team-slider-arc-container {
    height: 400px;
  }

  .team-slider-card {
    width: 180px;
    height: 240px;
  }

  .team-slider-card-details {
    font-size: 14px;
    max-width: 150px;
    bottom: 15px;
    left: 15px;
  }

  .awards-header {
    padding: 40px 30px;
  }

  .awards-header h2 {
    font-size: 3.5rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .team-hero__heading {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .team-hero__subsection {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .team-hero__subtext {
    font-size: 0.85rem;
  }

  .team-hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
  }

  .team-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .team-hero-text,
  .team-hero__btn--secondary {
    width: 100%;
    text-align: center;
  }

  .team-herocircle-arrow {
    display: flex; /* keep arrow visible */
  }

  .team-slider {
    padding: 20px 15px 30px;
  }

  .team-slider-arc-container {
    height: 320px;
  }

  .team-slider-card {
    width: 140px;
    height: 190px;
  }

  .team-slider-card-details {
    font-size: 12px;
    max-width: 120px;
    bottom: 12px;
    left: 12px;
  }

  .team-slider-card-details h3 {
    font-size: 16px;
  }

  .team-slider-card-details p {
    font-size: 11px;
  }

  .awards-header {
    padding: 30px 20px;
  }

  .awards-count {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .awards-header h2 {
    font-size: 2.5rem;
  }

  .award-card {
    width: 160px;
    min-width: 160px;
    height: 160px;
    padding: 15px;
  }

  .award-card .big-number {
    font-size: 36px;
  }
}

/* ========== NEXT STEP SECTION ========== */
.next-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  width: 100%;
  position: relative; 
  /* gap: 40px; */
  /* background: linear-gradient(180deg, #2C6A7C 0%, #0B1923 100%); */
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
  max-width: 100%;
  /* max-width: 1500px; */
}


/* Heading */
.next-step__heading {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: flex-start;
}

/* Profile Section */
.next-step__profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

/* Profile Image */
.next-step__img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.next-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profile Info + Icons */
.next-step__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.next-step__info {
  text-align: left;
  justify-content: center;
  align-items: center;
}

.next-step__name {
  font-weight: 600;
  font-size: 1.1rem;
}

.next-step__role {
  color: #b0c4d2;
  font-size: 0.95rem;
}

/* Icons */
.next-step__icons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.next-step__icon {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.next-step__icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ========== BUTTON ========== */
.next-step__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* gap: 10px; */
  margin-top: 20px;
  flex-wrap: nowrap;
}

.next-step-text {
  background-color: #F1C551;
  color: black;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  white-space: nowrap;
}

.next-step-text:hover {
  transform: translateY(-2px);
  background-color: #e0b541;
}

/* Circle Arrow */
.next-stepcircle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.next-stepcircle-arrow:hover {
  transform: rotate(45deg);
}

.next-steparrow {
  font-size: 20px;
}

/* ========================================================= */
/* =============== RESPONSIVENESS =========================== */
/* ========================================================= */

/* Large Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .next-step__heading {
    font-size: 3.2rem;
  }

  .next-step__profile {
    gap: 20px;
  }

  .next-step-text {
    font-size: 15px;
    padding: 12px 22px;
  }

  .next-stepcircle-arrow {
    width: 44px;
    height: 44px;
  }
}

/* Tablets & Small Laptops (<= 768px) */
@media (max-width: 768px) {
  .next-step {
    align-items: flex-start;
    gap: 30px;
    padding: 60px 20px;
  }

  .next-step__heading {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }

  .next-step__profile {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .next-step__img {
    width: 80px;
    height: 80px;
  }

  .next-step__details {
    /* gap: 8px; */
    justify-content: center;
    align-items: center;
  }

  .next-step__info {
    justify-content: center;
    align-items: center;
  }

  .next-step__button {
    margin-top: 16px;
  }

  .next-step-text {
    font-size: 14px;
    padding: 12px 20px;
  }

  .next-stepcircle-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Mobile Portrait (<= 480px) */
@media (max-width: 480px) {
  .next-step {
    align-items: flex-start;
    gap: 20px;
    padding: 40px 16px;
  }

  .next-step__heading {
    font-size: 2rem;
    text-align: left;
  }

  .next-step__profile {
    flex-direction: row;
    gap: 14px;
  }

  .next-step__details {
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .next-step__info {
    justify-content: center;
    align-items: center;
  }

  .next-step__img {
    width: 70px;
    height: 70px;
  }

  .next-step__name {
    font-size: 1rem;
    justify-content: center;
    align-items: center;
  }

  .next-step__role {
    font-size: 0.9rem;
  }

  .next-step__icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* Keep button and arrow together */
  .next-step__button {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* gap: 8px; */
  }

  .next-step-text {
    width: auto;
    font-size: 14px;
    padding: 10px 18px;
  }

  .next-stepcircle-arrow {
    width: 40px;
    height: 40px;
  }
}

/* Extra Small (<= 360px) */
@media (max-width: 360px) {
  .next-step__heading {
    font-size: 1.8rem;
  }

  .next-step-text {
    font-size: 13px;
    padding: 8px 16px;
  }

  .next-stepcircle-arrow {
    width: 36px;
    height: 36px;
  }
}

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden;
  clip: rect(0, 0, 0, 0); 
  white-space: nowrap; 
  border: 0;
}

/* Footer styles */
.footer {
  padding: 40px 20px;
  background-color: #08121d;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  user-select: none;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #203040;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footer__logo-and-trust {
  flex: 1 1 350px;
  min-width: 300px;
}

.footer__logo {
  margin-bottom: 25px;
}
.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* Trust logos container */
.footer__trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-logo {
  background: #0b1923;
  border: 1px solid #203040;
  border-radius: 8px;
  padding: 15px 20px;
  min-width: 120px;
  text-align: center;
  color: #8aa0b6;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.trust-logo img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  object-fit: contain;
}

.trust-logo span {
  font-weight: 500;
  line-height: 1.2;
}

.trust-logo.google-review {
  flex: 1 1 180px;
  justify-content: center;
}

.trust-logo.google-review .stars {
  color: #ffc107; /* gold stars */
  font-weight: 700;
  margin-top: 6px;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Newsletter */
.footer__newsletter {
  flex: 1 1 320px;
  user-select: text;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* aligns both heading and form to the right */
  text-align: right;
}

.footer__newsletter h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 14px;
  color: #fff;
  text-align: right;
}

/* ---------------------------- */
/* Newsletter Form (Desktop)    */
/* ---------------------------- */
.newsletter-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 320px;
  width: 100%;
  flex-wrap: nowrap;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 18px 20px;
  border-radius: 30px;
  border: none;
  background-color: #203040;
  color: #8aa0b6;
  font-size: 14px;
  outline-offset: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: #5c6d7f;
}

.newsletter-form input[type="email"]:focus {
  background-color: #314a6f;
  color: #fff;
}

.newsletter__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

/* ---------------------------- */
/* Circle Button                */
/* ---------------------------- */
.newslettercircle-arrow {
  width: 48px;
  height: 48px;
  background-color: #F1C551;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.newslettercircle-arrow:hover {
  transform: rotate(45deg);
}

.newsletterarrow {
  font-size: 20px;
  color: #000;
}

/* ---------------------------- */
/* Footer Links Grid (Base)     */
/* ---------------------------- */
.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px 30px;
}

.footer__column h4 {
  font-weight: 600;
  font-size: 14px;
  color: #647a95;
  margin-bottom: 12px;
  user-select: text;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column ul li {
  margin-bottom: 10px;
  user-select: text;
}

.footer__column ul li a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__column ul li a:hover {
  color: #f5c252;
}

/* ------------------------------------------------ */
/* RESPONSIVE DESIGN                                */
/* ------------------------------------------------ */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .footer__newsletter {
    align-items: flex-end;
    text-align: right;
  }

  .footer__newsletter h3 {
    font-size: 22px;
  }

  .newsletter-form {
    max-width: 280px;
  }

  .newslettercircle-arrow {
    width: 44px;
    height: 44px;
  }
}

/* Medium Devices (<= 768px) */
@media (max-width: 768px) {
  .footer__newsletter {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .footer__newsletter h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .newsletter-form {
    justify-content: center;
    max-width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 70%;
    padding: 16px 18px;
    font-size: 14px;
  }

  .newslettercircle-arrow {
    width: 44px;
    height: 44px;
  }
}

/* Small Devices (<= 480px) */
@media (max-width: 480px) {
  .footer__newsletter {
    align-items: center;
    text-align: center;
  }

  .footer__newsletter h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .newsletter-form {
    flex-direction: row; /* ✅ keep input & button side-by-side */
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 80%; /* keeps input dominant */
    text-align: left;
    padding: 16px 18px;
    font-size: 14px;
    border-radius: 30px;
  }

  .newslettercircle-arrow {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}


/* Very Small Devices (<= 360px) */
@media (max-width: 360px) {
  .footer__newsletter h3 {
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: row; /* ✅ keep input & button side-by-side */
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 95%;
    font-size: 13px;
  }

  .newslettercircle-arrow {
    width: 40px;
    height: 40px;
  }
}
