* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: white;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

header,
nav {
  margin: 0;
  padding: 0;
}

.navbar {
  height: 10vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo {
  height: 180%;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 1000;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #dd4e69;
}

.cta-btn {
  background-color: #dd4e69;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 30%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #c1405a;
}

.pushable {
  position: relative;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  outline-color: #dd4e69;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  --btn-h: 3rem;
  --btn-px: 2rem;
  height: var(--btn-h);
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #a23a4f;
  border-radius: 8px;
  filter: blur(2px);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(
      to right,
      #b84057 0%,
      #dd4e69 8%,
      #b84057 92%,
      #9c3044 100%
  );
}

.front {
  display: block;
  position: relative;
  border-radius: 8px;
  background: #dd4e69;
  padding: 0 1.5rem; /* Reduced horizontal padding */
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
  filter: brightness(110%);
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.hero-title {
  font-size: 8rem;
  font-weight: 700;
  line-height: 2;
  margin: 0;
}

.hero-bar {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: 400;
  opacity: 0.8;
}

.hero-subtitle {
  font-size: 2rem;
  font-style: italic;
  margin: 0.5rem 0 2rem;
  line-height: 1.2;
}

.db {
  color: #dd4e69;
}

.scrolling-wrapper {
  background: #111;
  overflow: hidden;
  padding: 40px 0;
}

.scroll-row {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
  color: #dd4e69;
  animation: scroll-left 25s linear infinite;
}

.scroll-row.reverse {
  animation: scroll-right 25s linear infinite;
}

.scroll-row span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px #666;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.brainsells-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.brainsells-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 250px 20px 0 20px; /* Increased padding */
  color: white;
  font-size: 1.5em;
}

.brainsells-content small {
  font-size: 0.9em;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: inline-block;
}

.brainsells-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.brainsells-content p {
  font-size: 1em;
  line-height: 1.8;
  color: #f2f2f2;
  margin-bottom: 50px;
}

.brainsells-content p a {
  color: #fff;
  text-decoration: underline;
}

.custom-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 65, 108, 0.3);
  background: linear-gradient(to right, #ff5f7e, #dd4e69);
}

