:root {

  /* ===== PRIMARY BRAND COLORS ===== */
  --primary-dark: #0D2440;      /* Main Brand Navy */
  --primary-blue: #2E5E99;      /* Core Tech Blue */
  --primary-light: #7BA4D0;     /* Accent Blue */
  --background-light: #E7F0FA;  /* Main Background */

  /* ===== TEXT COLORS ===== */
  --text-dark: #0D2440;
  --text-light: #ffffff;
  --text-muted: #5A6C80;

  /* ===== BUTTON COLORS ===== */
  --btn-primary: var(--primary-blue);
  --btn-primary-hover: var(--primary-light);
  --btn-dark: var(--primary-dark);
  --btn-dark-hover: #163a63;

  /* ===== BORDER COLORS ===== */
  --border-light: #d6e2f0;
  --border-dark: #1a3555;

  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(135deg, #0D2440, #2E5E99);
  --gradient-light: linear-gradient(135deg, #7BA4D0, #E7F0FA);

  /* ===== SHADOWS ===== */
  --shadow-soft: 0 4px 12px rgba(13, 36, 64, 0.08);
  --shadow-medium: 0 6px 18px rgba(13, 36, 64, 0.15);
  --box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  /* ===== TYPOGRAPHY ===== */
  --main-font-family: 'Poppins', sans-serif;
  --letter-spacing-one: -0.04em;
  --letter-spacing-two: 0.1em;

  /* ===== UI SETTINGS ===== */
  --border-radius: 10px;
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s ease;

}


/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== SCROLLBAR (Firefox) ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--primary-dark);
  font-size: 16px;
}

/* ===== BODY ===== */
body {
  font-family: var(--main-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  /* background: var(--background-light); */
}

/* ===== RESET ELEMENTS ===== */
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Remove list style */
ul,
ol {
    list-style: none;
}

/* Anchor reset */
a {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-blue);
}

.button, button {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    border-radius: 50px;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    -webkit-transition: all .4s cubic-bezier(.2, 1, .3, 1);
    transition: all .4s cubic-bezier(.2, 1, .3, 1);
    border: 2px solid var(--primary-blue);
    font-family: var(--main-font-family);
    cursor: pointer;
}

.button{
    text-transform: uppercase;
    font-size: 14px;
    min-width: 185px !important;
}

.button.icon, button.icon {
    background: 0 0;
    border: 0;
    color: var(--text-light);
    -webkit-transition: all .4s cubic-bezier(.2, 1, .3, 1);
    transition: all .4s cubic-bezier(.2, 1, .3, 1);
}

.button.icon:before, button.icon:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: var(--gradient-primary);
    border-radius: 28px !important;
    padding: 27px;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s cubic-bezier(.2, 1, .3, 1);
    transition: all .4s cubic-bezier(.2, 1, .3, 1);
    z-index: -1;
    -webkit-border-radius: 28px !important;
    -moz-border-radius: 28px !important;
    -ms-border-radius: 28px !important;
    -o-border-radius: 28px !important;
}

.button.icon span:not(.wpcf7-spinner), button.icon span:not(.wpcf7-spinner) {
    padding: 16px 30px;
    -webkit-transition: all .4s cubic-bezier(.2, 1, .3, 1);
    transition: all .4s cubic-bezier(.2, 1, .3, 1);
}

.button>span:not(.wpcf7-spinner)>i, button>span:not(.wpcf7-spinner)>i {
    font-size: 16px;
    margin-left: 10px;
}

@media (hover: hover) {
    .button.icon:hover span:not(.wpcf7-spinner), button.icon:hover span:not(.wpcf7-spinner) {
        color: #25245d;
        margin-right: 5px;
        transform: none;
        opacity: 1;
        -moz-transform: none;
        -o-transform: none;
        -webkit-transform: none;
        -ms-transform: none;
}
}
@media (hover: hover) {
    .button.icon:hover:before, button.icon:hover:before {
        width: 52px;
        color: var(--text-light);
    }
}
@media (hover: hover) {
    .button.icon:hover span:not(.wpcf7-spinner)>i, button.icon:hover span:not(.wpcf7-spinner)>i {
        -webkit-transform: translateX(14px);
        -ms-transform: translateX(14px);
        transform: translateX(14px);
        color: var(--text-light);
    }
}