/* =========================
   GLOBAL
========================== */

:root {
    --gold: #b8873a;
    --gold-light: #d9b06a;
    --gold-dark: #8f691f;
    --navy: #092e69;
    --navy-deep: #051b3e;
    --blue: #1762cc;
    --serif: "Playfair Display", Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero h2,
.section-title,
.trust-title,
.about-content h2,
.doc-category-head h2,
.page-hero h1,
.logo-text h1,
.service-card h3,
.doc-item-body h3,
.contact-info h2 {
    font-family: var(--serif);
    font-weight: 700;
}

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

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

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

.section {
    padding: 70px 0;
}


/* =========================
   TOP BAR
========================== */

.topbar {
    background: #062657;
    color: #ffffff;
    font-size: 13px;
    padding: 9px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.topbar-right {
    gap: 30px;
}

.topbar-right span {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    font-variant-numeric: tabular-nums;
}

.topbar i {
    margin-right: 6px;
}


/* =========================
   HEADER
========================== */

header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 18px rgba(9,46,105,0.1);
}

.header-inner {
    min-height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.logo-icon {
    width: 45px;
    height: 55px;
    flex-shrink: 0;
    border: 2px solid #162b50;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2c62;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.logo:hover .logo-icon {
    background: #0a2c62;
    color: #ffffff;
    transform: rotate(-6deg) scale(1.05);
}

.logo-icon i {
    font-size: 32px;
}

.logo-text {
    min-width: 0;
}

.logo-text h1 {
    font-size: 22px;
    color: #07337a;
    font-weight: 800;
    line-height: 1.1;
}

.logo-text h1 span {
    color: #1762cc;
}

.logo-text p {
    font-size: 11px;
    color: #444;
    margin-top: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 27px;
    flex-wrap: wrap;
}

nav ul li a {
    position: relative;
    color: #09285b;
    font-size: 14px;
    font-weight: 600;
    padding: 37px 0;
    display: block;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1762cc, #368d1d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1762cc;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    font-size: 25px;
    color: #09285b;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
    color: #1762cc;
    transform: scale(1.1);
}


/* =========================
   HERO
========================== */

.hero {
    min-height: 500px;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,0.98) 38%,
            rgba(255,255,255,0.15) 70%,
            rgba(255,255,255,0) 100%
        ),
        url("Baner.webp")
        center right / cover no-repeat;
}

.hero-content {
    padding: 70px 0;
    width: 55%;
}

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

.hero-content > *,
.page-hero-inner > * {
    opacity: 0;
    animation: fadeUpIn 0.75s ease forwards;
}

.hero-content > *:nth-child(1),
.page-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2),
.page-hero-inner > *:nth-child(2) { animation-delay: 0.16s; }
.hero-content > *:nth-child(3),
.page-hero-inner > *:nth-child(3) { animation-delay: 0.27s; }
.hero-content > *:nth-child(4),
.page-hero-inner > *:nth-child(4) { animation-delay: 0.38s; }
.hero-content > *:nth-child(5),
.page-hero-inner > *:nth-child(5) { animation-delay: 0.49s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.topbar,
header {
    animation: fadeIn 0.6s ease;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217,176,106,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(217,176,106,0); }
}

.page-hero-badges span {
    animation: badgePulse 2.8s ease-in-out infinite;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    background: rgba(184,135,58,0.1);
    border: 1px solid rgba(184,135,58,0.35);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.eyebrow i {
    color: var(--gold);
    font-size: 11px;
}

.hero h2 {
    font-size: 42px;
    line-height: 1.18;
    color: #0b2d61;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h2 span {
    color: #145bc4;
}

.hero p {
    font-size: 16px;
    max-width: 570px;
    margin-bottom: 18px;
    color: #202020;
}

.hero-list {
    list-style: none;
    margin: 20px 0 25px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 14px;
}

.hero-list i {
    color: #348d20;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #3f9c23 0%, #2c7a15 100%);
    border: 2px solid #368d1d;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.btn-primary:hover::before {
    left: 125%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #348717 0%, #205e0f 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(54,141,29,0.32);
}

.btn-outline {
    color: #287317;
    border: 2px solid #368d1d;
    background: transparent;
}

.btn-outline:hover {
    background: #368d1d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(54,141,29,0.18);
}

.hero-list li {
    transition: transform 0.25s ease;
}

.hero-list li:hover {
    transform: translateX(4px);
}

.hero-list i {
    transition: transform 0.25s ease;
}

.hero-list li:hover i {
    transform: scale(1.2);
}


/* =========================
   PAGE HERO (inner pages)
========================== */

.page-hero {
    min-height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(6,38,87,0.92) 0%,
            rgba(7,51,122,0.88) 60%,
            rgba(7,51,122,0.8) 100%
        ),
        url("patent-trade%20mark.jpg")
        right center / cover no-repeat;
}

