html {
  scroll-behavior: smooth;
}

body.partnership-body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Zalando Sans", sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000000;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block;
}

/* Hero Section */
#partnership-hero {
  position: relative;
  min-height: 70vh;
  width: 100%;
  background-color: #ffffff;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 20px;
  box-sizing: border-box;
}

.hero-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left Hero Content */
.hero-left {
  flex: 1;
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -50px;
}

.page-title {
  font-size: 50px;
  line-height: 1.1;
  font-family: "Zalando Sans", sans-serif;
  color: #000000;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #f59ba2;
  letter-spacing: 2.5px;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  padding-bottom: 15px;
}

/* Pink line under the subheading */
.hero-subtitle::after {
  content: "";
  display: block;
  width: 260px;
  height: 3px;
  background-color: #010000;
  margin-top: 15px;
  border-radius: 2px;
}

/* Hero Right Canvas */
.hero-right {
  flex: 1.2;
  position: relative;
  height: 500px;
  width: 100%;
  max-width: 700px;
  margin-top: -30px;
}

.floating-sponsors-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Circular Sponsor Container */
.circular-sponsor {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
  touch-action: none;
  animation: floatRandom 4s ease-in-out infinite alternate;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.circular-sponsor.dragging {
  cursor: grabbing;
  transform: scale(1.15);
  opacity: 0.95;
}

.circular-sponsor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

.circular-sponsor:hover {
  transform: scale(1.15);
  z-index: 20;
}

/* Floating Motion Animation */
@keyframes floatRandom {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}

/* Sponsor Positions matching reference image */
.sp-1 {
  width: 120px;
  height: 120px;
  top: 0%;
  left: 75%;
  animation-delay: 0s;
} /* IIHM */
.sp-2 {
  width: 105px;
  height: 105px;
  top: 5%;
  left: 25%;
  animation-delay: 0.6s;
} /* Kolkatanama */
.sp-3 {
  width: 135px;
  height: 135px;
  top: 2%;
  left: -15%;
  animation-delay: 1.2s;
} /* Skin Bee */
.sp-4 {
  width: 115px;
  height: 115px;
  top: 25%;
  left: 48%;
  animation-delay: 1.8s;
} /* Addya Foods */
.sp-5 {
  width: 120px;
  height: 120px;
  top: 80%;
  left: 70%;
  animation-delay: 0.8s;
} /* Tani's */
.sp-6 {
  width: 105px;
  height: 105px;
  top: 69%;
  left: 35%;
  animation-delay: 2.2s;
} /* Debdipa's */
.sp-7 {
  width: 115px;
  height: 115px;
  top: 80%;
  left: -10%;
  animation-delay: 1.4s;
} /* Tandra's */
.sp-8 {
  width: 130px;
  height: 130px;
  top: 39%;
  left: 12%;
  animation-delay: 0.4s;
} /* Decohome */
.sp-9 {
  width: 105px;
  height: 105px;
  top: 45%;
  left: 88%;
  animation-delay: 1.6s;
} /* Grooming Destination */

/* Main Container & Benefits */
.partnership-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-wrapper h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.section-title-wrapper h2 span {
  background: linear-gradient(
    to right,
    #e60012 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #e60012 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.benefit-card {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 155, 162, 0.4);
}

.benefit-card h4 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #f59ba2;
  margin: 0 0 8px 0;
}

.benefit-card h2 {
  font-size: 22px;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0;
}

.benefit-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Form Styling */
.partner-form-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-glass-card {
  width: 100%;
  max-width: 850px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 50px 45px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f59ba2;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: "Zalando Sans", sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%22%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23f59ba2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 18px top 50%;
  background-size: 12px auto;
}

.form-group select option {
  background-color: #111111;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ed1b24;
  box-shadow: 0 0 12px rgba(237, 27, 36, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 15px;
}

.spl-btn button {
  border: none;
  background: linear-gradient(
    to right,
    #ff0d25 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #ff0d25 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  font-family: "Zalando Sans", sans-serif;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition:
    background-position 0.6s ease-in-out,
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.spl-btn button:hover {
  background-position: 100% 0%;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(237, 27, 36, 0.3);
}

.spl-btn-submit {
  border: none;
  background: linear-gradient(
    to right,
    #ff0d25 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #ff0d25 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  font-family: "Zalando Sans", sans-serif;
  padding: 15px 45px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(237, 27, 36, 0.25);
  transition:
    background-position 0.6s ease-in-out,
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.spl-btn-submit:hover {
  background-position: 100% 0%;
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(237, 27, 36, 0.45);
}

/* Responsiveness */
@media screen and (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .hero-subtitle::after {
    margin: 15px auto 0;
  }

  .hero-right {
    height: auto !important;
    min-height: auto !important;
    max-width: 100% !important;
    margin-top: 20px !important;
  }

  /* Responsive Flex Wrap layout for Sponsor Bubbles on mobile/tablet */
  .floating-sponsors-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    height: auto !important;
    padding: 20px 10px !important;
    transform: none !important;
  }

  .circular-sponsor,
  .sp-1,
  .sp-2,
  .sp-3,
  .sp-4,
  .sp-5,
  .sp-6,
  .sp-7,
  .sp-8,
  .sp-9 {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 95px !important;
    height: 95px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Hide header button on mobile */
  .desktop-only {
    display: none !important;
  }

  /* Display mobile button inside expanded hamburger menu */
  .mobile-only {
    display: block !important;
    width: 100%;
    margin-top: 10px;
  }

  #nav-buttons .mobile-only a {
    display: block;
    width: 100%;
  }

  #nav-buttons .mobile-only button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(
      to right,
      #ff0d25 0%,
      #f59ba2 25%,
      #fae2e5 50%,
      #f59ba2 75%,
      #ff0d25 100%
    );
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(237, 27, 36, 0.25);
    transition: all 0.3s ease;
  }

  #nav-buttons .mobile-only button:hover,
  #nav-buttons .mobile-only button:active {
    background-position: 100% 0%;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(237, 27, 36, 0.4);
  }

  #nav-buttons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    margin-top: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  #nav-buttons.active {
    display: flex;
  }

  #nav-buttons a {
    width: 100%;
    text-align: center;
  }

  #nav-buttons button {
    width: 100%;
    padding: 10px;
  }

  .page-title {
    font-size: 32px;
  }

  #partnership-hero {
    min-height: auto;
    padding: 100px 20px 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-glass-card {
    padding: 30px 20px;
  }
}