/* Base Colors */
:root {
    --bs-primary: #5c4a6d;
    --bs-primary-rgb: 92, 74, 109;

    --bs-secondary: #937970;
    --bs-secondary-rgb: 147, 121, 112;

    --bs-success: #25ab5b;
    --bs-success-rgb: 37, 171, 91;

    --bs-info: #0dcaf0;
    --bs-info-rgb: 13, 202, 240;

    --bs-warning: #ffc107;
    --bs-warning-rgb: 255, 193, 7;

    --bs-danger: #dc3545;
    --bs-danger-rgb: 220, 53, 69;

    --bs-light: #e9e8e3;
    --bs-light-rgb: 233, 232, 227;

    --bs-dark: #231f23;
    --bs-dark-rgb: 35, 31, 35;

    --bs-fourth: #6f5c5e;
    --bs-fourth-rgb: 111, 92, 94;

    --bs-clear: #f1f1f1;
    --bs-clear-rgb: 241, 241, 241;

    --bs-button-hover: #4a3b56;
}

body {
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    /* makes the text bold */
    font-family: 'Merriweather', serif;
}

/* Text highlight */
::selection {
    background-color: rgba(92, 74, 109, 0.3); /* 30% opaque version of --bs-primary */
    color: var(--bs-dark); /* contrasting text color when highlighted */
}

::-moz-selection {
    background-color: rgba(92, 74, 109, 0.3);
    color: var(--bs-dark);
}

/* Style for Top Navbar */
.top-navbar {
    min-height: 30px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: var(--bs-light);
}

/* Hide top navbar in mobile/tablet view */
@media (max-width: 992px) {
    .top-navbar {
        display: none;
    }
}

/* Styling the Icons & Links */
.top-navbar .nav-link {
    color: var(--bs-primary);
    padding: 0 10px;
}

.top-navbar .nav-link:hover {
    color: var(--bs-secondary);
}



/* Style for Icons (considering using bootstrap icons) */
.bi {
    margin-right: 5px;
    font-size: 20px;
}

/* Style for Clear Navbar */
.bg-clear {
    background-color: var(--bs-clear) !important;
}

/* Style for Primary Button */
.btn-primary {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border-color: var(--bs-primary);
}

/* Style for Primary Button Hover */
.btn-primary:hover {
    background-color: var(--bs-button-hover);
    border-color: var(--bs-button-hover);
}

/* Hero Section */
.py-10 {
    padding-top: 7rem !important;
    padding-bottom: 10rem !important;
}


.hero-section {
    background-color: var(--bs-primary);
    /* background-image: url(./assets/img/ad_noise.png),linear-gradient(#5c4a6d,#645176); */
}

.nav-link {
    text-transform: uppercase;
    font-weight: bold;
}

/* For top navbar */
.navbar-light .navbar-text {
    font-size: 0.875rem;
}

/* Service box - margins are applied to the nested container */
.service-box {
    box-sizing: border-box;
    border: 2px solid #736a7b;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    background-color: #f3f2f1;
    color: #736a7b;
}

/* Service box - margins are applied to the nested container */
.register-box {
    box-sizing: border-box;
    /* border: 2px solid #736a7b; */
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    background-color: #f3f2f1;
    color: #736a7b;
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-button-hover));
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(92, 74, 109, 0.3);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.floating-call-button:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 6px 20px rgba(92, 74, 109, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--bs-button-hover), var(--bs-primary));
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.floating-call-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-call-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.floating-call-button:hover svg {
    transform: scale(1.1);
}

/* Mobile responsiveness for floating button */
@media (max-width: 768px) {
    .floating-call-button {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 13px;
        gap: 10px;
    }
    
    .floating-call-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .floating-call-button {
        font-size: 18px;
        padding: 12px 16px;
        border-radius: 40px;
    }
}