:root {
  --white: #f8f8f8;
  --black: hsl(210, 75%, 5%);
  --primary: hsl(25, 100%, 50%);
  --radius: 0.5rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  line-height: 3.6rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;

}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

#rain-container {
  color: var(--white);
  background-color: var(--black);
  min-height: 100vh;
  background-image: url(https://plugin.contentiy.com/wp-content/uploads/2025/02/background-pattern.png);
  background-size: 100px;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-family: 'Jost';
  font-weight: 400;
  max-width: 128rem;
  margin: 0 auto;
  z-index: 0;
  overflow-x: hidden;
}

.container {
  padding: 10px 15px;
}

button {
  font-family: 'Jost';
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 500;
  color: var(--primary);
  background-color: transparent;
  border: 2px solid var(--primary);
  outline: none;
  border-radius: var(--radius);
  transition: all 0.3s ease-in-out;

}

ul {
  padding-left: 3rem;
  margin: 1rem 0;
}

table {
  font-family: 'Jost';
  border-collapse: collapse;
  width: 100%;
  font-size: 1.6rem;
}

th {
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--black);
  border: 1px solid #777;
  outline: 1px solid #777;
}

th,
td {
  border: 1px solid #777;
  text-align: left;
}

tr th {
  font-size: 1.8rem;
}

tr:nth-child(even) td a {
  background: rgba(68, 68, 68, 0.3);
}

tr:nth-child(odd) td a {
  background: rgba(34, 34, 34, 0.3);
}

td a {
  display: block;
  padding: 1rem;
  color: #ccc;
}

tr:nth-child(even) td a:hover {
  background: rgba(68, 68, 68, 0.7);
}

tr:nth-child(odd) td a:hover {
  background: rgba(34, 34, 34, 0.7);
}

tr td a:hover {
  color: #fff;
}

/* Background Animation => START*/
.rain-container {
  overflow-x: hidden;
}

.drop {
  position: absolute;
  top: -80px;
  width: 1px;
  height: 80px;
  background: rgba(251, 104, 0, 0.8);
  box-shadow: 0 1px 10px rgba(251, 104, 0, 0.8);
  animation: fall 2s linear infinite, pulse 1s ease-in-out infinite;
  z-index: 0;
}

@keyframes fall {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    background: rgba(251, 104, 0, 0.8);
  }

  50% {
    background: rgba(251, 104, 0, 0.3);
  }
}
/* Background Animation => END*/

/* TImeline => START */
.timeline {
  overflow: hidden;
  width: 98%;
  overflow-x: auto;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.timeline-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-size: 1.4rem;
  line-height: 2rem;
  overflow-x: auto;
  width: 600px;
}

.timeline-item {
  margin: 0 0 0 0;
  position: relative;
  padding: 5rem 1rem 0 1rem;
  color: var(--white);
  text-align: center;
}

.timeline-item::before {
  content: '1';
  width: 3.2rem;
  height: 3.2rem;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: calc(50% - 1.6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.timeline-item-2::before {
  content: '2';
}

.timeline-item-3::before {
  content: '3';
}

.timeline-item-4::before {
  content: '4';
}

.timeline-item::after {
  content: '';
  width: calc(100%);
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  top: 1.6rem;
  left: calc(50% + .8rem);
  transition: all .3s ease;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.timeline::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

.timeline::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent);
}

@keyframes scrollHint {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-150px);
  }

  100% {
    transform: translateX(0);
  }
}

.timeline-container {
  animation: scrollHint 5s ease-in-out 1;
}

.timeline-item:last-child::after {
  width: 0;
}

.timeline-item:hover::before {
  background-color: var(--white);
  color: var(--black);
}

/* TImeline => END */

/* Hero => START */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  margin-bottom: 3rem;
}

.hero-content h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 400;
}

.hero-image {
  width: 100%;
  z-index: 9;

}

.hero-image img {
  max-width: 100%;
}

/* Hero => END */

/* Steps => START */
.steps {}

.step-box {
  margin-left: 4.6rem;
  position: relative;
  margin-bottom: 2rem;
}

.step-box::before {
  content: '1';
  width: 3.6rem;
  height: 3.6rem;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: -46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-box-2::before {
  content: '2';
}

.step-box-3::before {
  content: '3';
}

.step-box-4::before {
  content: '4';
}

.step-box::after {
  content: '';
  width: 2px;
  height: calc(100% - 23px);
  background-color: var(--primary);
  position: absolute;
  top: 36px;
  left: -28px;
}

.step-title h2 {
  margin-bottom: 1rem;
}

.step-alarm {
  margin-top: 2rem;
  background-color: rgba(0, 255, 0, 0.12);
  border-left: 4px solid green;
  padding: .5rem .5rem .5rem .8rem;
}

.step-content {}

/* Borker */
.brokers {
  width: 100%;
  overflow: auto;
  margin-top: 3rem;
}

.brokers-container {
  display: flex;
  padding-bottom: 2rem;
  height: 20rem;
  overflow-y: auto;
  margin-top: 2rem;
}

.brokers-container::-webkit-scrollbar {
  width: 4px;
}

.brokers-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1rem;
}

