/* ==== COLORS ==== */
:root {
    --hanuman-navy: #172437;
    --hanuman-charcoal: #22272e;
    --hanuman-blue: #235bb2;
    --hanuman-cyan: #19c6c5;
    --hanuman-cyan-light: #8ed8e7;
    --hanuman-red: #e94856;
    --hanuman-header-text: #f5fcff;
    --hanuman-border: #23314a;
    --hanuman-dropdown-bg1: rgba(34, 41, 65, 0.92);
    --hanuman-dropdown-bg2: rgba(37, 48, 77, 0.92);
    --hanuman-dropdown-border: rgba(245, 252, 255, 0.13);
    --hanuman-body-text: #151a22;
}

/* ==== LAYOUT ==== */
@font-face {
    font-family: 'Creo';
    font-style: normal;
    font-weight: normal;
    src: url('../css/creo/creo_normal.woff2') format('woff2'), url('../css/creo/creo_normal.woff') format('woff');
}
@font-face {
    font-family: 'Creo';
    font-style: normal;
    font-weight: 500;
    src: url('../css/creo/creo_medium.woff2') format('woff2'), url('../css/creo/creo_medium.woff') format('woff');
}
@font-face {
    font-family: 'Creo';
    font-style: normal;
    font-weight: 600;
    src: url('../css/creo/creo_semibold.woff2') format('woff2'), url('../css/creo/creo_semibold.woff') format('woff');
}
@font-face {
    font-family: 'Creo';
    font-style: normal;
    font-weight: bold;
    src: url('../css/creo/creo_bold.woff2') format('woff2'), url('../css/creo/creo_bold.woff') format('woff');
}

