* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Alexandria", sans-serif;
}

:root {
    --primary-color: #ff006e;
    --secondary-color: #ff5ca1;
    --teritory-color: #f9d2e4;
    --custom-color: #fceaf2;
    --accent-color: #606060;
    --bg-inputs-color: #f8f8f8;

    /* ========= Dark & Light & danger ========= */
    --dark: #000;
    --light: #fff;
    --danger: #fc3e3e;
    --semiLight: #aaa;
    --strikes-primary: #ff9d01;
    --strikes-secondary: #ffebcc;
    --divide: #1abc9c;

    /* ========= Shadows ========= */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.1); /* Light shadow color */
    --shadow-color-dark: rgba(0, 0, 0, 0.2); /* Darker shadow color */

    /* Neutral Colors  */
    --color-neutral: #050202;
    --color-neutral-300: #ffffff;
    --color-neutral-400: #bbbbbb;
    --color-neutral-500: #e4e4e4;
    --color-neutral-700: #bbbbbb;
    --color-neutral-800: #777777;
    --color-neutral-900: #1f1f1f;
}

/* hero styles start */
.hero-section {
    background: url("../images/home/Hero-bg.webp") no-repeat right
        center/contain;
    padding: 100px 0;
}
@media screen and (max-width: 768px) {
    .hero-section {
        background: none;
        padding: 30px 0;
    }
}

.highlights-text {
    color: var(--primary-color);
}

.lead {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 10px;
    padding: 4px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    gap: 10px;
}

.search-item {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.search-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 8px;
}

.search-item input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    background: transparent;
}

.clear-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--semiLight);
    cursor: pointer;
    margin-left: 8px;
}

.divider {
    width: 1px;
    height: 24px;
    background: var(--semiLight);
}

.dropdown-icon {
    font-size: 14px;
    color: var(--semiLight);
    margin-left: 6px;
}
.ip-icon {
    width: 20px;
    margin: 10px;
}
/* hero styles end */

/* Why Us Start  */
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color);
}
.text-accent {
    color: var(--accent-color);
}
.text-danger {
    color: var(--danger);
}
/* Why Us End  */
