:root {
    --navy: #0B1D3A;
    --navy-2: #10284f;
    --gold: #D4A017;
    --gold-2: #f0c85a;
    --white: #FFFFFF;
    --muted: #5f6c7b;
    --line: #e8edf4;
    --shadow: 0 18px 45px rgba(11, 29, 58, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy);
    background: var(--white);
    font-family: "Raleway", Arial, sans-serif;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.15;
    letter-spacing: 0;
}

p {
    margin: 0 0 16px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled,
.site-header.nav-open {
    background: rgba(11, 29, 58, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

.brand img,
.footer-logo img,
.admin-login img,
.admin-sidebar img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: transparent;
    border-radius: var(--radius);
}

.hero,
.page-hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 120px 20px 70px;
    color: var(--white);
    background: var(--navy) var(--hero-image) center / cover no-repeat;
}

.page-hero {
    min-height: 56vh;
}

.page-hero.compact {
    min-height: 46vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(6, 16, 34, 0.88), rgba(11, 29, 58, 0.68), rgba(6, 16, 34, 0.88));
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    text-align: center;
}

.hero h1 {
    min-height: 160px;
    font-size: clamp(2.35rem, 6vw, 5.5rem);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 4.6rem);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-tagline {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.fade-delay {
    animation: fadeUp 0.9s ease 0.25s both;
}

.cursor {
    color: var(--gold);
    animation: blink 0.8s steps(1) infinite;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
}

.btn-gold {
    color: var(--navy);
    background: var(--gold);
    box-shadow: 0 12px 24px rgba(212, 160, 23, 0.25);
}

.btn-danger {
    color: var(--white);
    background: #a72525;
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.shimmer::before {
    position: absolute;
    inset: 0 auto 0 -70%;
    width: 50%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
}

.shimmer:hover::before {
    animation: shimmer 0.85s ease;
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 92px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.story-copy h2,
.contact-form h2,
.contact-details h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-heading p {
    color: var(--muted);
}

.service-grid,
.feature-grid,
.testimonial-grid,
.values-section,
.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-block,
.testimonial-card,
.value-card,
.admin-edit-card,
.summary-card,
.contact-form,
.contact-details,
.statement-panel,
.testimonial-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(11, 29, 58, 0.08);
}

.service-card {
    min-height: 260px;
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 18px 38px rgba(212, 160, 23, 0.2);
    transform: translateY(-7px);
}

.card-icon,
.feature-block i,
.value-card i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.12);
    font-size: 1.35rem;
}

.area-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.badge-odisha {
    color: #6a4700;
    background: rgba(212, 160, 23, 0.2);
}

.badge-india {
    color: #0b4a8f;
    background: rgba(42, 123, 214, 0.14);
}

.stats-section {
    width: 100%;
    max-width: none;
    padding: 70px clamp(18px, 6vw, 90px);
    color: var(--white);
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: min(1100px, 100%);
    margin: 0 auto;
    text-align: center;
}

.stats-grid strong {
    display: block;
    color: var(--gold);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.stats-grid span {
    font-weight: 700;
}

.choose-section {
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 6vw, 90px);
    padding-left: clamp(18px, 6vw, 90px);
    background: #f7f9fc;
}

.feature-block,
.value-card,
.testimonial-card {
    padding: 26px;
}

.testimonials-section {
    padding-bottom: 110px;
}

