:root {
    /* Define your color variables */
    --primary-color: #0f164d;
    --secondary-color: #b71d43;
    --text-color: #333333;
    --light-grey: #F8F9FB;
    --secondary-color-transparent: #b71d4381;
  }


* {
    box-sizing: border-box;
}

body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-family: 'FK Grotesk Neue', -webkit-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.light-grey-bg {
    background-color: var(--light-grey);
}

.black-overlay-bg {
    background: linear-gradient(to right, #000000c5, #000000c5), url('img.jpg') no-repeat center/cover;
}


.section {
    padding: 100px 100px 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section {
        padding: 50px;
   }
}

@media only screen and (max-width: 767px) {
    .section {
        padding: 30px 20px;
   }
}

/* ----- button1 ----- */

.btn {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: white !important;  /* Change to white and add !important to override conflicts */
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

/* Remove color from pseudo-elements as it's not needed */
.btn::after,
.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.btn::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
}

.btn::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.btn:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.btn:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.btn:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

.btn:hover {
    font-weight: 700;
    /* color: white; already set above, no need to repeat */
}
  /*===== end of button1 ======*/

  .buttons {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .button1 {
  
  
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: var(--secondary-color);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  transition-duration: .2s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  padding: 8px;
  padding-left: 25px;
  transition-duration: .5s;
  font-size: 15px;
}

.fas.fa-chevron-right {
  font-size: 15px; /* Match the original svgIcon height */
  color: var(--secondary-color); /* Match the original bell path fill */
  transition-duration: 1.5s; /* Match the original svgIcon transition */
  font-weight: 700;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.button1:hover {
  background-color: var(--primary-color);
  transition-duration: .5s;
}

.button1:active {
  transform: scale(0.97);
  transition-duration: .2s;
}

.button1:hover .fas.fa-chevron-right {
  transform: rotate(360deg); /* Match the original svgIcon hover rotation */
  transition-duration: 1.5s;
}

.button2 {
  
  
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: var(--primary-color);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  transition-duration: .2s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  
  padding: 8px 25px ;
  transition-duration: .5s;
  font-size: 15px;
}

.fas.fa-chevron-right {
  font-size: 15px; /* Match the original svgIcon height */
  color: var(--secondary-color); /* Match the original bell path fill */
  transition-duration: 1.5s; /* Match the original svgIcon transition */
  font-weight: 700;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.button2:hover {
  background-color: var(--secondary-color);
  transition-duration: .5s;
}

.button2:active {
  transform: scale(0.97);
  transition-duration: .2s;
}

.button2:hover .fas.fa-chevron-right {
  transform: rotate(360deg); /* Match the original svgIcon hover rotation */
  transition-duration: 1.5s;
}