:root {
    /* Define your color variables */
    --primary-color: #0f164d;
    --secondary-color: #ff7300ff;
    --secondary-color-transparent: #b71d4381;
    
    --light-grey: #F8F9FB;
    
    --footer-dark-bg-color: #1f242e;
    --footer-light-bg-color: #f5f5f5;
    
    
    --facebook-blue: #3b5998;
    --instagram-pink: #e4405f;
    --twitter-blue: #1da1f2;
    --linkedin-blue: #0077b5;
    --youtube-red: #ff0000;
    

    --text-color-light: #fff;
    --secondary-text-light: #b0b0b0;
    
    --text-color-dark: #333333;

    --border-color-light: rgba(255, 255, 255, 0.2);
    --border-color-dark: rgba(0, 0, 0, 0.4);

    --white-transparent: #ffffff15;
    --dark-transparent: #00000010;

    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.08)
  }


* {
    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;
    color: #fff;
}

a {
    text-decoration: none;
}

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


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

@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 */
}

.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) !important; /* 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;
}
  /*===== end of button1 ======*/