/* Googlefont Poppins CDN Link */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    /* font-family: "Bebas Neue", sans-serif; */
}

:root {
    --bg-color: #ffffff;
    --text-color: #191919;

    --primary-500: #e67c20;
    --primary-400: #f9943b;
    --primary-300: #ffb76b;
    --primary-200: #ffd4a6;
    --primary-100: #fff1e6;
    --primary-50: rgb(255, 250, 246);
    --secondary-color: #00a693;
    --secondary-hover-bg-color: #33b8a9;
    --secondary1-color: rgb(79, 70, 229, 0.1);
    --accent-color: #606060;
    --border-color: #e0e0e0;
    --card-bg: #f4f3fb;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --input-text: #999999;
    --color-red: #fb3748;
    --color-red-light: #fb37481a;
    --color-yellow: #dfb400;
    --color-yellow-light: rgba(255, 219, 67, 0.1);
    --color-green: #1fc16b;
    --color-green-light: #e6fbf0;
    --color-grey: #999999;
    --color-neutral-50: #fafafa;
    --color-neutral-100: #f5f5f5;
    --color-neutral-200: #eeeeee;
    --color-neutral-300: #ffffff; /* already added */
    --color-neutral-400: #f8f8f8; /* already added */
    --color-neutral-500: #e4e4e4; /* already added */
    --color-neutral-600: #cccccc; /* missing */
    --color-neutral-700: #bbbbbb; /* already added */
    --color-neutral-800: #777777; /* already added */
    --color-neutral-900: #333333; /* already added */
    --color-neutral-950: #050202; /* your base */
}

/* Header Start  */

body {
    background-color: var(--primary-50);
}

.navMainContainer {
    position: sticky;
    top: 0px;
    z-index: 999;
}

.navbarContainer {
    background-color: rgba(255, 250, 246, 0.8); /* transparent glass look */
    backdrop-filter: blur(10px); /* main blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
}

.headerLogo {
    max-width: 180px;
}

.navbar .nav-link {
    position: relative;
    font-size: 16px;
    color: var(--color-neutral-900);
    font-weight: 400;
    padding-bottom: 5px; /* spacing for underline */
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-400);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    width: 50%;
}

.fmrPrimaruButton {
    background-color: var(--primary-400);
    font-size: 16px;
    color: var(--bg-color);
    border-radius: 20px;
}

.fmrPrimaruButton:hover {
    background-color: var(--primary-500);
    font-size: 16px;
    color: var(--bg-color);
    border-radius: 20px;
}

.bannerContainer {
    background-image: url("../images/home/heroBackground.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.heroTitle {
    font-size: 55px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase; /* Makes text uppercase */
    letter-spacing: 4px; /* Adjust spacing between letters */
    line-height: 1.2;
    color: var(--color-neutral-900);
}

.heroOrangeTitle {
    font-size: 55px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase; /* Makes text uppercase */
    letter-spacing: 4px; /* Adjust spacing between letters */
    line-height: 1.2; /* Adjust line spacing */
    color: var(--primary-400);
}

.heroSubText {
    font-size: 24px;
    color: var(--color-neutral-800);
}

.heroFormWrapper {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.heroFormWrapper .form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-neutral-900);
}

.heroFormWrapper .form-control {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    font-size: 15px;
}

.heroFormWrapper .form-control:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 6px rgba(249, 148, 59, 0.3);
}

.fmrPrimaruButton {
    background-color: var(--primary-400);
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-color);
    border-radius: 30px;
    padding: 12px 28px;
    border: none;
    transition: all 0.3s ease;
}

.fmrPrimaruButton:hover {
    background-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(230, 124, 32, 0.4);
}

.bannerFormLabel {
    font-size: 14px !important;
    color: var(--color-neutral-700) !important;
}

/* Header End  */

/* Footer Start  */
.footerContainer {
    background-color: var(--primary-200);
}
/* Footer End  */

/* Toaster Start */

/* Custom Toast Styles */
.custom-toast {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.toast-success {
    background-color: #e6ffed;
    color: #057a55;
    border-left: 5px solid #28a745;
}

.toast-warning {
    background-color: #fff8e1;
    color: #8d6e00;
    border-left: 5px solid #ffc107;
}

.toast-error {
    background-color: #ffecec;
    color: #d32f2f;
    border-left: 5px solid #dc3545;
}

.toast-link {
    font-weight: 500;
    text-decoration: none;
}

.toast-success .toast-link {
    color: #057a55;
}

.toast-warning .toast-link {
    color: #8d6e00;
}

.toast-error .toast-link {
    color: #d32f2f;
}

/* Make close button smaller inside toast */
.toast .btn-close {
    font-size: 0.65rem;
    /* shrink size */
    width: 0.75rem;
    height: 0.75rem;
    padding: 0.25rem;
    margin-left: 10px;
    /* spacing from text */
    opacity: 0.7;
}

.toast .btn-close:hover {
    opacity: 1;
}

/* Toaster End  */

.mandatory {
    color: var(--primary-400);
}

.error,
.is-invalid {
    font-size: 11px;
    color: var(--color-red);
}

/* Floating Whatsapp Start  */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    border: 1px solid var(--color-neutral-900);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 280px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 4px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: none;
    z-index: 10000;
}

.whatsapp-popup::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 20px;
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.15));
}

.whatsapp-popup .popup-content {
    text-align: center;
}

.whatsapp-popup p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}

.whatsapp-popup .chat-btn {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.whatsapp-popup .chat-btn:hover {
    background: #25d366;
}
/* Floating Whatsapp End  */