.custom-button {
  background: linear-gradient(to right, #dd4e69, #ff7e5f);
  color: white;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-button:hover {
  background: linear-gradient(to right, #ff7e5f, #dd4e69);
}


.woman-banner {
  position: relative;
  height: 50vh; /* Updated height */
  background-color: #dd4e69;
  overflow: hidden;
}

.woman-image {
  width: 100%; /* Updated width */
  height: 100%; /* Updated height */
  object-fit: cover;
  display: block; /* Ensures it behaves as a block element */
}

.woman-content-box {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  background-color: #f6c7c2;
  padding: 40px;
  max-width: 500px;
  color: #000;
  z-index: 2;
  margin-left: 20rem; /* New margin */
}

.woman-content-box h2 {
  font-size: 3rem; /* Updated font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.woman-content-box p {
  font-size: 1rem; /* Updated font size */
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
}

---


.contact-split {
  display: flex;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-left {
  background-color: #111;
  padding: 40px;
  border-radius: 6px;
  flex: 1;
  min-width: 350px;
}

.contact-left h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #bbb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  background-color: #0d0d0d;
  border: none;
  border-bottom: 1px solid #555;
  color: white;
  padding: 12px 10px;
  font-size: 0.95rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #dd4e69;
}

.contact-right {
  flex: 1;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right .meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

.contact-right h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-right p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #ddd;
}

.contact-right a {
  color: #fff;
  text-decoration: underline;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.social-icons i {
  font-size: 1.1rem;
  color: white;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #dd4e69;
}


.neuromarketing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 60px;
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  background-color: #111;
}

.section-title {
  font-size: 2.5rem;
  color: #dd4e69;
  margin-bottom: 60px;
  text-align: center;
}

.neuromarketing-section h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  color: #fff;
}

.neuromarketing-section h3 {
  font-size: 2rem;
  color: #dd4e69;
  margin-top: 2em;
}

.neuromarketing-section p {
  font-size: 1.2rem;
  line-height: 1.7em;
  color: #ccc;
  max-width: 900px;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.deliverables div {
  background: #1a1a1a;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 8px;
  flex: 1 1 250px;
  color: #eee;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.card {
  width: 24rem;
  height: 45rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-time {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 5px;
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.card-footer {
  font-size: 0.9rem;
  color: #888;
}

.color2 {
  color: #dd4e69;
}

.site-footer {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 60px 5vw 30px;
  font-size: 1.33rem;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 80px;
}

.footer-logo {
  flex: 1;
  min-width: 150px;
}

.footer-logo img {
  width: 15rem;
  height: auto;
}

.footer-columns {
  flex: 3;
  display: flex;
  justify-content: center;
  column-gap: 100px;
  row-gap: 50px; /* for stacked layout on smaller screens */
  flex-wrap: wrap;
  text-align: left;
}

.footer-column {
  min-width: 220px;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 2rem; /* or 15px for more spacing */
}

.footer-column a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #dd4e69;
}

.subscribe-icon {
  font-weight: 700;
  margin-left: 10px;
}

.subtext {
  opacity: 0.7;
  margin: 10px 0;
  font-size: 1.19rem;
}

.contact-icons {
  margin-top: 10px;
}

.contact-icons a {
  color: #ffffff;
  font-size: 1.68rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #dd4e69;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.footer-links a {
  margin: 0 15px;
  color: #ffffff;
}

.footer-links a:hover {
  color: #dd4e69;
}

.footer-column > *:not(:last-child) {
  margin-bottom: 25px;
}

/* --- Media Query for Mobile Screens (max-width: 48rem / 768px) --- */
@media (max-width: 48rem) {
  /* Adjustments for Hero Section */
  .hero-section {
    height: 70vh; /* Reduce hero section height on mobile */
  }

  .hero-title {
    font-size: 3.5rem; /* Make DBagency title smaller */
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.2rem; /* Make creative digital subtitle smaller */
    margin-bottom: 1.5rem;
  }

  /* Adjustments for Scrolling Bar */
  .scrolling-wrapper {
    padding: 20px 0; /* Reduce padding for the scrolling bar */
  }

  .scroll-row {
    font-size: 2.5rem; /* Make scrolling text smaller */
    gap: 30px; /* Reduce gap between items */
    animation-duration: 15s; /* Speed up the scroll for shorter text */
  }

  .scroll-row.reverse {
    animation-duration: 15s;
  }

  /* Adjustments for BrainSells Section */
  .brainsells-section {
    height: auto; /* Allow height to adjust to content */
    padding-bottom: 3rem; /* Add some bottom padding */
  }

  .brainsells-content {
    padding: 100px 20px 0 20px; /* Adjust top padding for content */
    font-size: 1em; /* Base font size */
  }

  .brainsells-content small {
    font-size: 0.75em; /* Smaller "Our methodology" */
  }

  .brainsells-content h1 {
    font-size: 2.2rem; /* Smaller "BrainSells" title */
    margin-bottom: 1rem;
  }

  .brainsells-content p {
    font-size: 0.9rem; /* Smaller paragraph text */
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Adjustments for Woman Banner Section */
  .woman-banner {
    height: auto; /* Allow height to adjust */
    display: flex; /* Use flexbox to stack content and image */
    flex-direction: column-reverse; /* Put image on top for better flow */
    position: relative; /* Ensure positioning context */
  }

  .woman-image {
    width: 100%;
    height: 50vh; /* Give image a fixed height */
    object-position: center bottom; /* Adjust if image cut-off */
  }

  .woman-content-box {
    position: static; /* Remove absolute positioning */
    transform: none; /* Remove transform */
    margin: 0; /* Reset margin */
    padding: 20px; /* Smaller padding */
    max-width: 100%; /* Take full width */
    text-align: center; /* Center text */
    background-color: #f6c7c2; /* Keep background */
    z-index: 1; /* Adjust z-index if needed */
  }

  .woman-content-box h2 {
    font-size: 1.8rem; /* Smaller H2 for "Different brains..." */
    margin-bottom: 15px;
  }

  .woman-content-box p {
    font-size: 0.9rem; /* Smaller paragraph */
    margin-bottom: 20px;
  }

  /* Adjustments for Neuromarketing Section */
  .neuromarketing-section {
    padding: 60px 15px 30px; /* Reduce padding */
  }

  .neuromarketing-section .section-title {
    font-size: 2rem; /* Smaller "Why Neuromarketing" title */
    margin-bottom: 40px;
  }

  .cards-container {
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center stacked cards */
    gap: 20px; /* Adjust gap */
  }

  .card {
    width: 90%; /* Make cards take more width on small screens */
    height: auto; /* Allow card height to adjust */
  }

  .card img {
    height: 200px; /* Give card images a fixed height */
  }

  .card-title {
    font-size: 1.1rem; /* Adjust card title size */
  }

  /* Adjustments for Contact Split Section */
  .contact-split {
    padding: 40px 20px; /* Reduce padding */
    gap: 30px; /* Reduce gap between left/right columns */
    flex-direction: column; /* Stack columns vertically */
  }

  .contact-left,
  .contact-right {
    min-width: unset; /* Remove min-width to allow full flexibility */
    width: 100%; /* Take full width */
  }

  .contact-left h3 {
    font-size: 1.2rem; /* Smaller contact form title */
  }

  .contact-right .meta {
    font-size: 0.7rem; /* Smaller meta text */
  }

  .contact-right h2 {
    font-size: 1.5rem; /* Smaller "Let's Start Working Together" title */
    line-height: 1.3;
  }

  .contact-right p {
    font-size: 0.85rem; /* Smaller contact info paragraph */
  }

  /* Adjustments for Footer */
  .site-footer {
    padding: 40px 20px 20px; /* Adjust footer padding */
    font-size: 1rem; /* Base footer font size */
  }

  .footer-top {
    grid-template-columns: 1fr; /* Stack logo and columns */
    gap: 40px;
  }

  .footer-logo {
    display: flex;
    justify-content: center; /* Center logo when stacked */
  }

  .footer-logo img {
    width: 10rem; /* Smaller logo */
  }

  .footer-columns {
    flex-direction: column; /* Stack footer columns */
    align-items: center; /* Center content in columns */
    text-align: center; /* Center text in columns */
    gap: 30px; /* Adjust gap between columns */
  }

  .footer-column {
    min-width: unset;
    max-width: 90%; /* Take more width */
  }

  .footer-column h4 {
    font-size: 1.2rem; /* Smaller footer headings */
  }

  .footer-column ul li {
    margin-bottom: 1rem; /* Reduce list item spacing */
  }

  .subtext {
    font-size: 0.9rem; /* Smaller subtext in subscribe column */
  }

  .contact-icons a {
    font-size: 1.3rem; /* Smaller social icons in footer */
  }

  .footer-bottom {
    font-size: 0.85rem; /* Smaller copyright text */
    margin-top: 30px;
  }
}
.contact-section {
  display: flex;
  gap: 5rem; /* 80px/16 = 5rem */
  padding: 5rem 10vw; /* 80px/16 = 5rem */
  background-color: #0f0f0f;
  color: #ffffff;
  flex-wrap: wrap; /* Allows columns to stack on smaller screens */
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 18.75rem; /* 300px/16 = 18.75rem */
}

.form-box {
  background-color: #151515;
  padding: 2.5rem; /* 40px/16 = 2.5rem */
  border-radius: 0.375rem; /* 6px/16 = 0.375rem */
}

.contact-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); /* Adaptive font size */
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.contact-left p {
  font-size: 0.9rem; /* Already rem */
  opacity: 0.7;
  margin-bottom: 1.875rem; /* 30px/16 = 1.875rem */
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem; /* 25px/16 = 1.5625rem */
}

label {
  font-weight: 600;
  font-size: 1rem; /* Already rem */
}

input,
textarea {
  background: transparent;
  border: none;
  border-bottom: 0.0625rem solid #555; /* 1px/16 = 0.0625rem */
  color: #fff;
  padding: 0.625rem 0; /* 10px/16 = 0.625rem */
  font-size: 1rem; /* Already rem */
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #dd4e69;
}

.contact-right .section-label {
  font-size: 0.9rem; /* Already rem */
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.contact-right h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Adaptive font size */
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.25rem; /* 20px/16 = 1.25rem */
}

.contact-right p {
  font-size: 1rem; /* Already rem */
  line-height: 1.7;
  margin-bottom: 0.625rem; /* 10px/16 = 0.625rem */
}

.contact-icons {
  margin-top: 1.25rem; /* 20px/16 = 1.25rem */
  display: flex;
  gap: 1.25rem; /* 20px/16 = 1.25rem */
  font-size: 1.3rem; /* Already rem */
}

.contact-icons a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #dd4e69;
}