.empty-state {
    max-width: 620px;
    margin: 0 auto 30px;
    padding: 30px;
    border: 1px dashed var(--gold);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

.testimonial-form {
    width: min(760px, 100%);
    margin: 28px auto 0;
    padding: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #cfd8e3;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
    font: inherit;
}

textarea {
    min-height: 126px;
    resize: vertical;
}

.testimonial-form textarea,
.testimonial-form input {
    margin-bottom: 14px;
}

.form-message {
    padding: 12px 14px;
    border-radius: var(--radius);
    background: rgba(212, 160, 23, 0.13);
    font-weight: 700;
}

.form-message.success {
    color: #0b5b31;
    background: #e4f8ed;
}

.form-message.error {
    color: #8b1d1d;
    background: #fde9e9;
}

.form-message.warning {
    color: #765000;
    background: #fff5d8;
}

.site-footer {
    padding: 64px clamp(18px, 6vw, 90px) 22px;
    color: var(--white);
    background: #07152b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 36px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-grid ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-grid li {
    margin-bottom: 8px;
}

.footer-grid a {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-contact-link {
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.55);
    color: var(--gold) !important;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    font-size: 1.9rem;
    animation: pulse 1.8s infinite;
}

.story-section,
.contact-section,
.india-map,
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.statement-panel {
    padding: 34px;
    color: var(--white);
    background: var(--navy);
}

.statement-panel div + div {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.india-map {
    align-items: stretch;
}

.map-panel {
    display: grid;
    min-height: 390px;
    place-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #edf3fb, #ffffff);
    box-shadow: var(--shadow);
}

.india-shape {
    position: relative;
    width: min(280px, 70vw);
    height: 350px;
    border-radius: 46% 48% 42% 50% / 20% 18% 55% 58%;
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
    clip-path: polygon(45% 0, 68% 6%, 80% 20%, 74% 35%, 86% 48%, 70% 58%, 72% 78%, 55% 100%, 43% 82%, 28% 70%, 18% 52%, 28% 35%, 20% 18%);
}

.pin.odisha {
    position: absolute;
    right: 58px;
    bottom: 108px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: var(--gold);
    font-weight: 700;
}

.ring {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 160, 23, 0.45);
    border-radius: 50%;
    animation: mapPulse 2.8s infinite;
}

.ring-two {
    inset: 65px;
    animation-delay: 0.55s;
}

.map-legend {
    display: grid;
    align-content: center;
    padding: 34px;
    border-radius: var(--radius);
    background: #f7f9fc;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
}

.legend-dot.amber {
    background: var(--gold);
}

.legend-dot.blue {
    background: #2a7bd6;
}

.timeline {
    position: relative;
    display: grid;
    gap: 24px;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    content: "";
    background: var(--line);
}

.timeline-item {
    position: relative;
    width: calc(50% - 34px);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(11, 29, 58, 0.08);
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.timeline-item:nth-child(even) {
    justify-self: end;
    transform: translateX(28px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item span {
    color: var(--gold);
    font-family: "Montserrat", Arial, sans-serif;
}

.service-detail {
    width: min(1180px, calc(100% - 36px));
    border-bottom: 1px solid var(--line);
}

.service-detail.reverse .service-detail-copy {
    order: 2;
}

.service-detail-image img {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.check-list {
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.check-list i {
    color: var(--gold);
    margin-top: 5px;
}

.contact-form,
.contact-details {
    padding: 34px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-details p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-details i {
    color: var(--gold);
    margin-top: 5px;
}

.whatsapp-btn {
    color: var(--white);
    background: #25d366;
}

.map-embed {
    height: 260px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: var(--radius);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-login-body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 20px;
    background: var(--navy);
}

.installer-body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--navy), #152f59);
}

.installer-card {
    width: min(720px, 100%);
    padding: 32px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.installer-brand {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.installer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: contain;
    background: #f7f9fc;
}

.installer-form {
    display: grid;
    gap: 14px;
}

.installer-form h2 {
    margin-top: 12px;
    font-size: 1.2rem;
}

.installer-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.installer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline.dark {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}

.admin-login {
    display: grid;
    width: min(420px, 100%);
    gap: 14px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.admin-body {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 260px 1fr;
    background: #f4f7fb;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    color: var(--white);
    background: var(--navy);
}

.admin-sidebar a {
    display: block;
    padding: 11px 12px;
    margin-bottom: 8px;
    border-radius: var(--radius);
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    color: var(--navy);
    background: var(--gold);
}

.admin-main {
    padding: 32px;
    overflow-x: auto;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.summary-card,
.admin-edit-card {
    padding: 24px;
}

.summary-card strong {
    display: block;
    color: var(--gold);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2.4rem;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(11, 29, 58, 0.08);
}

table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

th,
td {
    padding: 13px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--white);
    background: var(--navy);
}

.inline-form {
    min-width: 130px;
}

.text-danger {
    border: 0;
    color: #9b1c1c;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.admin-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admin-add-service {
    margin-bottom: 22px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.admin-card-header h2 {
    font-size: 1.2rem;
}

.admin-service-card {
    display: grid;
    gap: 12px;
}

.admin-service-card form {
    display: grid;
    gap: 12px;
}

.content-manager-form {
    display: grid;
    gap: 22px;
    padding-bottom: 88px;
}

.content-group-card h2 {
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 1.35rem;
}

.content-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.content-field-grid label {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
    font-weight: 700;
}

.content-field-grid small {
    color: var(--muted);
    font-family: Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 400;
}

.content-field-grid .wide-field {
    grid-column: 1 / -1;
}

.content-field-grid textarea {
    min-height: 110px;
}

.sticky-save-bar {
    position: sticky;
    bottom: 16px;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.admin-edit-card label {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    font-weight: 700;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.checkbox-label input {
    width: auto;
    min-height: auto;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    to {
        left: 120%;
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes mapPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

@media (max-width: 980px) {
    .service-grid,
    .feature-grid,
    .values-section,
    .stats-grid,
    .footer-grid,
    .story-section,
    .contact-section,
    .india-map,
    .service-detail,
    .admin-service-list,
    .admin-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: calc(100% - 26px);
        justify-self: end;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: 72px;
        right: 18px;
        left: 18px;
        display: none;
        padding: 18px;
        border-radius: var(--radius);
        background: var(--navy);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: grid;
        gap: 8px;
    }

    .brand span {
        max-width: 160px;
        line-height: 1.1;
    }

    .hero h1 {
        min-height: 128px;
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .hero,
    .page-hero {
        padding-right: 16px;
        padding-left: 16px;
    }

    .section {
        width: min(100% - 28px, 1180px);
        padding: 64px 0;
    }

    .service-card,
    .feature-block,
    .value-card,
    .testimonial-card,
    .contact-form,
    .contact-details,
    .testimonial-form,
    .statement-panel {
        padding: 22px;
    }

    .service-grid,
    .feature-grid,
    .values-section,
    .stats-grid,
    .footer-grid,
    .story-section,
    .contact-section,
    .india-map,
    .service-detail,
    .admin-service-list,
    .admin-card-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .installer-actions {
        display: grid;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .service-detail.reverse .service-detail-copy {
        order: 0;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .admin-main {
        padding: 16px;
    }

    .admin-top {
        display: grid;
        gap: 6px;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-card-header {
        display: grid;
    }

    .content-field-grid {
        grid-template-columns: 1fr;
    }

    .sticky-save-bar {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    table {
        min-width: 760px;
    }
}