.page-hero-inner {
    padding: 45px 0;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.breadcrumb a {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* =========================
   USP BAR
========================== */

.usp-bar {
    background: linear-gradient(180deg, #f8f9fb 0%, #f1f4f9 100%);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.usp-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.usp-item:hover .usp-icon img {
    transform: scale(1.15) rotate(-4deg);
}

.usp-item h4 {
    font-size: 13px;
    color: #101010;
    line-height: 1.5;
}


/* =========================
   ABOUT
========================== */

.about {
    padding: 70px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
}

.about-image {
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: right center;
    border-radius: 4px;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.06);
}

.about-image-contain {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e7ebf2;
}

.about-image-contain img {
    height: auto;
    object-fit: contain;
    object-position: center;
}

.about-image-contain:hover img {
    transform: scale(1.03);
}

.about-content h2 {
    color: #092e69;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content p {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
}

.learn-more {
    color: #075fd0;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.learn-more:hover {
    color: #054aa8;
    transform: translateX(5px);
}


/* =========================
   SERVICES
========================== */

.services {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
}

.section-title {
    position: relative;
    text-align: center;
    color: #092e69;
    font-size: 25px;
    margin-bottom: 35px;
    padding-bottom: 18px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transition: width 0.7s ease 0.2s;
}

.section-title.reveal::after {
    width: 0;
}

.section-title.reveal-visible::after {
    width: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    padding: 30px 18px;
    text-align: center;
    min-height: 270px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: 0.3s;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(9,46,105,0.1);
    border-color: #d7e6fb;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #eaf1fc 0%, #d7e6fb 100%);
    box-shadow: inset 0 0 0 1px rgba(23,98,204,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a409a;
    font-size: 40px;
}

.service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.15) rotate(-4deg);
}

.service-card h3 {
    font-size: 14px;
    line-height: 1.35;
    color: #092e69;
    min-height: 38px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 12px;
    color: #333;
    min-height: 55px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-card a {
    color: #075fd0;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card a:hover {
    color: #054aa8;
    transform: translateX(4px);
}


/* =========================
   TRUST SECTION
========================== */

.trust {
    position: relative;
    background: linear-gradient(135deg, #0a3782 0%, #051d47 100%);
    color: #ffffff;
    padding: 40px 0;
}

.trust::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.trust-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    gap: 15px;
    padding: 0 25px;
    border-right: 1px solid rgba(255,255,255,0.35);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item {
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 0 2px rgba(217,176,106,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.28);
}

.trust-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.trust-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.trust-item p {
    font-size: 12px;
    line-height: 1.5;
}


/* =========================
   DOCUMENT LISTS (certified copies detail)
========================== */

.doc-category-head {
    text-align: center;
    margin-bottom: 40px;
}

.doc-category-head:not(:first-child) {
    margin-top: 70px;
}

.doc-category-head h2 {
    position: relative;
    display: inline-block;
    color: #092e69;
    font-size: 26px;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.doc-category-head h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transition: width 0.7s ease 0.2s;
}

.doc-category-head.reveal h2::after {
    width: 0;
}

.doc-category-head.reveal-visible h2::after {
    width: 64px;
}

.doc-category-head p {
    color: #4a5568;
    font-size: 13.5px;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    counter-reset: docnum;
}

.doc-item {
    position: relative;
    counter-increment: docnum;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-left: 4px solid #1762cc;
    border-radius: 10px;
    padding: 28px 34px 28px 30px;
    box-shadow: 0 3px 14px rgba(9,46,105,0.05);
    transition: 0.3s ease;
    overflow: hidden;
}

.doc-item::after {
    content: counter(docnum, decimal-leading-zero);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    font-weight: 800;
    color: rgba(9,46,105,0.06);
    line-height: 1;
    pointer-events: none;
}

.doc-item:hover {
    transform: translateY(-4px);
    border-left-color: #368d1d;
    box-shadow: 0 18px 34px rgba(9,46,105,0.13);
}

.doc-item-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf1fc 0%, #d7e6fb 100%);
    box-shadow: inset 0 0 0 1px rgba(23,98,204,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.doc-item:hover .doc-item-icon {
    transform: scale(1.08) rotate(-4deg);
}

.doc-item-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.doc-item-body {
    flex: 1;
    min-width: 0;
}

.doc-item-body h3 {
    color: #092e69;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.doc-item-body p {
    color: #454e5c;
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.doc-item-body p:last-child {
    margin-bottom: 0;
}

.doc-also {
    color: #092e69 !important;
    font-weight: 700;
    font-size: 12.5px !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 8px !important;
}

.doc-item-body ul {
    list-style: none;
    margin: 0 0 14px;
    display: grid;
    gap: 7px;
}

.doc-item-body ul li {
    position: relative;
    padding-left: 24px;
    font-size: 13.5px;
    color: #454e5c;
    line-height: 1.6;
}

.doc-item-body ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #368d1d;
    font-weight: 700;
    font-size: 12px;
}

.doc-requirement {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fdeeee;
    color: #9a2020;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 6px;
}

.doc-requirement::before {
    content: "\26A0";
    font-size: 12px;
}

.doc-note {
    position: relative;
    background: linear-gradient(135deg, #fff8e6, #fdf1d2);
    border: 1px solid #f0dca0;
    border-left: 4px solid #d1a521;
    border-radius: 8px;
    padding: 18px 24px;
    font-size: 13.5px;
    color: #5c4a1a;
    margin-top: 45px;
    box-shadow: 0 6px 18px rgba(209,165,33,0.1);
}


/* =========================
   PAGE HERO TAGLINE / BADGES
========================== */

.page-hero-tagline {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    margin-bottom: 14px;
}

.page-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.page-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
}

.page-hero-badges i {
    color: var(--gold-light);
    font-size: 12px;
}


/* =========================
   COUNTRY LISTS
========================== */

.country-flag-img {
    display: block;
    margin: 0 auto 22px;
    max-width: 420px;
    border-radius: 6px;
}

.country-list-title {
    text-align: center;
    color: #092e69;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.country-grid {
    display: grid;
    gap: 10px 14px;
    margin-bottom: 40px;
}

.country-grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.country-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.country-grid span {
    display: block;
    background: #f8fafc;
    border: 1px solid #e7ebf2;
    border-radius: 5px;
    padding: 9px 10px;
    font-size: 12.5px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    transition: 0.25s ease;
}

.country-grid span:empty {
    background: none;
    border: none;
}

.country-grid span:not(:empty):hover {
    background: #eaf1fc;
    border-color: #c6dcf8;
    color: #092e69;
    transform: translateY(-2px);
}


/* =========================
   COST NOTE
========================== */

.cost-note {
    background: linear-gradient(135deg, #eaf1fc, #dfeaf9);
    border: 1px solid #c6dcf8;
    border-left: 4px solid #1762cc;
    border-radius: 8px;
    padding: 18px 24px;
    font-size: 13.5px;
    color: #1a2e4d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cost-note a {
    color: #054aa8;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: underline;
    text-decoration-color: rgba(5,74,168,0.35);
    text-underline-offset: 2px;
    font-variant-numeric: tabular-nums;
}

.cost-note a:hover {
    color: #033b85;
    text-decoration-color: currentColor;
}


/* =========================
   THREE-STEP PROCESS
========================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 45px 0;
}

.step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e1e5ea;
    border-radius: 10px;
    padding: 32px 26px 26px;
    box-shadow: 0 3px 14px rgba(9,46,105,0.05);
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(9,46,105,0.1);
    border-color: #d7e6fb;
}

.step-num {
    position: absolute;
    top: -16px;
    left: 26px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #092e69);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(9,46,105,0.28);
}

.step-icon {
    width: 100%;
    max-width: 150px;
    margin: 10px auto 18px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e7ebf2;
}

.step-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.step-card h3 {
    color: #092e69;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: #454e5c;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.step-card ul {
    list-style: none;
    display: grid;
    gap: 6px;
}

.step-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 12.5px;
    color: #454e5c;
    line-height: 1.6;
}

.step-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #368d1d;
    font-weight: 700;
    font-size: 11px;
}


/* =========================
   SEND YOUR DOCUMENTS
========================== */

.send-docs {
    background: linear-gradient(135deg, #0a3782 0%, #051d47 100%);
    color: #ffffff;
    text-align: center;
    padding: 55px 0;
}

.send-docs-inner h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.send-docs-inner p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.send-docs-inner .btn-primary {
    font-size: 16px;
    letter-spacing: 0.3px;
}


/* =========================
   CONTACT PAGE
========================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-list {
    list-style: none;
    margin-top: 20px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.contact-info-list li:hover .contact-info-icon img {
    transform: scale(1.15) rotate(-4deg);
}

.contact-info-list h4 {
    font-size: 14px;
    color: #092e69;
    margin-bottom: 4px;
}

.contact-info-list p {
    font-size: 15.5px;
    color: #092e69;
    font-weight: 700;
    letter-spacing: 0.15px;
    font-variant-numeric: tabular-nums;
}

.contact-form {
    background: #f8fafc;
    border: 1px solid #e1e5ea;
    border-radius: 6px;
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #092e69;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #d7dce3;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1762cc;
    box-shadow: 0 0 0 4px rgba(23,98,204,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}


/* =========================
   ORDER FORM SECTION
========================== */

.order-form-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.order-form {
    background: #ffffff;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(9,46,105,0.06);
}

.names-sidebar {
    background: #ffffff;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(9,46,105,0.06);
}

.names-sidebar label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #092e69;
    margin-bottom: 12px;
}

.search-box {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.search-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d7dce3;
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-input:focus {
    outline: none;
    border-color: #1762cc;
    box-shadow: 0 0 0 3px rgba(23,98,204,0.12);
}

.search-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #3f9c23 0%, #2c7a15 100%);
    border: 2px solid #368d1d;
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: linear-gradient(135deg, #348717 0%, #205e0f 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(54,141,29,0.28);
}

.no-results {
    color: #999;
    font-size: 13px;
    padding: 10px;
    text-align: center;
    font-style: italic;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #092e69;
    margin-bottom: 8px;
}

.order-form .form-group select,
.order-form .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7dce3;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.order-form .form-group select:focus,
.order-form .form-group input:focus {
    outline: none;
    border-color: #1762cc;
    box-shadow: 0 0 0 4px rgba(23,98,204,0.12);
}

.order-form .submit-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3f9c23 0%, #2c7a15 100%);
    border: 2px solid #368d1d;
    border-radius: 4px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.order-form .submit-btn:hover {
    background: linear-gradient(135deg, #348717 0%, #205e0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54,141,29,0.28);
}

.names-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e1e5ea;
    border-radius: 4px;
    background: #f8fafc;
    padding: 10px;
}

.names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.name-item {
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #d7dce3;
    border-radius: 4px;
    font-size: 13px;
    color: #092e69;
    cursor: pointer;
    transition: all 0.25s ease;
}

.name-item:hover {
    background: #eaf1fc;
    border-color: #1762cc;
    color: #054aa8;
    transform: translateY(-1px);
}

.price-display {
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #d7dce3;
    border-radius: 4px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}


/* =========================
   FOOTER
========================== */

footer {
    position: relative;
    background: linear-gradient(160deg, #0a2c62 0%, #051b3e 100%);
    color: rgba(255,255,255,0.78);
    font-weight: 600;
    letter-spacing: 0.15px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.footer-main {
    padding: 55px 0 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--gold-light);
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-col p,
.footer-col li {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 3px;
}

.footer-col ul li a {
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #ffffff;
}

.footer-contact i {
    color: var(--gold-light);
    margin-top: 4px;
}

.learn-more.footer-learn-more {
    color: var(--gold-light);
}

.learn-more.footer-learn-more:hover {
    color: #ecd4a0;
}

.footer-bottom {
    background: #030f24;
    color: rgba(255,255,255,0.7);
    padding: 14px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-block;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover {
    opacity: 0.75;
    text-decoration: underline;
}


/* =========================
   SCROLL REVEAL ANIMATION
========================== */

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

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

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }

}


/* =========================
   RESPONSIVE
========================== */

@media(max-width: 1100px) {

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

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

    nav ul {
        gap: 16px;
    }

    .container {
        width: 92%;
    }

    .country-grid-7 {
        grid-template-columns: repeat(4, 1fr);
    }

    .country-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

}


@media(max-width: 850px) {

    .topbar-inner {
        flex-direction: column;
        gap: 5px;
    }

    .header-inner {
        min-height: 75px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        background: #ffffff;
        border-top: 1px solid #eee;
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
        transition: max-height 0.45s ease, opacity 0.35s ease;
    }

    nav.active {
        max-height: calc(100vh - 75px);
        opacity: 1;
        overflow-y: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 5%;
        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 12px 0;
    }

    nav ul li a::after {
        bottom: 6px;
    }

    .hero {
        background-position: center;
    }

    .hero-content {
        width: 75%;
    }

    .hero h2 {
        font-size: 35px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .trust-item {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .country-grid-7,
    .country-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width: 600px) {

    .topbar {
        font-size: 11px;
    }

    .topbar-right span {
        font-size: 12px;
    }

    .topbar-right {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(
                rgba(255,255,255,0.94),
                rgba(255,255,255,0.94)
            ),
            url("Baner.webp")
            center / cover;
    }

    .hero-content {
        width: 100%;
        padding: 55px 0;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .usp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card {
        min-height: 280px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 10px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .page-hero {
        min-height: 180px;
        background:
            linear-gradient(
                rgba(6,38,87,0.9),
                rgba(7,51,122,0.86)
            ),
            url("patent-trade%20mark.jpg")
            center / cover;
    }

    .page-hero h1 {
        font-size: 24px;
    }

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

    .doc-item {
        flex-direction: column;
        gap: 14px;
        padding: 24px 22px;
    }

    .doc-item::after {
        font-size: 24px;
        top: 8px;
        right: 16px;
    }

}


@media(max-width: 400px) {

    .usp-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .logo-text p {
        display: none;
    }

}
/* Search Section */
/* =====================================
   DATABASE SEARCH
===================================== */

.database-search-section {
    padding: 70px 20px;
    background: #f8f7f3;
}

.database-search-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.database-search-container h2 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #092e69;
}

.database-search-description {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}
.database-search-format {
    text-align: center;
    color: #ff0000;
    font-weight: 700;
    font-size: 18px;
    margin: 20px 0;
}


/* Search Box */

.database-search-box {
    display: flex;
    max-width: 750px;
    margin: 0 auto;
    gap: 12px;
}

.database-search-box input {
    flex: 1;
    height: 58px;
    padding: 0 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.database-search-box input:focus {
    border-color: #5c4a1a;
}


.database-search-box button {
    height: 58px;
    padding: 0 28px;
    border: 0;
    border-radius: 4px;
    background: #062657;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.database-search-box button:hover {
    background: #17386b;
}

.database-search-box button:disabled {
    opacity: 0.7;
    cursor: wait;
}


/* Loading */

.database-search-message {
    margin-top: 20px;
    font-size: 15px;
    color: #666;
}


/* Result */

#databaseSearchResult {
    max-width: 750px;
    margin: 25px auto 0;
}


/* Success */

.search-success {
    padding: 30px;
    border: 1px solid #d6dfd4;
    border-radius: 6px;
    background: #fff;
    text-align: center;
}

.search-success-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #062657;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

.search-success h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #222;
}

.search-success p {
    color: #666;
}


/* Document */

.search-document {
    margin: 20px 0;
    padding: 15px;
    background: #f6f6f6;
    border-radius: 4px;
}

.search-document strong {
    margin-right: 8px;
}


/* Not Found */

.search-not-found {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    text-align: center;
}

.search-not-found-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #777;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

.search-not-found h3 {
    margin: 0 0 10px;
    font-size: 24px;
}


/* Error */

.search-error {
    padding: 18px;
    border-radius: 4px;
    background: #f8eeee;
    color: #a00000;
}


/* Order button */

.search-order-button {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 25px;
    border-radius: 4px;
    background: #5c4a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.search-order-button:hover {
    background: #40330f;
    color: #fff;
}


/* Mobile */

@media (max-width: 700px) {

    .database-search-section {
        padding: 50px 15px;
    }

    .database-search-container h2 {
        font-size: 28px;
    }

    .database-search-box {
        flex-direction: column;
    }

    .database-search-box input,
    .database-search-box button {
        width: 100%;
    }

}
/* ==========================================
   REQUEST CERTIFIED COPY BUTTON
========================================== */

.search-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: none;
    border-radius: 8px;
    background: #1d4ed8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.search-request-button:hover {
    background: #163ca8;
    transform: translateY(-1px);
}


/* ==========================================
   MODAL
========================================== */

.document-request-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.document-request-modal.active {
    visibility: visible;
    opacity: 1;
} 

/* Overlay */

.document-request-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
}

/* Modal Box */

.document-request-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
}

.document-request-modal.active
.document-request-content {
    transform: translateY(0) scale(1);
}

/* Close Button */

.document-request-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.document-request-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

/* Header */

.document-request-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 25px;
}

.document-request-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 24px;
}

.document-request-header h2 {
    margin: 0 0 10px;
    font-size: 27px;
    font-weight: 700;
    color: #0f172a;
}

.document-request-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Form */

.document-form-group {
    margin-bottom: 18px;
}

.document-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.document-form-group input,
.document-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dbe2ea;
    border-radius: 9px;
    background: #fff;
    color: #0f172a;
    font-family: inherit;
    font-size: 15px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.document-form-group input:focus,
.document-form-group textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.document-form-group input[readonly] {
    background: #f8fafc;
    color: #475569;
    cursor: default;
}

.document-form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Submit */

.document-request-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    border-radius: 9px;
    padding: 14px 20px;
    background: #1d4ed8;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.document-request-submit:hover {
    background: #163ca8;
    transform: translateY(-1px);
}

/* Success Message */

.document-request-message {
    margin-top: 15px;
}

.request-success-message {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 16px;
    border-radius: 9px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 14px;
    line-height: 1.5;
}

.request-success-message i {
    font-size: 20px;
    margin-bottom: 3px;
}

/* Prevent page scroll when modal open */

body.modal-open {
    overflow: hidden;
}

/* Mobile */

@media (max-width: 600px) {

    .document-request-modal {
        padding: 12px;
    }

    .document-request-content {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .document-request-header h2 {
        font-size: 23px;
    }

    .search-result-item {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .search-request-button {
        width: 100%;
    }

}

/* ==========================================
   SEARCH RESULTS
========================================== */

.search-results-list {
  max-height: 450px;   /* apni requirement ke mutabiq */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.search-results-list::-webkit-scrollbar {
    width: 8px;
}


.search-results-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.search-results-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Individual Result */

.search-result-item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 13px 16px;

    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;

    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
/* File Name */

.search-file-name {
    min-width: 0;
    flex: 1;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #1e293b;
    font-size: 15px;
    font-weight: 500;

    text-align: left;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-file-name i {
    flex-shrink: 0;
    color: #64748b;
    font-size: 17px;
}
/* Request Button */

.search-request-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 205px;
    padding: 11px 18px;
    border: 0;
    border-radius: 8px;
    background: #003784;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.search-request-button:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(29, 78, 216, 0.2);
}

.search-request-button i {
    font-size: 14px;
}
/* ==========================================
   SUCCESS BOX
========================================== */

.search-success {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 35px 35px;
    background: #ffffff;
    border: 1px solid #d9e1d6;
    border-radius: 10px;
}

.search-success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #062657;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
}

.search-success h3 {
    margin: 0 0 8px;
    text-align: center;
    color: #111827;
    font-size: 25px;
}

.search-success > p {
    margin: 0;
    text-align: center;
    color: #64748b;
    font-size: 15px;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .search-success {
        padding: 25px 15px;
    }

    .search-results-list {
        margin-top: 20px;
    }

    .search-result-item {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .search-file-name {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
    }

    .search-request-button {
        width: 100%;
        min-width: 0;
    }

}
#databaseSearchForm {
    margin-top: 25px;
}
.database-contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    text-align: center;
}

.database-contact-info strong {
    display: block;
    width: 100%;
    text-align: center !important;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.database-contact-info .contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.database-contact-info .contact-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.database-contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 8px;
    flex-wrap: wrap; /* Mobile par automatically next line */
}

.contact-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-row a {
    color: #0b2f6b;
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

.usp-dashboard .stat-card {
    background: rebeccapurple !important;
}