html, body {
    background: linear-gradient(110deg, #f8fafc 0%, #e7f6ff 58%, #f6faff 100%);
    color: var(--hanuman-navy);
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.navbar .container-460, .navbar .container-720, .navbar .container-960
{
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.container-460 {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.container-720 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.container-960 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ==== CONTENT ==== */
body {
    color: var(--hanuman-body-text);
    font-family: 'Creo', 'Inter', Arial, Helvetica, sans-serif;
    letter-spacing: -.025em;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    color: var(--hanuman-charcoal);
    font-weight: bold;
    letter-spacing: 0.045em;
    margin-bottom: 0.618em;
}
.h1-sub, .h2-sub, .h3-sub, .h2-note {
    color: var(--hanuman-blue);
    font-weight: 500;
    letter-spacing: -0.015em;
}
h1, .h1 {
    font-size: 2.1rem;
}
h2, .h2 {
    font-size: 1.75rem;
}
.h1-sub {
    font-size: 1.333rem;
}
.h2-sub {
    font-size: 1.222rem;
}
.h3-sub {
    font-size: 1.111rem;
}

.h2-note {
    font-size: 1.111rem;
    font-style: italic;
    font-weight: 500;
}
.lead {
    font-size: 1.222rem;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.highlight {
    color: var(--hanuman-blue);
    font-weight: 500;
    letter-spacing: -0.015em;
}
.lead .highlight {
    color: var(--hanuman-blue);
    font-weight: bold;
    letter-spacing: 0.011em;
}
.fw-bold {
    letter-spacing: 0.011em;
}
.fw-medium {
    letter-spacing: -0.015em;
}
.fw-semibold {
    letter-spacing: -0.003em;
}
strong {
    font-weight: 600;
    letter-spacing: -0.003em;
}
.fw-medium strong, .highlight strong, .lead strong, .h1-sub strong, .h2-sub strong, .h3-sub strong, .testimonial-text strong, .testimonial-text-dark strong {
    font-weight: bold;
    letter-spacing: 0.011em;
}

main a {
    color: var(--hanuman-blue);
    text-decoration: none;
    transition: color 0.17s;
    font-weight: 500;
    letter-spacing: -0.015em;
    border-radius: 2px; /* for focus states */
    outline: none;
}

main a:hover, main a:focus {
    color: var(--hanuman-cyan);
    text-decoration: none;
    outline: none;
}

main a:active, main a:focus-visible {
    outline: 2px solid var(--hanuman-cyan);
    outline-offset: 1.5px;
}

.picture {
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(35,91,178,0.07);
}

/* ==== HEADER ==== */
.main-navbar {
    background: var(--hanuman-navy) !important;
    border-bottom: 1px solid var(--hanuman-border);
    box-shadow: 0 2px 8px 0 rgba(23,36,55,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.66em;
}

.header-spacer {
    height: 60px;
}

.navbar-logo {
    font-weight: bold;
    letter-spacing: 0.045em;
    color: var(--hanuman-header-text) !important;
}

/* ==== NAVBAR / DROPDOWN ==== */
.navbar-nav .nav-link {
    color: var(--hanuman-header-text) !important;
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.navbar-nav .nav-link:hover {
    color: var(--hanuman-cyan) !important;
}

.dropdown-menu {
    background: linear-gradient(180deg, var(--hanuman-dropdown-bg1) 0%, var(--hanuman-dropdown-bg2) 100%);
    border: 1.5px solid var(--hanuman-dropdown-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px 0 rgba(23,36,55,0.15);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    min-width: 220px;
    margin-top: 0.65rem;
    padding: 0.25rem 0.4rem;
    z-index: 999;
}

.dropdown-menu .dropdown-item {
    color: var(--hanuman-header-text);
    background: transparent;
    padding: 0.47rem 1.15rem;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: -0.015em;
    transition: background 0.12s, color 0.12s;
    margin: 0.08rem 0;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: rgba(25, 198, 197, 0.17);
    color: var(--hanuman-cyan);
    text-decoration: none;
}

/* ==== LISTS & STYLES ==== */
.list-arrow {
    list-style: none;
    margin-bottom: 0.65em;
    padding: 0;
    text-align: left;
}
.list-arrow li {
    position: relative;
    padding-left: 1.7em;
    color: var(--hanuman-charcoal);
    line-height: 1.63;
}
.list-arrow li::before {
    content: "→";
    color: var(--hanuman-blue);
    font-size: 1.19em;
    position: absolute;
    left: 0.1em;
    top: -0.2em;
    opacity: 0.85;
    width: 1.1em;
    display: inline-block;
    text-align: center;
}

.img-fade-circle {
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    -webkit-mask-image: radial-gradient(circle, black 44%, transparent 60%);
    mask-image: radial-gradient(circle, black 65%, transparent 70%);
}

/* ==== CTA BUTTON ==== */
.btn-cta {
    background: var(--hanuman-cyan);
    color: var(--hanuman-charcoal);
    border-radius: 2rem;
    border: none;
    padding: 0.7rem 3rem;
    font-weight: bold;
    font-size: 1.222rem;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px 0 rgba(35,91,178,0.13);
    transition: background 0.18s, color 0.12s;
}

.btn-cta:hover, .btn-cta:focus {
    background: var(--hanuman-blue);
    color: var(--hanuman-header-text);
    box-shadow: 0 2.5px 8px 0 rgba(23,36,55,0.20);
    text-decoration: none;
}

.btn-cta:active,
.btn-cta.active,
.btn-cta:focus:active {
    background: #217bbd;
    color: var(--hanuman-header-text);
    box-shadow: 0 2.5px 8px 0 rgba(23,36,55,0.20);
    outline: none;
}

/* ==== FOOTER ==== */
.footer {
    background: var(--hanuman-navy);
    color: var(--hanuman-header-text);
    border-top: 1px solid var(--hanuman-border);
    flex-shrink: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 0.18rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-list a {
    color: var(--hanuman-header-text);
    text-decoration: none;
    transition: color 0.17s;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.footer-list a:hover,
.footer-list a:focus {
    color: var(--hanuman-cyan);
    text-decoration: none;
    outline: none;
}

.footer-social-list {
    gap: 0.8rem;
}
.footer-social-list a {
    color: var(--hanuman-header-text);
    transition: color 0.17s;
    text-decoration: none;
    padding: 0 0.1em;
}
.footer-social-list svg {
    display: block;
    line-height: 1;
}
.footer-social-list svg:hover {
    fill: var(--hanuman-cyan); 
}

.footer-copyright {
    color: var(--hanuman-cyan-light);
    letter-spacing: 0;
    text-align: center;
    margin-top: 0.12rem;
    margin-bottom: 0;
    padding-top: 0.13rem !important;
    padding-bottom: 0.08rem !important;
}
.footer-copyright a {
    color: var(--hanuman-cyan-light);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-copyright a:hover {
    color: var(--hanuman-cyan);
    text-decoration: none;
}


/* ==== FORMS ==== */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.0rem;
}

.form-label {
    min-width: 110px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--hanuman-blue);
}

.required::after {
    content: "*";
    color: var(--hanuman-red);
    margin-left: 0.16em;
    font-weight: bold;
}

.form-input, select.form-input, input.form-input[type="file"] {
    border: 1.2px solid #d1e1ee;
    border-radius: 8px;
    padding: 0.5em 0.75em;
    background: #f8fbfe;
    outline: none;
    width: 100%;
    max-width: 290px;
    transition: border 0.15s;
}
.form-input:focus {
    border-color: var(--hanuman-blue);
    background: #fff;
}

.form-error {
    color: var(--hanuman-red);
    font-size: 0.97rem;
    display: block;
}

.form-textarea {
    min-height: 280px;
    max-width: none;
    width: 100%;
    resize: vertical;
    font-size: .9em;
}

.form-checkbox {
    accent-color: var(--hanuman-blue);
    width: 1.18em;
    height: 1.18em;
}

.form-radio-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}
.form-radio {
    accent-color: var(--hanuman-blue);
}
.form-radio-label {
    margin-right: 1.4em;
    font-weight: 500;
    letter-spacing: -0.015em;
    cursor: pointer;
}

.form-note-row {
    margin-top: -0.7em;
}

.form-note {
    color: var(--hanuman-blue);
    font-size: 0.97em;
    margin-bottom: 0.33em;
}

.form-note-list {
    font-size: 0.97em;
    padding-left: 1.1em;
    margin: 0.1em 0 0.5em 0;
    list-style: disc;
}

.btn-form {
    display: inline-block;
    background: var(--hanuman-cyan-light);
    color: var(--hanuman-navy);
    border: none;
    border-radius: 20px;
    padding: 0.54rem 1.7rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 1.5px 5px 0 rgba(25,198,197,0.18), 0 1.3px 4px 0 rgba(23,36,55,0.11);
    transition: background 0.15s, color 0.13s, box-shadow 0.18s;
    outline: none;
    cursor: pointer;
    font-size: 1.09em;
}

.btn-form:hover,
.btn-form:focus {
    background: var(--hanuman-cyan);
    box-shadow: 0 1.5px 7px 0 rgba(25,198,197,0.25), 0 1.3px 4px 0 rgba(23,36,55,0.18);
}

.btn-form:active {
    background: #19b7b7;
    box-shadow: 0 1.5px 4px 0 rgba(25,198,197,0.15), 0 0.8px 3px 0 rgba(23,36,55,0.12);
}


/* ==== SECTIONS ==== */
.band-cyan {
    background: linear-gradient(98deg, #e5f2fa 0%, #d1e1ee 100%);
    border-top: 1.5px solid #d5e5f7;
    border-bottom: 1.5px solid #d5e5f7;
    box-shadow: 0 2px 12px 0 rgba(35, 91, 178, 0.07), 0 0.5px 2px 0 rgba(25,198,197,0.06);
    margin: 2.5rem 0;
    padding: 1.3rem 0;
}

.band-navy {
    background: linear-gradient(98deg, var(--hanuman-navy) 0%, #1a2238 90%);
    color: var(--hanuman-cyan-light);
    border-top: 1.5px solid #23314a;
    border-bottom: 1.5px solid #23314a;
    box-shadow: 0 3px 16px 0 rgba(23, 36, 55, 0.11);
    margin: 2.5rem 0;
    padding: 1.3rem 0;
}
.band-navy h1, .band-navy .h1, .band-navy h2, .band-navy .h2, .band-navy h3, .band-navy .h3 {
    color: var(--hanuman-header-text);
}
.band-navy .h1-sub, .band-navy .h2-sub, .band-navy .h3-sub, .band-navy .h2-note {
    color: var(--hanuman-cyan-light);
}

.definition-box {
    background: linear-gradient(90deg, rgba(35,91,178,0.08), rgba(245,252,255,0.00) 75%);
    border-radius: 10px;
    padding: 1.23rem 1.4rem;
    margin: 1.35rem 0;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 580px;
    margin: 1.1em auto;
}

.testimonial-text {
    position: relative;
    background: #f7fbfe;
    border: 1.2px solid #d8ecfa;
    border-radius: 11px;
    box-shadow: 0 4px 22px 0 rgba(35,91,178,0.06);
    padding: 1.3rem 1.7rem 1.1rem 2.7rem;
    color: var(--hanuman-navy);
    font-weight: 500;
    letter-spacing: -0.015em;
}
.testimonial-icon {
    position: absolute;
    left: 1.1rem;
    top: 1.05rem;
    font-size: 2.3rem;
    color: var(--hanuman-cyan);
    opacity: 0.66;
    line-height: 1;
    font-family: serif;
    pointer-events: none;
    user-select: none;
}

.testimonial-text-dark {
    position: relative;
    background: rgba(38, 54, 88, 0.84);
    border: 1.2px solid rgba(158, 196, 234, 0.20);
    border-radius: 13px;
    box-shadow: 0 4px 22px 0 rgba(35,91,178,0.09);
    padding: 1.3rem 1.7rem 1.1rem 2.7rem;
    color: #e5f6ff;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.testimonial-icon-dark {
    position: absolute;
    left: 1.1rem;
    top: 1.05rem;
    font-size: 2.3rem;
    color: var(--hanuman-cyan);
    opacity: 0.66;
    line-height: 1;
    font-family: serif;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 3px 18px #17aeb722;
}

/* ==== ANIMATIONS ===== */
.band-animate-left,
.band-animate-right {
    opacity: 0;
    transition: opacity 0.1s linear, transform 0.1s linear;
    will-change: opacity, transform;
}

.band-animate-left {
    transform: translateX(-54px);
}
.band-animate-right {
    transform: translateX(54px);
}


/* ==== RESPONSIVE TWEAKS ==== */
@media (min-width: 992px) {
    .header-spacer {
        height: 68px;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .modern-form {
        gap: .6em;
    }
    .form-row {
        gap: 1.4rem;
    }
}
