/*--------------------------------------------------------------
# Varaible
--------------------------------------------------------------*/
:root {
  --primary-color: #e74def;
  --background-color: #fdf5fe;
  --background-color-alt: #efc6f5;

  --primary-color: #4dbdef;

  --primary-color: #118ec5;
  --background-color: #f1fafe;
  --background-color-alt1: #efc6f5;
  --background-color-alt2: #d5edf7;


}

/*--------------------------------------------------------------
# Buttons and Links
--------------------------------------------------------------*/
.button-base, a.styled-button { /* Common styles for ALL buttons and styled links */
  border: 0;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-family: inherit; /* Inherit font from parent */
  line-height: 1;      /* Reset line-height */
  appearance: none;      /* Remove default button appearance */
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none; /* For Firefox */
  cursor: pointer;      /* Add a cursor on hover */
  display: inline-block; /* Essential for consistent sizing */
  font-weight: normal;
  text-decoration: none; /* For links */
}

.button-base:hover, a.styled-button:hover {
    color: #fff;
}

.button1 { /* Standard button */
    background: var(--primary-color);
    padding: 10px 24px;
}

.button2 { /* Standard button - narrow padding */
    background: var(--primary-color);
    padding: 8px 9px;
}

.button3 { /* Standard button - narrow padding - grey */
    background: #adaba8;
    padding: 8px 9px;
}

.button_add { /* Add button - narrow padding */
    background: var(--primary-color);
    padding: 10px 9px;
    margin-left: auto;
}

.button_x { /* Small X button */
    background: var(--primary-color);
    padding: 5px 9px;
    font-size: smaller;
    margin-bottom: 9px;
}

.title_x { /* use this if using button_x in the label */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.a1 { /* used for cancel  */
    background: var(--primary-color);
    padding: 10px 24px;
}

.a2 { /* using for top menu */
    background: var(--primary-color);
    padding: 8px 10px;
}

.black-link { /* used for header */
    color: #000;
    text-decoration: none; /* Optional: Remove underline */
}

.black-link:hover { /* used for header */
    color: #000;
    text-decoration: none; /* Optional: Remove underline on hover */
}

.color-link { /* all links */
    color: var(--primary-color);
    text-decoration: none; /* Optional: Remove underline */
}

.color-link:hover { /* all links */
    color: var(--primary-color);
    text-decoration: none; /* Optional: Remove underline on hover */
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
#main1 {
  margin-top: 72px;
}

#header1 {
  height: 72px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

#footer1 {
  color: #212529;
  font-size: 14px;
  background: var(--background-color);
}

body {
    background-color: var(--background-color);
    font-family: "Open Sans", sans-serif;
    color: #212529;
}

section {
  padding: 20px 0;
  overflow: hidden;
}

h3 {
  color: var(--primary-color);
}

.div-3 { /* div with border */
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
}

.hidden { /* for initially hidden divs */
  display: none;
}

.icon-1 i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.area-bg-alt1 {
  background-color: var(--background-color-alt1);
}

.area-bg-alt2 {
  background-color: var(--background-color-alt2);
}

.form-control {
box-shadow: none !important;
}

/*--------------------------------------------------------------
# bxx container
--------------------------------------------------------------*/
.bxx-container {
  position: relative;
  overflow: hidden;
  margin: 0 0 15px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 1px solid #fff;
  border-color: var(--primary-color);
  display: flex;
  align-items: flex-start;
  flex-grow: 1;
  padding: 10px;
}

.bxx-container:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.bxx-icon {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
}

.bxx-icon i {
  color: var(--primary-color);
  font-size: 30px;
}

.bxx-text { /* Contains title, description, and button */
    flex-grow: 1; /* Allow text content to grow */
    display: flex;
    flex-direction: column; /* Vertical layout for text content */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text within the block */
    margin-bottom: 1px;
}

.bxx-text-title {
  font-weight: 700;
  margin-bottom: 1px;
  font-size: 18px;
}

.bxx-text-desc {
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 7px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  /* background: #ee7843; */
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
