:root {
    --public-navy: #071a32;
    --public-navy-light: #0c2b50;
    --public-blue: #123f70;
    --public-gold: #d7a84b;
    --public-gold-light: #f1ca73;
    --public-white: #ffffff;
    --public-light: #f5f7fa;
    --public-text: #182334;
    --public-muted: #6b7685;
    --public-border: #e3e8ef;
    --public-green: #24b96f;
    --public-shadow: 0 18px 50px rgba(7, 26, 50, 0.15);
    --public-radius: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    color: var(--public-text);
    background: var(--public-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.public-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* Top Bar */

.public-topbar {
    position: relative;
    z-index: 1100;
    color: rgba(255, 255, 255, 0.9);
    background: var(--public-navy);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-message {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-contact a,
.topbar-contact span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar-contact svg {
    width: 15px;
    height: 15px;
    fill: var(--public-gold);
}

.topbar-separator {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.25);
}

/* Header */

.public-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(7, 26, 50, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.public-header.scrolled {
    box-shadow: 0 12px 35px rgba(7, 26, 50, 0.12);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-icon,
.footer-brand-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    color: var(--public-gold);
    border: 1px solid rgba(215, 168, 75, 0.45);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f5ead4);
}

.brand-icon svg,
.footer-brand-icon svg {
    width: 41px;
    height: 41px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-content strong {
    color: var(--public-navy);
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 700;
}

.brand-content span {
    margin-top: 4px;
    color: var(--public-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.public-navigation {
    display: flex;
    align-items: center;
    gap: 23px;
}

.nav-link {
    position: relative;
    padding: 33px 0;
    color: #344155;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 2px;
    border-radius: 5px;
    background: var(--public-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--public-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: 4px;
}

.header-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid var(--public-navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: 0.25s ease;
}

.header-button-outline {
    color: var(--public-navy);
    background: transparent;
}

.header-button-outline:hover {
    color: var(--public-white);
    background: var(--public-navy);
}

.header-button-primary {
    color: var(--public-white);
    background: var(--public-navy);
}

.header-button-primary:hover {
    border-color: var(--public-gold);
    background: var(--public-gold);
}

.mobile-menu-button {
    width: 45px;
    height: 43px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 8px;
    background: var(--public-navy);
    cursor: pointer;
}

.mobile-menu-button span {
    width: 21px;
    height: 2px;
    background: var(--public-white);
    transition: 0.25s ease;
}

/* Hero Slider */

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--public-white);
    background:
        radial-gradient(circle at 15% 20%, rgba(26, 73, 122, 0.48), transparent 35%),
        linear-gradient(115deg, #06162b 0%, #0a2342 50%, #0b315d 100%);
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 46px 46px;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-one {
    top: -150px;
    right: -120px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(215, 168, 75, 0.18);
}

.hero-decoration-two {
    right: 22%;
    bottom: -240px;
    width: 450px;
    height: 450px;
    background: rgba(215, 168, 75, 0.04);
}

.hero-slides {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(35px);
    transition:
        opacity 0.75s ease,
        visibility 0.75s ease,
        transform 0.75s ease;
}

.hero-slide.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-grid {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    align-items: center;
    gap: 70px;
    padding-top: 60px;
    padding-bottom: 95px;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: var(--public-gold-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--public-gold);
}

.hero-content h1,
.hero-content h2 {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--public-white);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-content h1 span,
.hero-content h2 span {
    display: block;
    color: var(--public-gold-light);
}

.hero-content p {
    max-width: 630px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 36px;
}

.hero-button {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.hero-button-gold {
    color: var(--public-navy);
    background: var(--public-gold);
    border-color: var(--public-gold);
}

.hero-button-gold:hover {
    color: var(--public-navy);
    background: var(--public-gold-light);
    transform: translateY(-3px);
}

.hero-button-light {
    color: var(--public-white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.hero-button-light:hover {
    color: var(--public-navy);
    background: var(--public-white);
    transform: translateY(-3px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 650px;
    margin-top: 55px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature {
    padding: 21px 22px 0 0;
}

.hero-feature + .hero-feature {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature strong {
    display: block;
    color: var(--public-white);
    font-size: 15px;
}

.hero-feature span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(215, 168, 75, 0.25), rgba(9, 42, 77, 0.95));
    clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, rgba(4, 18, 35, 0.45), transparent 50%);
}

.hero-image-frame.image-missing::after {
    content: "Upload slider image";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    font-weight: 700;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    right: -20px;
    bottom: 45px;
    min-width: 290px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: var(--public-navy);
    background: var(--public-white);
    box-shadow: var(--public-shadow);
}

.floating-card-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--public-navy);
    border-radius: 50%;
    background: var(--public-gold);
    font-size: 19px;
    font-weight: 900;
}

.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}

.hero-floating-card strong {
    font-size: 14px;
}

.hero-floating-card small {
    margin-top: 4px;
    color: var(--public-muted);
    font-size: 11px;
}

.slider-controls {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.3s ease;
}

.slider-dot.active {
    width: 34px;
    border-radius: 10px;
    background: var(--public-gold);
}

.slider-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--public-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: 0.25s ease;
}

.slider-arrow:hover {
    color: var(--public-navy);
    border-color: var(--public-gold);
    background: var(--public-gold);
}

/* Footer CTA */

.footer-cta {
    position: relative;
    color: var(--public-white);
    background:
        linear-gradient(110deg, #c99538, #e1b65e);
    overflow: hidden;
}

.footer-cta::after {
    content: "";
    position: absolute;
    top: -100px;
    right: 8%;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 45px;
    padding-bottom: 45px;
}

.footer-cta-small {
    display: block;
    margin-bottom: 8px;
    color: rgba(7, 26, 50, 0.75);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-cta h2 {
    color: var(--public-navy);
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.25;
}

.footer-cta p {
    max-width: 700px;
    margin-top: 10px;
    color: rgba(7, 26, 50, 0.72);
    line-height: 1.7;
}

.footer-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.footer-cta-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 23px;
    color: var(--public-white);
    border: 1px solid var(--public-navy);
    background: var(--public-navy);
    font-weight: 800;
    transition: 0.25s ease;
}

.footer-cta-button:hover {
    transform: translateY(-3px);
}

.footer-cta-button-outline {
    color: var(--public-navy);
    background: transparent;
}

/* Footer */

.public-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    background: #06162a;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(45deg, #ffffff 1px, transparent 1px),
        linear-gradient(-45deg, #ffffff 1px, transparent 1px);
    background-size: 40px 40px;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 70px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.footer-brand-icon {
    color: var(--public-gold);
    background: rgba(255, 255, 255, 0.04);
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    color: var(--public-white);
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.footer-brand small {
    margin-top: 4px;
    color: var(--public-gold);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-about p {
    max-width: 390px;
    font-size: 14px;
    line-height: 1.9;
}

.footer-registration {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.footer-column h3 {
    position: relative;
    margin-bottom: 27px;
    padding-bottom: 13px;
    color: var(--public-white);
    font-size: 17px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--public-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li + li {
    margin-top: 13px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: 0.25s ease;
}

.footer-links a::before {
    content: "›";
    color: var(--public-gold);
    font-size: 18px;
}

.footer-links a:hover {
    color: var(--public-gold-light);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-symbol {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--public-gold);
    border: 1px solid rgba(215, 168, 75, 0.35);
}

.footer-contact-list strong,
.footer-contact-list span,
.footer-contact-list a {
    display: block;
}

.footer-contact-list strong {
    margin-bottom: 4px;
    color: var(--public-white);
    font-size: 13px;
}

.footer-contact-list span,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.7;
}

.footer-contact-list a:hover {
    color: var(--public-gold-light);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.17);
}

.footer-bottom-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 11px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-credits a {
    color: var(--public-gold-light);
}

/* Floating Buttons */

.floating-whatsapp,
.back-to-top {
    position: fixed;
    right: 22px;
    z-index: 1200;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--public-white);
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.floating-whatsapp {
    bottom: 83px;
    background: var(--public-green);
}

.back-to-top {
    bottom: 23px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    background: var(--public-navy);
    transition: 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tablet */

@media (max-width: 1100px) {

    .mobile-menu-button {
        display: flex;
    }

    .public-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1200;
        width: min(360px, 88%);
        height: 100vh;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 105px 30px 35px;
        background: var(--public-white);
        box-shadow: -20px 0 60px rgba(7, 26, 50, 0.2);
        transition: right 0.35s ease;
    }

    .public-navigation.open {
        right: 0;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--public-border);
    }

    .nav-link::after {
        display: none;
    }

    .header-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 25px;
    }

    .header-button {
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 35px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 52px;
    }

    .hero-image-frame {
        height: 450px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 780px) {

    .public-container {
        width: min(100% - 28px, 1180px);
    }

    .topbar-inner {
        justify-content: center;
        min-height: 36px;
    }

    .topbar-message {
        display: none;
    }

    .topbar-contact {
        width: 100%;
        justify-content: center;
        font-size: 11px;
    }

    .topbar-contact span:last-child,
    .topbar-separator {
        display: none;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
    }

    .brand-content strong {
        font-size: 18px;
    }

    .brand-content span {
        font-size: 7px;
    }

    .hero-slider,
    .hero-slides {
        min-height: 860px;
    }

    .hero-grid {
        min-height: 860px;
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 70px;
        padding-bottom: 105px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-features {
        margin-top: 36px;
    }

    .hero-feature {
        padding-right: 9px;
    }

    .hero-feature + .hero-feature {
        padding-left: 9px;
    }

    .hero-feature strong {
        font-size: 12px;
    }

    .hero-feature span {
        font-size: 9px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-image-frame {
        width: 94%;
        height: 350px;
    }

    .hero-floating-card {
        right: 0;
        bottom: 15px;
        min-width: 245px;
    }

    .slider-controls {
        bottom: 24px;
    }

    .footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .footer-cta-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 60px;
    }

    .footer-bottom-inner,
    .footer-credits {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-inner {
        justify-content: center;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .credit-divider {
        display: none;
    }
}

@media (max-width: 480px) {

    .brand-content span {
        display: none;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 37px;
    }

    .hero-button {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 13px;
        border-top: 0;
    }

    .hero-feature,
    .hero-feature + .hero-feature {
        padding: 0 0 12px;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .slider-arrows {
        display: none;
    }
}