.brokers-container::-webkit-scrollbar-thumb {
  background: #777;
  border-radius: 10px;
}

.brokers-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.two-column {
  display: flex;
  flex-direction: column;
}

.two-column-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.two-column img {
  margin-top: 2rem;
  max-width: 300px;
}

/* Steps => END */

/* Branches => START */
.Branches {
  display: flex;
  flex-direction: column;
  margin: 3rem 0;
}

.Branch-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;

}

.Branch {
  display: flex;
  align-items: center;
  color: var(--white);
  line-height: 3rem;
  font-size: 2rem;
}

.Branch:hover {
  color: var(--primary);

}

.Branch img {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}

/* Branches => END */

/* Additional = => START */
.additional {
  width: 100%;
  text-align: center;
}

.additional-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.additional img {
  max-width: 300px;
}

/* Contact = => START */
.contact {
  margin: 3rem 0;
}

.contact-title {
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;

}

.contact-form h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.input-box {
  width: 100%;
}

.input-box input {
  width: 100%;
  height: 4rem;
  padding: .7rem;
  margin-bottom: 1.5rem;
  background: var(--black);
  color: var(--white);
  outline: none;
  border: 1px solid #333;
  border-radius: var(--radius);
  font-size: 1.4rem;
}

.input-box textarea {
  width: 100%;
  padding: .7rem;
  background: var(--black);
  color: var(--white);
  outline: none;
  border: 1px solid #333;
  border-radius: var(--radius);
  font-size: 1.4rem;
}

.two-column-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.input-box-half {
  width: 40%;
  flex: 1;
}

.input-box input:focus,
.input-box textarea:focus {
  border: 1px solid var(--primary);

}

.button-box {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.button-box button {
  padding: .5rem 2rem;
  font-size: 1.6rem;
  cursor: pointer;
  min-width: 12rem;
}

.button-box button:hover {
  background: var(--primary);
  color: var(--white);
}

/* Contact = => END */


/* FAQs => START */
.question-box-title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 3rem;

}

.question-box {
  margin-bottom: 2rem;
  overflow: hidden;
}

.question-box img {
  transition: transform 0.3s ease-in-out;
}

.question-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding-bottom: 1rem;
}

.question-title h3 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 600;
}

.icon-arrow {
  width: 1.8rem;
  height: 1.8rem;
}

.question-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  border-bottom: 1px solid var(--primary);
}

.question-box.active .question-content {
  max-height: 200px;
  padding-bottom: 1rem;
}

.question-box.active img {
  transform: rotate(180deg);
}

/* FAQs => END */

/* Social Media Phoenix */
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
}

.brand-info img {
  max-width: 300px;
  height: auto;
}

.wrapper {
  transition: all 0.4s ease-out;
}

.wrapper__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.social-link--linkedin {
  color: #2d76b0;
}

.social-link--instagram {
  color: #9a2970;
}

.social-link--facebook {
  color: #1877F2;
}

.social-link--youtube {
  color: #CD201F;
}

.social-link--x {
  color: #1d9bf0;
}

.social-link .social-svg {
  width: 5rem;
  height: 5rem;
  margin: 0 .5rem;
}

.social-link .social-svg .social-group__icon {
  fill: var(--white);
  transition: all 0.2s;
}

.social-link .social-svg .social-group__inner-circle {
  fill: transparent;
  transition: all 0.2s;
}

.social-link .social-svg .social-group__outline {
  stroke: var(--white);
  transform-origin: 50% 50%;
  transition: all 0.2s;
}

.social-link:hover .social-svg .social-group__icon,
.social-link:active .social-svg .social-group__icon,
.social-link:focus .social-svg .social-group__icon {
  fill: var(--white);
  transition: all 0.45s;
}

.social-link:hover .social-svg .social-group__inner-circle,
.social-link:active .social-svg .social-group__inner-circle,
.social-link:focus .social-svg .social-group__inner-circle {
  fill: currentColor;
  transition: all 0.45s;
}

.social-link:hover .social-svg .social-group__outline,
.social-link:active .social-svg .social-group__outline,
.social-link:focus .social-svg .social-group__outline {
  stroke: currentColor;
  transform: scale(1.1);
  transition: all 0.45s;
}

/* Responsive */
@media screen and (min-width:767Px) {
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .timeline {
    display: flex;
    justify-content: center;
  }

  .timeline-container {
    font-size: 1.6rem;
    line-height: 2.4rem;
    width: 100%;

  }

  .timeline-item {
    max-width: 20rem;
  }

  .hero-content h1 {
    margin-bottom: 1rem;
  }

  .Branch-box {
    flex-direction: row;
    gap: 2rem;

  }

  .two-column-image-box img {
    max-width: 600px;
  }

  .additional-image {
    display: none;
  }

  .social-link .social-svg {
    width: 5rem;
    height: 5rem;
    margin: 0 5px;
  }

  .timeline-container {
    animation: none;
  }
}