/* =========================================================
   DIAKSHAM GLOBAL UI POLISH
   Selection + Scrollbar + Focus
   Add at the END of style.css
========================================================= */


/* =========================================================
   1. GLOBAL TEXT SELECTION
========================================================= */

::selection {
    background: #2B3F58;
    color: #FFFFFF;
}

::-moz-selection {
    background: #2B3F58;
    color: #FFFFFF;
}


/* Gold selection for important branded elements */

.brand-highlight::selection,
.gold-text::selection {
    background: #CCB473;
    color: #2B3F58;
}

.brand-highlight::-moz-selection,
.gold-text::-moz-selection {
    background: #CCB473;
    color: #2B3F58;
}


/* =========================================================
   2. GLOBAL SCROLLBAR — CHROME / EDGE / SAFARI
========================================================= */

html::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

body::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}


/* Track */

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #172B40;
}


/* Scrollbar */

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #D8BD76 0%,
        #CCB473 50%,
        #B49656 100%
    );

    border-radius: 20px;

    border: 2px solid #172B40;

    min-height: 45px;
}


/* Hover */

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #E0C77F;
}


/* Active */

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
    background: #B49656;
}


/* Scrollbar corner */

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
    background: #172B40;
}


/* =========================================================
   3. FIREFOX GLOBAL SCROLLBAR
========================================================= */

html,
body {
    scrollbar-width: thin;
    scrollbar-color: #CCB473 #172B40;
}


/* =========================================================
   4. ALL INTERNAL SCROLLABLE ELEMENTS
   Modal / dropdown / menu / panels / custom sections
========================================================= */

* {
    scrollbar-width: thin;
    scrollbar-color: #CCB473 transparent;
}


/* WebKit */

*::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #D8BD76 0%,
        #CCB473 100%
    );

    border-radius: 20px;

    border: 2px solid transparent;
    background-clip: padding-box;

    min-height: 40px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #D8BD76;
    background-clip: padding-box;
}


/* =========================================================
   5. BODY — SMOOTH SCROLL
========================================================= */

html {
    scroll-behavior: smooth;
}


/* Don't interfere with users who disable animations */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

}


/* =========================================================
   6. FORM ELEMENT FOCUS
   Remove ugly browser blue outline
========================================================= */

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}


/* Accessible keyboard focus */

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    border-color: #CCB473 !important;

    box-shadow:
        0 0 0 2px rgba(204, 180, 115, 0.15) !important;
}


/* Buttons */

button:focus-visible,
a:focus-visible {
    outline: 2px solid #CCB473;
    outline-offset: 3px;
}


/* =========================================================
   7. INPUT / TEXTAREA SELECTION
========================================================= */

input::selection,
textarea::selection {
    background: #2B3F58;
    color: #FFFFFF;
}

input::-moz-selection,
textarea::-moz-selection {
    background: #2B3F58;
    color: #FFFFFF;
}


/* =========================================================
   8. SELECT — REMOVE NATIVE UGLY APPEARANCE
   Only applies to custom select class
========================================================= */

.ds-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: none !important;
}


/* =========================================================
   9. PREMIUM SELECT WRAPPER
   Use .ds-select-wrap around select
========================================================= */

.ds-select-wrap {
    position: relative;
}

.ds-select-wrap::after {
    content: "";

    position: absolute;

    right: 18px;
    top: 50%;

    width: 7px;
    height: 7px;

    border-right: 1.5px solid #CCB473;
    border-bottom: 1.5px solid #CCB473;

    transform: translateY(-65%) rotate(45deg);

    pointer-events: none;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.ds-select-wrap:hover::after {
    border-color: #B49656;
}


/* =========================================================
   10. LINKS — PREMIUM TRANSITION
   Doesn't force a color, only smoothness
========================================================= */

a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   11. MOBILE TOUCH
========================================================= */

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   12. PREVENT HORIZONTAL OVERFLOW
   IMPORTANT FOR RESPONSIVE HEADER / MODAL
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   13. MOBILE SCROLLBAR
========================================================= */

@media (max-width: 767px) {

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 6px;
    }

    *::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    html,
    body {
        scrollbar-width: thin;
    }

}


/* =========================================================
   14. VERY SMALL DEVICES
========================================================= */

@media (max-width: 480px) {

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 5px;
    }

}


/* =========================================================
   DIAKSHAM PREMIUM DARK GLASS HEADER
========================================================= */

#diaksham-header {
    --ds-navy: #2b3f58;
    --ds-deep: #172536;
    --ds-gold: #ccb473;
    --ds-white: #ffffff;

    position: sticky;
    top: 0;
    z-index: 99999;

    width: 100%;

    font-family: inherit;
}

#diaksham-header *,
#diaksham-header *::before,
#diaksham-header *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.ds-header-container {
    width: min(1300px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   DIAKSHAM PREMIUM TOP STRIP
========================================================= */

.ds-top-strip {
    position: relative;

    height: 40px;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            #101d2b 0%,
            #172536 45%,
            #101d2b 100%
        );

    border-bottom:
        1px solid rgba(204,180,115,.20);
}


/* subtle gold light */

.ds-top-strip::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100px;

    width: 240px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(204,180,115,.08),
            transparent
        );

    transform: skewX(-25deg);

    animation: dsTopLight 7s ease-in-out infinite;
}


@keyframes dsTopLight {

    0% {
        left: -250px;
    }

    50% {
        left: 45%;
    }

    100% {
        left: 120%;
    }

}


/* =========================================================
   INNER
========================================================= */

.ds-top-strip .ds-header-container {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LEFT BRAND
========================================================= */

.ds-top-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.ds-top-brand-text {
    color: rgba(255,255,255,.70);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.65px;

    white-space: nowrap;
}


/* ORBIT DOT */

.ds-top-brand-orbit {
    position: relative;

    width: 8px;
    height: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.ds-top-brand-orbit::before {
    content: "";

    position: absolute;

    width: 17px;
    height: 17px;

    border: 1px solid rgba(204,180,115,.25);

    border-radius: 50%;
}


.ds-top-brand-orbit span {
    width: 6px;
    height: 6px;

    display: block;

    background: #ccb473;

    border-radius: 50%;

    box-shadow:
        0 0 9px rgba(204,180,115,.75);
}


/* =========================================================
   MEDIA POINTS
========================================================= */

.ds-top-media-points {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-left: auto;

    margin-right: 10px;

    color: rgba(255,255,255,.34);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.6px;

    white-space: nowrap;
}


.ds-top-media-points i {
    width: 3px;
    height: 3px;

    display: block;

    background: #ccb473;

    border-radius: 50%;

    opacity: .65;
}


/* =========================================================
   CONTACT AREA
========================================================= */

.ds-top-contact {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}


/* =========================================================
   PHONE — HERO ELEMENT
========================================================= */

.ds-top-phone {
    position: relative;

    height: 32px;

    min-width: 185px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff !important;

    background:
        linear-gradient(
            105deg,
            #ccb473 0%,
            #ccb473 27%,
            #1a2a3b 27.5%,
            #1a2a3b 100%
        );

    border:
        1px solid rgba(204,180,115,.70);

    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%,
            7px 50%
        );

    text-decoration: none !important;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.ds-top-phone:hover {
    color: #fff !important;

    border-color: #ccb473;

    box-shadow:
        0 0 18px rgba(204,180,115,.18);

    transform: translateY(-1px);
}


/* GOLD PHONE AREA */

.ds-top-phone-icon {
    width: 42px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #172536;

    font-size: 11px;

    flex-shrink: 0;
}


/* PHONE CONTENT */

.ds-top-phone-content {
    display: flex;
    flex-direction: column;

    justify-content: center;

    line-height: 1;
}


.ds-top-phone-content small {
    margin-bottom: 3px;

    color: rgba(255,255,255,.48);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


.ds-top-phone-content strong {
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .45px;

    white-space: nowrap;
}


/* PHONE ARROW */

.ds-top-phone-arrow {
    margin-left: auto;

    padding: 0 9px;

    color: #ccb473;

    font-size: 13px;

    transition: transform .25s ease;
}


.ds-top-phone:hover .ds-top-phone-arrow {
    transform: translate(2px,-2px);
}


/* SHINE */

.ds-phone-shine {
    position: absolute;

    top: 0;
    left: -70px;

    width: 35px;
    height: 100%;

    background:
        rgba(255,255,255,.13);

    transform: skewX(-25deg);

    animation:
        dsPhoneShine 5s ease-in-out infinite;
}


@keyframes dsPhoneShine {

    0%,
    55% {
        left: -70px;
    }

    75%,
    100% {
        left: 220px;
    }

}


/* =========================================================
   DIVIDER
========================================================= */

.ds-top-divider {
    width: 1px;
    height: 17px;

    display: block;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.20),
            transparent
        );
}


/* =========================================================
   EMAIL
========================================================= */

.ds-top-email {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.62) !important;

    font-size: 9px;

    white-space: nowrap;

    text-decoration: none !important;

    transition:
        color .25s ease;
}


.ds-top-email-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ccb473;

    border: 1px solid rgba(204,180,115,.25);

    font-size: 9px;
}


.ds-top-email:hover {
    color: #fff !important;
}


/* =========================================================
   LET'S TALK
========================================================= */

.ds-top-talk {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #ccb473 !important;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;

    white-space: nowrap;

    text-decoration: none !important;

    transition: color .25s ease;
}


.ds-top-talk b {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #172536;

    background: #ccb473;

    border-radius: 50%;

    font-size: 11px;

    transition:
        transform .25s ease,
        background .25s ease;
}


.ds-top-talk:hover {
    color: #fff !important;
}


.ds-top-talk:hover b {
    transform: translateX(3px);

    background: #fff;
}





/* =========================================================
   GLASS NAVBAR
========================================================= */

.ds-glass-nav {
    position: relative;

    height: 88px;

    background:
        linear-gradient(
            180deg,
            rgba(43,63,88,.92),
            rgba(35,52,73,.88)
        );

    border-bottom:
        1px solid rgba(255,255,255,.10);

    box-shadow:
        0 12px 35px rgba(9,18,29,.16);

    backdrop-filter:
        blur(20px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(140%);

    transition:
        height .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

#diaksham-header.ds-scrolled .ds-glass-nav {
    height: 70px;

    background:
        rgba(23,37,54,.96);

    box-shadow:
        0 15px 45px rgba(7,16,27,.25);
}

.ds-nav-inner {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.ds-brand {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    line-height: 0;

    text-decoration: none !important;
}

.ds-brand img {
    display: block;

    width: 230px;
    height: auto;

    transition:
        width .35s ease,
        transform .25s ease;
}

.ds-brand:hover img {
    transform: translateY(-1px);
}

#diaksham-header.ds-scrolled
.ds-brand img {
    width: 205px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.ds-main-nav {
    height: 100%;

    margin-left: auto;

    display: flex;
    align-items: center;
}

.ds-nav-item {
    position: relative;

    height: 100%;

    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: rgba(255,255,255,.84) !important;

    text-decoration: none !important;

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease;
}

.ds-nav-item::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: -1px;

    height: 2px;

    background: var(--ds-gold);

    transform: scaleX(0);

    transition:
        transform .3s ease;
}

.ds-nav-item:hover,
.ds-nav-item.active {
    color: var(--ds-gold) !important;
}

.ds-nav-item:hover::after,
.ds-nav-item.active::after {
    transform: scaleX(1);
}

.ds-services {
    position: relative;

    height: 100%;
}

.ds-services-btn {
    outline: none;
}

.ds-chevron {
    margin-left: 6px;

    color: var(--ds-gold);

    font-size: 13px;

    line-height: 1;

    transition:
        transform .25s ease;
}

.ds-services:hover
.ds-chevron {
    transform: rotate(180deg);
}


/* =========================================================
   PREMIUM SERVICES MEGA MENU
   DIAKSHAM MEDIA
========================================================= */

#diaksham-header .ds-services {
    position: static;
    height: 100%;
}


/* ---------------------------------------------------------
   MAIN MEGA MENU
--------------------------------------------------------- */

#diaksham-header .ds-services-mega {
    position: absolute;

    top: calc(100% + 1px);
    left: 15%;

    width: min(1300px, calc(100vw - 60px));

    padding: 0;

    display: block;

    background:
        linear-gradient(
            135deg,
            #1b2b3d 0%,
            #142435 52%,
            #101e2d 100%
        );

    border:
        1px solid rgba(204,180,115,.25);

    box-shadow:
        0 35px 90px rgba(5,15,26,.45),
        0 10px 30px rgba(5,15,26,.20);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, 18px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .35s cubic-bezier(.22,.61,.36,1);

    overflow: hidden;

    z-index: 9999;
}


/* OPEN */

#diaksham-header .ds-services:hover
.ds-services-mega,

#diaksham-header .ds-services:focus-within
.ds-services-mega,

#diaksham-header .ds-services.is-open
.ds-services-mega {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);
}


/* ---------------------------------------------------------
   INNER
--------------------------------------------------------- */

#diaksham-header .ds-mega-inner {

    min-height: 510px;

    display: grid;

    grid-template-columns:
        365px
        minmax(0, 1fr);
}


/* ---------------------------------------------------------
   LEFT SIDE
--------------------------------------------------------- */

#diaksham-header .ds-mega-left {

    position: relative;

    padding: 38px 30px 30px;

    background:
        linear-gradient(
            160deg,
            #253b53 0%,
            #1a2d42 48%,
            #172638 100%
        );

    border-right:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;
}


/* Decorative circle */

#diaksham-header .ds-mega-left::before {

    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    right: -150px;
    top: -120px;

    border:
        1px solid rgba(204,180,115,.15);

    border-radius: 50%;

    pointer-events: none;
}


#diaksham-header .ds-mega-left::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -115px;
    bottom: -105px;

    border:
        1px solid rgba(204,180,115,.10);

    border-radius: 50%;

    pointer-events: none;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

#diaksham-header .ds-mega-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 27px;
}


#diaksham-header .ds-mega-kicker {

    display: block;

    color:
        var(--ds-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .25em;

    text-transform: uppercase;
}


#diaksham-header .ds-mega-heading h3 {

    margin:
        15px 0 12px;

    color:
        #ffffff;

    font-size: 32px;

    line-height: 1.04;

    font-weight: 300;

    letter-spacing: -.04em;
}


#diaksham-header .ds-mega-heading h3 span {

    display: block;

    color:
        var(--ds-gold);

    font-weight: 700;
}


#diaksham-header .ds-mega-heading p {

    max-width: 250px;

    margin: 0;

    color:
        rgba(255,255,255,.50);

    font-size: 12px;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   SERVICE LIST
--------------------------------------------------------- */

#diaksham-header .ds-mega-service-list {

    position: relative;

    z-index: 3;

    max-height: 335px;

    overflow-y: auto;

    padding-right: 8px;
}


/* Custom scrollbar */

#diaksham-header .ds-mega-service-list::-webkit-scrollbar {

    width: 4px;
}


#diaksham-header .ds-mega-service-list::-webkit-scrollbar-track {

    background:
        rgba(255,255,255,.04);
}


#diaksham-header .ds-mega-service-list::-webkit-scrollbar-thumb {

    background:
        rgba(204,180,115,.65);

    border-radius: 10px;
}


/* ---------------------------------------------------------
   SERVICE ITEM
--------------------------------------------------------- */

#diaksham-header .ds-mega-service-item {

    position: relative;

    min-height: 48px;

    display: grid;

    grid-template-columns:
        30px
        minmax(0,1fr)
        22px;

    align-items: center;

    gap: 9px;

    padding:
        0 12px 0 0;

    color:
        rgba(255,255,255,.68) !important;

    text-decoration: none !important;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    transition:
        color .25s ease,
        padding .25s ease,
        background .25s ease;
}


#diaksham-header .ds-mega-service-item:last-child {

    border-bottom: 0;
}


/* Number */

#diaksham-header .ds-mega-service-number {

    color:
        rgba(204,180,115,.45);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .05em;

    transition:
        color .25s ease;
}


/* Name */

#diaksham-header .ds-mega-service-name {

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    letter-spacing: .01em;

    transition:
        color .25s ease;
}


/* Arrow */

#diaksham-header .ds-mega-service-arrow {

    color:
        var(--ds-gold);

    font-size: 15px;

    opacity: 0;

    transform:
        translateX(-7px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


/* Hover / active */

#diaksham-header .ds-mega-service-item:hover,

#diaksham-header .ds-mega-service-item.active {

    padding-left: 10px;

    color:
        #ffffff !important;

    background:
        linear-gradient(
            90deg,
            rgba(204,180,115,.10),
            transparent
        );
}


#diaksham-header .ds-mega-service-item:hover
.ds-mega-service-number,

#diaksham-header .ds-mega-service-item.active
.ds-mega-service-number {

    color:
        var(--ds-gold);
}


#diaksham-header .ds-mega-service-item:hover
.ds-mega-service-name,

#diaksham-header .ds-mega-service-item.active
.ds-mega-service-name {

    color:
        #ffffff;
}


#diaksham-header .ds-mega-service-item:hover
.ds-mega-service-arrow,

#diaksham-header .ds-mega-service-item.active
.ds-mega-service-arrow {

    opacity: 1;

    transform:
        translateX(0);
}


/* ---------------------------------------------------------
   RIGHT SIDE
--------------------------------------------------------- */

#diaksham-header .ds-mega-right {

    position: relative;

    min-width: 0;

    padding: 22px;
}


/* ---------------------------------------------------------
   PREVIEW
--------------------------------------------------------- */

#diaksham-header .ds-mega-preview {

    height: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(260px, .85fr);

    gap: 28px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   PREVIEW IMAGE
--------------------------------------------------------- */

#diaksham-header .ds-mega-preview-image {

    position: relative;

    min-height: 465px;

    overflow: hidden;

    background:
        #0d1b29;

    border:
        1px solid rgba(255,255,255,.08);
}


#diaksham-header .ds-mega-preview-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: .82;

    transform:
        scale(1.01);

    transition:
        opacity .45s ease,
        transform .8s cubic-bezier(.22,.61,.36,1);
}


#diaksham-header .ds-mega-preview-image:hover img {

    opacity: .92;

    transform:
        scale(1.045);
}


/* Image overlay */

#diaksham-header .ds-mega-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,22,35,.08) 0%,
            rgba(10,22,35,.12) 35%,
            rgba(10,22,35,.82) 100%
        );

    pointer-events: none;
}


/* Image tag */

#diaksham-header .ds-mega-preview-tag {

    position: absolute;

    left: 20px;
    bottom: 18px;

    color:
        rgba(255,255,255,.65);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .22em;

    z-index: 2;
}


/* ---------------------------------------------------------
   PREVIEW CONTENT
--------------------------------------------------------- */

#diaksham-header .ds-mega-preview-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        20px 12px 20px 0;
}


#diaksham-header .ds-mega-preview-label {

    color:
        var(--ds-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .20em;
}


#diaksham-header .ds-mega-preview-content h4 {

    margin:
        17px 0 15px;

    color:
        #ffffff;

    font-size: 30px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -.035em;

    transition:
        opacity .2s ease;
}


#diaksham-header .ds-mega-preview-content p {

    max-width: 300px;

    margin: 0;

    color:
        rgba(255,255,255,.48);

    font-size: 12px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   EXPLORE LINK
--------------------------------------------------------- */

#diaksham-header .ds-mega-preview-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 28px;

    padding-bottom: 8px;

    color:
        #ffffff !important;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .16em;

    text-decoration: none !important;

    border-bottom:
        1px solid rgba(204,180,115,.55);

    transition:
        color .25s ease,
        gap .25s ease,
        border-color .25s ease;
}


#diaksham-header .ds-mega-preview-link span {

    color:
        var(--ds-gold);

    font-size: 15px;

    line-height: 1;
}


#diaksham-header .ds-mega-preview-link:hover {

    color:
        var(--ds-gold) !important;

    gap: 17px;

    border-color:
        var(--ds-gold);
}


/* ---------------------------------------------------------
   SERVICES CHEVRON
--------------------------------------------------------- */

#diaksham-header .ds-services:hover
.ds-chevron,

#diaksham-header .ds-services.is-open
.ds-chevron {

    transform:
        rotate(180deg);
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1100px) {

    #diaksham-header .ds-services-mega {

        width:
            calc(100vw - 30px);
    }

    #diaksham-header .ds-mega-inner {

        grid-template-columns:
            320px
            minmax(0,1fr);
    }

    #diaksham-header .ds-mega-preview {

        grid-template-columns:
            minmax(0,1fr)
            220px;
    }

    #diaksham-header .ds-mega-preview-content {

        padding-right: 5px;
    }

    #diaksham-header .ds-mega-preview-content h4 {

        font-size: 25px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   Main desktop nav is already hidden at 980px,
   so this menu must stay completely disabled.
--------------------------------------------------------- */

@media (max-width: 980px) {

    #diaksham-header .ds-services-mega {

        display: none !important;
    }

}


/* =========================================================
   ACTIONS
========================================================= */

.ds-header-actions {
    display: flex;

    align-items: center;

    gap: 9px;

    flex: 0 0 auto;
}


/* =========================================================
   PREMIUM SEARCH — GLASS EXPANDING PILL
========================================================= */

#diaksham-header .ds-search {
    position: relative;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px;

    background: rgba(255,255,255,.055);

    overflow: hidden;

    transition:
        width .38s cubic-bezier(.22,.61,.36,1),
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

#diaksham-header .ds-search:hover {
    border-color: rgba(204,180,115,.45);
    background: rgba(255,255,255,.075);
}


/* OPEN */

#diaksham-header .ds-search.open {
    width: 250px;

    background: rgba(18,31,46,.82);

    border-color:
        rgba(204,180,115,.65);

    box-shadow:
        0 12px 35px rgba(5,15,25,.18);
}


/* SEARCH BUTTON */

#diaksham-header .ds-search-toggle {
    position: relative;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    cursor: pointer;

    z-index: 2;
}


/* ICON */

#diaksham-header .ds-search-toggle svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        rgba(255,255,255,.82);

    stroke-width: 1.45;

    transition:
        transform .3s ease,
        stroke .25s ease;
}

#diaksham-header .ds-search-toggle:hover svg {
    stroke: var(--ds-gold);

    transform: scale(1.08);
}


/* INPUT */

#diaksham-header .ds-search input {
    width: 0;

    min-width: 0;

    height: 100%;

    margin: 0;

    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: inherit;

    font-size: 11px;

    letter-spacing: .03em;

    opacity: 0;

    transition:
        width .35s cubic-bezier(.22,.61,.36,1),
        opacity .2s ease .08s;
}

#diaksham-header .ds-search.open input {
    width: 180px;

    padding:
        0 14px 0 2px;

    opacity: 1;
}

#diaksham-header .ds-search input::placeholder {
    color:
        rgba(255,255,255,.42);
}


/* SMALL GOLD LINE */

#diaksham-header .ds-search::after {
    content: "";

    position: absolute;

    left: 45px;
    bottom: 7px;

    width: 0;
    height: 1px;

    background: var(--ds-gold);

    transition:
        width .35s ease;
}

#diaksham-header .ds-search.open::after {
    width: calc(100% - 63px);
}


/* =========================================================
   HEADER CTA
========================================================= */

.ds-header-cta {
    height: 43px;

    min-width: 137px;

    padding:
        0 7px 0 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border:
        1px solid var(--ds-gold);

    background:
        var(--ds-gold);

    color:
        var(--ds-navy);

    font-family: inherit;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .16em;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.ds-header-cta:hover {
    background:
        transparent;

    color:
        var(--ds-gold);

    transform:
        translateY(-1px);
}

.ds-header-cta b {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(43,63,88,.28);

    border-radius: 50%;

    font-size: 13px;

    transition:
        transform .25s ease;
}

.ds-header-cta:hover b {
    transform:
        rotate(45deg);

    border-color:
        var(--ds-gold);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.ds-mobile-toggle {
    display: none;

    width: 43px;
    height: 43px;

    padding: 0;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    cursor: pointer;
}

.ds-mobile-toggle span {
    display: block;

    width: 17px;
    height: 1px;

    margin: 4px auto;

    background: #fff;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ds-mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 100000;

    width: 100%;
    height: 100vh;

    background:
        linear-gradient(
            145deg,
            #263b54,
            #142435
        );

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(-15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;

    overflow-y: auto;
}

.ds-mobile-menu.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0);
}

.ds-mobile-inner {
    min-height: 100%;

    padding:
        18px 22px 30px;
}

.ds-mobile-top {
    height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.ds-mobile-brand img {
    display: block;

    width: 170px;

    height: auto;
}

.ds-mobile-close {
    position: relative;

    width: 42px;
    height: 42px;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.ds-mobile-close span {
    position: absolute;

    left: 11px;
    right: 11px;

    top: 20px;

    height: 1px;

    background: #fff;
}

.ds-mobile-close span:first-child {
    transform: rotate(45deg);
}

.ds-mobile-close span:last-child {
    transform: rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.ds-mobile-nav {
    margin-top: 20px;
}

.ds-mobile-nav > a,
.ds-mobile-services > button {
    width: 100%;

    min-height: 64px;

    padding: 0;

    display: grid;

    grid-template-columns:
        35px
        minmax(0,1fr)
        25px;

    align-items: center;

    border: 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);

    background: transparent;

    color: #fff;

    text-decoration: none;

    text-align: left;

    cursor: pointer;
}

.ds-mobile-nav small,
.ds-mobile-services small {
    color: var(--ds-gold);

    font-size: 8px;

    font-weight: 700;
}

.ds-mobile-nav span,
.ds-mobile-services span {
    color: #fff;

    font-size: 19px;

    font-weight: 300;
}

.ds-mobile-nav b,
.ds-mobile-services b {
    color: var(--ds-gold);

    text-align: right;

    font-weight: 400;
}


/* =========================================================
   MOBILE SERVICES
========================================================= */

.ds-mobile-services-list {
    display: none;

    padding:
        3px 0 8px;
}

.ds-mobile-services.open
.ds-mobile-services-list {
    display: block;
}

.ds-mobile-services-list a {
    min-height: 47px;

    padding-left: 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    color:
        rgba(255,255,255,.62);

    text-decoration: none;

    font-size: 11px;
}

.ds-mobile-services-list a b {
    padding-right: 3px;

    color: var(--ds-gold);
}


/* =========================================================
   MOBILE BOTTOM
========================================================= */

.ds-mobile-bottom {
    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.12);

    display: flex;

    flex-direction: column;
}

.ds-mobile-bottom > span {
    color: var(--ds-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .2em;
}

.ds-mobile-cta {
    width: 100%;

    min-height: 53px;

    margin: 15px 0 20px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border:
        1px solid var(--ds-gold);

    background:
        var(--ds-gold);

    color:
        var(--ds-navy);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    cursor: pointer;
}

.ds-mobile-cta b {
    font-size: 15px;
}

.ds-mobile-bottom > a {
    margin-top: 5px;

    color:
        rgba(255,255,255,.65);

    text-decoration: none;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .ds-header-container {
        width:
            calc(100% - 40px);
    }

    .ds-nav-inner {
        gap: 15px;
    }

    .ds-brand img {
        width: 195px;
    }

    .ds-nav-item {
        padding: 0 8px;

        font-size: 9px;
    }

    .ds-nav-item::after {
        left: 8px;
        right: 8px;
    }

    .ds-header-cta {
        min-width: 120px;
    }
}


@media (max-width: 980px) {

    .ds-main-nav {
        display: none;
    }

    .ds-search,
    .ds-header-cta {
        display: none;
    }

    .ds-mobile-toggle {
        display: block;
    }

    .ds-glass-nav {
        height: 76px;
    }

    #diaksham-header.ds-scrolled
    .ds-glass-nav {
        height: 68px;
    }

    .ds-brand img,
    #diaksham-header.ds-scrolled
    .ds-brand img {
        width: 190px;
    }
}


@media (max-width: 600px) {

    .ds-header-container {
        width:
            calc(100% - 24px);
    }

    .ds-top-strip {
        height: 31px;
    }

    .ds-top-left {
        width: 100%;

        justify-content: center;

        font-size: 7px;

        letter-spacing: .1em;
    }

    .ds-top-right {
        display: none;
    }

    .ds-brand img,
    #diaksham-header.ds-scrolled
    .ds-brand img {
        width: 170px;
    }

    .ds-mobile-inner {
        padding:
            15px 18px 25px;
    }

    .ds-mobile-brand img {
        width: 160px;
    }
}


@media (max-width: 380px) {

    .ds-brand img,
    #diaksham-header.ds-scrolled
    .ds-brand img {
        width: 150px;
    }
}


/* =========================================================
   FINAL OVERRIDES — PROTECT NEW HEADER FROM OLD STYLE.CSS
========================================================= */

#diaksham-header.ds-header,
#diaksham-header.ds-header * {
    box-sizing: border-box;
}

#diaksham-header.ds-header {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

/* Kill old global nav rules */
#diaksham-header.ds-header nav {
    margin-top: 0 !important;
    position: static;
}

#diaksham-header.ds-header .ds-main-nav {
    width: auto !important;
    flex: 0 0 auto !important;
    margin-top: 0 !important;
    position: relative !important;
}

/* Never allow the header to create horizontal overflow */
#diaksham-header.ds-header .ds-header-container {
    width: min(1300px, calc(100% - 70px)) !important;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* Keep navigation and actions inside available width */
#diaksham-header.ds-header .ds-nav-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Prevent logo/actions from forcing the page wider */
#diaksham-header.ds-header .ds-brand {
    min-width: 0;
}

#diaksham-header.ds-header .ds-header-actions {
    min-width: 0;
}

/* Old #top_tools etc. must not affect new header */
#diaksham-header.ds-header ul,
#diaksham-header.ds-header li {
    margin: 0;
    padding: 0;
}


/* =========================================================
   DESKTOP — TIGHTER NAV
========================================================= */

@media (max-width: 1280px) {

    #diaksham-header.ds-header .ds-header-container {
        width: calc(100% - 40px) !important;
    }

    #diaksham-header.ds-header .ds-nav-inner {
        gap: 15px;
    }

    #diaksham-header.ds-header .ds-brand img {
        width: 190px;
    }

    #diaksham-header.ds-header .ds-nav-item {
        padding-left: 9px;
        padding-right: 9px;
    }

    #diaksham-header.ds-header .ds-header-cta {
        min-width: 120px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 980px) {

    #diaksham-header.ds-header .ds-header-container {
        width: calc(100% - 30px) !important;
    }

    #diaksham-header.ds-header .ds-main-nav {
        display: none !important;
    }

    #diaksham-header.ds-header .ds-search,
    #diaksham-header.ds-header .ds-header-cta {
        display: none;
    }

    #diaksham-header.ds-header .ds-mobile-toggle {
        display: block;
    }
}


/* =========================================================
   MOBILE — ABSOLUTELY NO HORIZONTAL OVERFLOW
========================================================= */

@media (max-width: 600px) {

    #diaksham-header.ds-header .ds-header-container {
        width: calc(100% - 24px) !important;
    }

    #diaksham-header.ds-header .ds-nav-inner {
        gap: 8px;
    }

    #diaksham-header.ds-header .ds-brand img {
        width: 165px;
        max-width: 100%;
    }
}


/* =========================================================
   GLOBAL SAFETY
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   DIAKSHAM — PREMIUM SEARCH
   CLEAN / FINAL VERSION
========================================================= */

#diaksham-header .ds-search {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    z-index: 10050;
}


/* =========================================================
   SEARCH TOGGLE
========================================================= */

#diaksham-header .ds-search-toggle {
    position: relative;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;

    background: rgba(255,255,255,.045);

    cursor: pointer;

    outline: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


#diaksham-header .ds-search-toggle:hover {
    background: rgba(204,180,115,.10);

    border-color:
        rgba(204,180,115,.65);

    transform:
        translateY(-1px);

    box-shadow:
        0 8px 25px rgba(0,0,0,.16);
}


#diaksham-header .ds-search-toggle:focus {
    outline: none;
}


/* SEARCH ICON */

#diaksham-header .ds-search-toggle svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        rgba(255,255,255,.88);

    stroke-width: 1.55;

    stroke-linecap: round;

    transition:
        transform .3s ease,
        stroke .25s ease;
}


#diaksham-header .ds-search-toggle:hover svg {
    stroke: #CCB473;

    transform:
        scale(1.08);
}


/* =========================================================
   SEARCH PANEL
========================================================= */

#diaksham-header .ds-search-panel {

    position: absolute;

    top: calc(100% + 16px);
    right: 0;

    width: 410px;

    padding: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(25,42,60,.97),
            rgba(10,23,37,.98)
        );

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 20px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.34),
        0 8px 25px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.06);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-10px)
        scale(.97);

    transform-origin:
        top right;

    pointer-events: none;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .28s cubic-bezier(.22,.61,.36,1);
}


/* OPEN */

#diaksham-header .ds-search.open .ds-search-panel {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;
}


/* =========================================================
   PANEL HEADER
========================================================= */

#diaksham-header .ds-search-panel-head {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}


#diaksham-header .ds-search-kicker {

    display: block;

    margin-bottom: 7px;

    color: #CCB473;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .22em;

    text-transform: uppercase;
}


#diaksham-header .ds-search-panel-head h3 {

    margin: 0 0 5px;

    padding: 0;

    color: #fff;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.2;

    letter-spacing: -.02em;
}


#diaksham-header .ds-search-panel-head p {

    margin: 0;

    color:
        rgba(255,255,255,.42);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#diaksham-header .ds-search-close {

    position: relative;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    padding: 0;
    margin: 0;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    background:
        rgba(255,255,255,.04);

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


#diaksham-header .ds-search-close:hover {

    background:
        rgba(204,180,115,.10);

    border-color:
        rgba(204,180,115,.45);

    transform:
        rotate(90deg);
}


#diaksham-header .ds-search-close span {

    position: absolute;

    width: 12px;
    height: 1px;

    top: 50%;
    left: 50%;

    background:
        rgba(255,255,255,.75);

    transform-origin:
        center;
}


#diaksham-header .ds-search-close span:first-child {

    transform:
        translate(-50%,-50%)
        rotate(45deg);
}


#diaksham-header .ds-search-close span:last-child {

    transform:
        translate(-50%,-50%)
        rotate(-45deg);
}


/* =========================================================
   SEARCH FIELD
========================================================= */

#diaksham-header .ds-search-field {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    height: 58px;

    padding: 0 48px 0 48px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 13px;

    background:
        rgba(255,255,255,.055);

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


#diaksham-header .ds-search-field:focus-within {

    border-color:
        rgba(204,180,115,.65);

    background:
        rgba(255,255,255,.075);

    box-shadow:
        0 0 0 3px rgba(204,180,115,.07);
}


/* SEARCH FIELD ICON */

#diaksham-header .ds-search-field > svg {

    position: absolute;

    left: 18px;

    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        rgba(204,180,115,.85);

    stroke-width: 1.55;

    stroke-linecap: round;

    pointer-events: none;
}


/* INPUT */

#diaksham-header .ds-search-field input {

    width: 100%;

    height: 100%;

    padding: 0;

    margin: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: .01em;
}


#diaksham-header .ds-search-field input::placeholder {

    color:
        rgba(255,255,255,.34);

    opacity: 1;
}


/* CLEAR */

#diaksham-header .ds-search-clear {

    position: absolute;

    right: 15px;

    width: 28px;
    height: 28px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .2s ease,
        visibility .2s ease,
        background .2s ease;
}


#diaksham-header .ds-search-field.has-value
.ds-search-clear {

    opacity: 1;

    visibility: visible;
}


#diaksham-header .ds-search-clear:hover {

    background:
        rgba(255,255,255,.08);
}


#diaksham-header .ds-search-clear span {

    position: absolute;

    width: 10px;
    height: 1px;

    top: 50%;
    left: 50%;

    background:
        rgba(255,255,255,.60);
}


#diaksham-header .ds-search-clear span:first-child {

    transform:
        translate(-50%,-50%)
        rotate(45deg);
}


#diaksham-header .ds-search-clear span:last-child {

    transform:
        translate(-50%,-50%)
        rotate(-45deg);
}


/* =========================================================
   SEARCH FOOTER
========================================================= */

#diaksham-header .ds-search-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 13px;

    padding: 0 3px;
}


#diaksham-header .ds-search-footer > span {

    color:
        rgba(255,255,255,.28);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .16em;
}


#diaksham-header .ds-search-footer kbd {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 30px;
    height: 22px;

    padding: 0 7px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 5px;

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.35);

    font-family: inherit;

    font-size: 8px;

    letter-spacing: .08em;
}


/* =========================================================
   SEARCH LOADING
========================================================= */

#diaksham-header .ds-search-loading {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 48px;

    margin-top: 10px;

    color:
        rgba(255,255,255,.40);

    font-size: 10px;
}


#diaksham-header .ds-search-spinner {

    width: 14px;
    height: 14px;

    border:
        2px solid rgba(255,255,255,.12);

    border-top-color:
        #CCB473;

    border-radius: 50%;

    animation:
        dsSearchSpin .7s linear infinite;
}


@keyframes dsSearchSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CUSTOM SEARCH RESULTS
========================================================= */

#diaksham-header .ds-search-results {

    margin-top: 10px;

    max-height: 260px;

    overflow-y: auto;

    scrollbar-width: thin;
}


#diaksham-header .ds-search-result {

    display: flex;

    align-items: center;

    gap: 12px;

    width: 100%;

    min-height: 48px;

    padding: 8px 10px;

    margin: 0 0 4px;

    border: 0;

    border-radius: 10px;

    background: transparent;

    color: rgba(255,255,255,.80);

    text-align: left;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


#diaksham-header .ds-search-result:hover {

    background:
        rgba(204,180,115,.09);

    color:
        #CCB473;

    transform:
        translateX(3px);

    text-decoration: none;
}


#diaksham-header .ds-search-result-icon {

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(204,180,115,.25);

    border-radius: 50%;

    color:
        #CCB473;

    font-size: 11px;
}


#diaksham-header .ds-search-result-text {

    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 12px;
}


/* EMPTY */

#diaksham-header .ds-search-empty {

    padding: 18px 5px 8px;

    color:
        rgba(255,255,255,.34);

    font-size: 11px;

    text-align: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

    #diaksham-header .ds-search {
        display: none;
    }

}


@media (max-width: 600px) {

    #diaksham-header .ds-search-panel {

        position: fixed;

        top: 82px;

        left: 12px;
        right: 12px;

        width: auto;

        padding: 18px;

        border-radius: 17px;

        transform-origin:
            top center;
    }

    #diaksham-header .ds-search-panel-head h3 {

        font-size: 19px;
    }

}


/* SEARCH RESULT ICON */

#ds-search-panel .suggestIcon {
    width: 28px;
    height: 28px;

    margin-right: 10px;

    border-radius: 50%;

    border: 1px solid rgba(204,180,115,.3);

    position: relative;

    flex: 0 0 28px;
}

#ds-search-panel .suggestIcon::after {
    content: "↗";

    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #CCB473;

    font-size: 11px;
}

#ds-search-panel .suggestText {
    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   SMALL LOADING STATE
========================================================= */

#ds-search-panel .loader-item {
    padding: 12px !important;
}

#ds-search-panel .logo-loader {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 8px;

    background: rgba(255,255,255,.035);

    color: rgba(255,255,255,.55);

    font-size: 11px;

    letter-spacing: .04em;
}

#ds-search-panel .logo-loader img {
    width: 18px !important;
    height: 18px !important;

    object-fit: contain;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

    #diaksham-header .ds-search {
        display: none;
    }

}

@media (max-width: 600px) {

    #diaksham-header .ds-search-panel {
        position: fixed;

        top: 82px;

        left: 12px;
        right: 12px;

        width: auto;

        border-radius: 15px;
    }

    #ds-search-panel .ui-autocomplete {
        left: 18px !important;
        right: 18px !important;
    }

}


#diaksham-header .ds-search-spinner {
    width: 15px;
    height: 15px;

    border-radius: 50%;

    border:
        2px solid rgba(255,255,255,.15);

    border-top-color:
        #CCB473;

    animation:
        dsSearchSpin .7s linear infinite;
}

@keyframes dsSearchSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   SEARCH LOADER
========================================================= */

#diaksham-header .ds-search-loading {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: rgba(255,255,255,.55);

    font-size: 11px;

    letter-spacing: .04em;
}

#diaksham-header .ds-search-spinner {
    width: 15px;
    height: 15px;

    display: inline-block;

    border: 2px solid rgba(255,255,255,.14);

    border-top-color: #CCB473;

    border-radius: 50%;

    animation:
        dsSearchSpin .7s linear infinite;
}

@keyframes dsSearchSpin {

    to {
        transform: rotate(360deg);
    }

}


#ds-search-panel .suggestIcon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    margin-right: 10px;

    border: 1px solid rgba(204,180,115,.35);

    border-radius: 50%;

    position: relative;
}


#ds-search-panel .suggestIcon::after {
    content: "↗";

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #CCB473;

    font-size: 11px;
}


#ds-search-panel .suggestText {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   DIAKSHAM SEARCH — FINAL FIX
   Put this at the VERY END of style.css
========================================================= */

/* Search wrapper */
#diaksham-header #ds-search {
    position: relative !important;

    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;
    max-width: 46px !important;

    flex: 0 0 46px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 999999 !important;

    overflow: visible !important;
}


/* =========================================================
   SEARCH BUTTON
========================================================= */

#diaksham-header #ds-search-toggle {
    position: relative !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;
    max-width: 46px !important;

    padding: 0 !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    border: 1px solid rgba(255,255,255,.20) !important;

    border-radius: 50% !important;

    background:
        rgba(12,28,44,.72) !important;

    color: #fff !important;

    cursor: pointer !important;

    outline: none !important;

    overflow: visible !important;

    z-index: 1000000 !important;

    transform: none !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease !important;
}


/* Hover */

#diaksham-header #ds-search-toggle:hover {

    background:
        rgba(204,180,115,.12) !important;

    border-color:
        rgba(204,180,115,.75) !important;

    box-shadow:
        0 8px 25px rgba(0,0,0,.20) !important;
}


/* =========================================================
   FORCE SEARCH SVG TO SHOW
========================================================= */

#diaksham-header #ds-search-toggle svg {

    position: relative !important;

    display: block !important;

    width: 17px !important;
    height: 17px !important;

    min-width: 17px !important;
    min-height: 17px !important;

    max-width: 17px !important;
    max-height: 17px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    fill: none !important;

    stroke:
        rgba(255,255,255,.92) !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round !important;

    stroke-linejoin: round !important;

    opacity: 1 !important;

    visibility: visible !important;

    transform: none !important;

    pointer-events: none !important;

    z-index: 2 !important;
}


/* =========================================================
   SEARCH PANEL
========================================================= */

#diaksham-header #ds-search-panel {

    position: fixed !important;

    top: 118px !important;

    right: 60px !important;

    left: auto !important;

    width: 410px !important;

    max-width:
        calc(100vw - 30px) !important;

    height: auto !important;

    min-height: 0 !important;

    box-sizing: border-box !important;

    margin: 0 !important;

    padding: 22px !important;

    background:
        linear-gradient(
            145deg,
            rgba(27,45,64,.98),
            rgba(9,22,36,.99)
        ) !important;

    border:
        1px solid rgba(255,255,255,.14) !important;

    border-radius: 20px !important;

    box-shadow:
        0 30px 80px rgba(0,0,0,.42),
        0 10px 30px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.06) !important;

    backdrop-filter:
        blur(25px) !important;

    -webkit-backdrop-filter:
        blur(25px) !important;

    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;

    transform:
        translateY(-12px) scale(.97) !important;

    transform-origin:
        top right !important;

    z-index: 9999999 !important;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .25s ease !important;
}


/* =========================================================
   OPEN STATE
========================================================= */

#diaksham-header #ds-search.open
#ds-search-panel {

    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;

    transform:
        translateY(0) scale(1) !important;
}


/* =========================================================
   SEARCH PANEL HEADER
========================================================= */

#diaksham-header #ds-search-panel
.ds-search-panel-head {

    display: flex !important;

    align-items: flex-start !important;

    justify-content: space-between !important;

    gap: 20px !important;

    width: 100% !important;

    margin: 0 0 18px !important;

    padding: 0 !important;
}


#diaksham-header #ds-search-panel
.ds-search-kicker {

    display: block !important;

    margin: 0 0 7px !important;

    color:
        #CCB473 !important;

    font-size: 9px !important;

    font-weight: 800 !important;

    letter-spacing: .22em !important;

    line-height: 1.2 !important;
}


#diaksham-header #ds-search-panel
.ds-search-panel-head h3 {

    margin: 0 0 5px !important;

    padding: 0 !important;

    color: #fff !important;

    font-size: 22px !important;

    font-weight: 500 !important;

    line-height: 1.2 !important;
}


#diaksham-header #ds-search-panel
.ds-search-panel-head p {

    margin: 0 !important;

    padding: 0 !important;

    color:
        rgba(255,255,255,.42) !important;

    font-size: 11px !important;

    line-height: 1.5 !important;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#diaksham-header #ds-search-close {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 32px !important;
    height: 32px !important;

    min-width: 32px !important;

    padding: 0 !important;
    margin: 0 !important;

    border:
        1px solid rgba(255,255,255,.12) !important;

    border-radius: 50% !important;

    background:
        rgba(255,255,255,.04) !important;

    cursor: pointer !important;

    z-index: 5 !important;

    transition:
        .2s ease !important;
}


#diaksham-header #ds-search-close:hover {

    background:
        rgba(204,180,115,.12) !important;

    border-color:
        rgba(204,180,115,.5) !important;

    transform:
        rotate(90deg) !important;
}


#diaksham-header #ds-search-close span {

    position: absolute !important;

    display: block !important;

    width: 12px !important;
    height: 1px !important;

    top: 50% !important;
    left: 50% !important;

    margin: 0 !important;

    background:
        rgba(255,255,255,.75) !important;
}


#diaksham-header #ds-search-close
span:first-child {

    transform:
        translate(-50%,-50%)
        rotate(45deg) !important;
}


#diaksham-header #ds-search-close
span:last-child {

    transform:
        translate(-50%,-50%)
        rotate(-45deg) !important;
}


/* =========================================================
   SEARCH INPUT
========================================================= */

#diaksham-header #ds-search-panel
.ds-search-field {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    height: 58px !important;

    min-height: 58px !important;

    box-sizing: border-box !important;

    padding:
        0 48px 0 48px !important;

    margin: 0 !important;

    border:
        1px solid rgba(255,255,255,.13) !important;

    border-radius: 13px !important;

    background:
        rgba(255,255,255,.055) !important;
}


#diaksham-header #ds-search-panel
.ds-search-field:focus-within {

    border-color:
        rgba(204,180,115,.70) !important;

    background:
        rgba(255,255,255,.075) !important;

    box-shadow:
        0 0 0 3px
        rgba(204,180,115,.07) !important;
}


/* Search icon inside input */

#diaksham-header #ds-search-panel
.ds-search-field > svg {

    position: absolute !important;

    left: 18px !important;

    top: 50% !important;

    width: 17px !important;
    height: 17px !important;

    margin: 0 !important;

    fill: none !important;

    stroke:
        #CCB473 !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round !important;

    transform:
        translateY(-50%) !important;

    pointer-events: none !important;
}


/* Input */

#diaksham-header #company_input {

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    min-width: 0 !important;

    padding: 0 !important;

    margin: 0 !important;

    border: 0 !important;

    outline: none !important;

    background: transparent !important;

    box-shadow: none !important;

    color: #fff !important;

    font-family: inherit !important;

    font-size: 13px !important;

    line-height: normal !important;
}


#diaksham-header #company_input::placeholder {

    color:
        rgba(255,255,255,.35) !important;

    opacity: 1 !important;
}


/* =========================================================
   CLEAR BUTTON
========================================================= */

#diaksham-header #ds-search-clear {

    position: absolute !important;

    right: 12px !important;

    top: 50% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 28px !important;
    height: 28px !important;

    padding: 0 !important;

    margin: 0 !important;

    border: 0 !important;

    border-radius: 50% !important;

    background: transparent !important;

    transform:
        translateY(-50%) !important;

    cursor: pointer !important;

    opacity: 0 !important;

    visibility: hidden !important;
}


#diaksham-header #ds-search-panel
.ds-search-field.has-value
#ds-search-clear {

    opacity: 1 !important;

    visibility: visible !important;
}


#diaksham-header #ds-search-clear span {

    position: absolute !important;

    width: 10px !important;
    height: 1px !important;

    top: 50% !important;
    left: 50% !important;

    background:
        rgba(255,255,255,.65) !important;
}


#diaksham-header #ds-search-clear
span:first-child {

    transform:
        translate(-50%,-50%)
        rotate(45deg) !important;
}


#diaksham-header #ds-search-clear
span:last-child {

    transform:
        translate(-50%,-50%)
        rotate(-45deg) !important;
}


/* =========================================================
   SEARCH RESULTS
========================================================= */

#diaksham-header .ds-search-results {

    display: block !important;

    width: 100% !important;

    max-height: 260px !important;

    margin-top: 10px !important;

    padding: 0 !important;

    overflow-y: auto !important;
}


#diaksham-header .ds-search-result {

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    min-height: 48px !important;

    box-sizing: border-box !important;

    padding: 8px 10px !important;

    margin: 0 0 4px !important;

    border: 0 !important;

    border-radius: 10px !important;

    background: transparent !important;

    color:
        rgba(255,255,255,.80) !important;

    text-decoration: none !important;

    transition:
        background .2s ease,
        transform .2s ease,
        color .2s ease !important;
}


#diaksham-header .ds-search-result:hover {

    background:
        rgba(204,180,115,.09) !important;

    color:
        #CCB473 !important;

    transform:
        translateX(3px) !important;

    text-decoration: none !important;
}


#diaksham-header .ds-search-result-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 30px !important;
    height: 30px !important;

    min-width: 30px !important;

    margin-right: 12px !important;

    border:
        1px solid rgba(204,180,115,.25) !important;

    border-radius: 50% !important;

    color:
        #CCB473 !important;

    font-size: 11px !important;
}


#diaksham-header .ds-search-result-text {

    display: block !important;

    min-width: 0 !important;

    overflow: hidden !important;

    text-overflow: ellipsis !important;

    white-space: nowrap !important;

    color: inherit !important;

    font-size: 12px !important;
}


/* =========================================================
   LOADING
========================================================= */

#diaksham-header .ds-search-loading {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 9px !important;

    min-height: 50px !important;

    margin-top: 10px !important;

    color:
        rgba(255,255,255,.45) !important;

    font-size: 10px !important;
}


#diaksham-header .ds-search-spinner {

    display: block !important;

    width: 14px !important;
    height: 14px !important;

    border:
        2px solid rgba(255,255,255,.12) !important;

    border-top-color:
        #CCB473 !important;

    border-radius: 50% !important;

    animation:
        dsSearchSpin .7s linear infinite !important;
}


@keyframes dsSearchSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   EMPTY
========================================================= */

#diaksham-header .ds-search-empty {

    padding: 18px 5px 8px !important;

    color:
        rgba(255,255,255,.38) !important;

    font-size: 11px !important;

    text-align: center !important;
}


/* =========================================================
   DESKTOP — HEADER STACKING
========================================================= */

@media (min-width: 981px) {

    #diaksham-header,
    #diaksham-header .ds-header-main,
    #diaksham-header .ds-header-inner,
    #diaksham-header nav {

        overflow: visible !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

    #diaksham-header #ds-search-panel {

        top: 90px !important;

        right: 15px !important;
        left: 15px !important;

        width: auto !important;

        max-width: none !important;

        border-radius: 17px !important;

    }

}


@media (max-width: 600px) {

    #diaksham-header #ds-search-panel {

        top: 78px !important;

        right: 10px !important;
        left: 10px !important;

        padding: 18px !important;

    }


    #diaksham-header
    .ds-search-panel-head h3 {

        font-size: 19px !important;

    }

}


/* =========================================================
   DIAKSHAM PREMIUM ENQUIRY MODAL
========================================================= */

.ds-enquiry-modal {
    padding-right: 0 !important;
}


/* =========================================================
   BACKDROP
========================================================= */

.ds-enquiry-modal.modal {
    background: rgba(8, 20, 34, 0.78);
    z-index: 9999999;
}

.ds-enquiry-modal .modal-backdrop {
    background: #081522;
}

.ds-enquiry-modal .modal-backdrop.show {
    opacity: .82;
}


/* =========================================================
   DIALOG
========================================================= */

.ds-enquiry-dialog {
    width: calc(100% - 40px);
    max-width: 1080px;

    margin: 60px auto 40px;

    display: flex;
    align-items: center;

    min-height: calc(100vh - 100px);
}


/* =========================================================
   CONTENT
========================================================= */

.ds-enquiry-content {

    position: relative;

    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(204,180,115,.35);

    border-radius: 4px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35),
        0 10px 30px rgba(0,0,0,.18);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.ds-enquiry-close {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 20;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    background: rgba(10,25,42,.18);

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.ds-enquiry-close span {
    display: block;

    font-size: 24px;
    font-weight: 300;

    line-height: 1;

    margin-top: -2px;
}

.ds-enquiry-close:hover {
    background: #ccb473;
    border-color: #ccb473;

    color: #203852;

    transform: rotate(90deg);
}

.ds-enquiry-close:focus {
    outline: none;
}


/* =========================================================
   HEADER
========================================================= */

.ds-enquiry-header {

    position: relative;

    padding: 42px 55px 36px;

    background: #203852;

    color: #fff;

    overflow: hidden;
}

.ds-enquiry-header::after {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    top: -150px;

    border: 1px solid rgba(204,180,115,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(204,180,115,.025),
        0 0 0 70px rgba(204,180,115,.018);
}


/* Kicker */

.ds-enquiry-kicker {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #ccb473;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.ds-enquiry-kicker span {

    width: 32px;
    height: 1px;

    background: #ccb473;

    display: inline-block;
}


/* Heading */

.ds-enquiry-header h2 {

    position: relative;
    z-index: 2;

    margin: 0 60px 12px 0;

    color: #fff;

    font-size: 34px;

    font-weight: 300;

    line-height: 1.08;

    letter-spacing: -.7px;
}

.ds-enquiry-header h2 strong {

    color: #ccb473;

    font-weight: 600;
}

.ds-enquiry-header p {

    position: relative;
    z-index: 2;

    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.7;
}

.ds-enquiry-header p strong {
    color: #fff;
}


/* =========================================================
   BODY
========================================================= */

.ds-enquiry-body {

    display: grid;

    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);

    min-height: 500px;
}


/* =========================================================
   FORM AREA
========================================================= */

.ds-enquiry-form-wrap {

    padding: 36px 42px 38px;

    background: #fff;
}


/* Form */

.ds-enquiry-form-wrap form {
    margin: 0;
}


/* Grid */

.ds-form-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 22px;

    row-gap: 20px;
}


/* =========================================================
   FIELD
========================================================= */

.ds-form-field {
    min-width: 0;
}

.ds-form-field-full {
    grid-column: 1 / -1;
}


/* Labels */

.ds-form-field label {

    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0 0 8px;

    color: #203852;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .4px;

    text-transform: uppercase;
}

.ds-form-field label em {

    color: #c89f42;

    font-style: normal;
}

.ds-field-icon {

    color: #ccb473;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   INPUTS
========================================================= */

.ds-form-field input,
.ds-form-field textarea,
.ds-form-field select {

    width: 100%;

    border: 1px solid #dfe3e7;

    border-radius: 2px;

    background: #fafbfc;

    color: #203852;

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* Inputs */

.ds-form-field input {

    height: 46px;

    padding: 0 14px;
}

.ds-form-field input::placeholder,
.ds-form-field textarea::placeholder {

    color: #a4abb2;
}


/* Focus */

.ds-form-field input:focus,
.ds-form-field textarea:focus,
.ds-form-field select:focus {

    border-color: #ccb473;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(204,180,115,.10);
}


/* =========================================================
   SELECT
========================================================= */

.ds-select-wrap {
    position: relative;
}

.ds-select-wrap::after {

    content: "⌄";

    position: absolute;

    right: 14px;
    top: 50%;

    transform: translateY(-55%);

    color: #ccb473;

    font-size: 16px;

    pointer-events: none;
}

.ds-form-field select {

    height: 46px;

    padding: 0 38px 0 14px;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}


/* =========================================================
   TEXTAREA
========================================================= */

.ds-form-field textarea {

    display: block;

    min-height: 92px;

    resize: vertical;

    padding: 13px 14px;

    line-height: 1.6;
}


/* =========================================================
   FORM BOTTOM
========================================================= */

.ds-form-bottom {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 25px;

    padding-top: 24px;

    border-top: 1px solid #edf0f2;
}


/* =========================================================
   CAPTCHA
========================================================= */

.ds-captcha-wrap {

    min-height: 78px;

    display: flex;

    align-items: center;
}

.ds-captcha-wrap .g-recaptcha {

    transform-origin: left center;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ds-submit-btn {

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-width: 175px;

    height: 52px;

    padding: 0 8px 0 20px;

    border: 0;

    border-radius: 2px;

    background: #ccb473;

    color: #203852;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    cursor: pointer;

    overflow: hidden;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.ds-submit-btn:hover {

    background: #d8c184;

    color: #203852;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(32,56,82,.16);
}

.ds-submit-btn:focus {
    outline: none;
}


/* Arrow */

.ds-submit-arrow {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(32,56,82,.3);

    border-radius: 50%;

    font-size: 17px;

    transition:
        transform .25s ease,
        background .25s ease;
}

.ds-submit-btn:hover .ds-submit-arrow {

    transform: translate(3px,-3px);

    background: rgba(255,255,255,.18);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.ds-enquiry-visual {

    position: relative;

    min-height: 100%;

    padding: 38px 34px;

    overflow: hidden;

    background: #e9f4ff;
}


/* Decorative circles */

.ds-enquiry-visual::before {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -200px;
    bottom: -180px;

    border: 1px solid rgba(32,56,82,.10);

    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(32,56,82,.025),
        0 0 0 90px rgba(32,56,82,.018);
}

.ds-enquiry-visual::after {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #ccb473;
}


/* Number */

.ds-visual-number {

    position: relative;
    z-index: 2;

    color: #ccb473;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* Content */

.ds-visual-content {

    position: relative;
    z-index: 2;

    margin-top: 55px;
}

.ds-visual-label {

    display: block;

    margin-bottom: 13px;

    color: #8e7750;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.ds-visual-content h3 {

    max-width: 270px;

    margin: 0 0 15px;

    color: #203852;

    font-size: 27px;

    font-weight: 300;

    line-height: 1.15;

    letter-spacing: -.5px;
}

.ds-visual-content h3 span {

    color: #b79a59;

    font-weight: 600;
}

.ds-visual-content p {

    max-width: 270px;

    margin: 0;

    color: #7b8490;

    font-size: 15px;

    line-height: 1.75;
}


/* Image */

.ds-visual-image {

    position: absolute;
    z-index: 1;
    right: 35px;
    bottom: 75px;
    width: 313px;
    pointer-events: none;
}

.ds-visual-image img {

    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* Footer */

.ds-visual-footer {

    position: absolute;

    z-index: 3;

    left: 34px;
    right: 34px;

    bottom: 22px;

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding-top: 13px;

    border-top: 1px solid rgba(32,56,82,.12);

    color: #8e7750;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   BOOTSTRAP MODAL ANIMATION
========================================================= */

.ds-enquiry-modal .modal-dialog {

    transform: translateY(25px) scale(.98);

    transition:
        transform .3s ease-out;
}

.ds-enquiry-modal.show .modal-dialog {

    transform: translateY(0) scale(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ds-enquiry-dialog {

        width: calc(100% - 30px);

        margin: 30px auto;
    }

    .ds-enquiry-body {

        grid-template-columns: 1fr;
    }

    .ds-enquiry-visual {

        display: none;
    }

    .ds-enquiry-header {

        padding: 35px 35px 30px;
    }

    .ds-enquiry-form-wrap {

        padding: 32px 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ds-enquiry-dialog {

        width: calc(100% - 20px);

        margin: 15px auto;
    }

    .ds-enquiry-header {

        padding: 30px 24px 27px;
    }

    .ds-enquiry-header h2 {

        margin-right: 35px;

        font-size: 27px;
    }

    .ds-enquiry-header p {

        font-size: 12px;
    }

    .ds-enquiry-close {

        top: 14px;
        right: 14px;

        width: 34px;
        height: 34px;
    }

    .ds-enquiry-form-wrap {

        padding: 27px 22px 30px;
    }

    .ds-form-grid {

        grid-template-columns: 1fr;

        row-gap: 18px;
    }

    .ds-form-field-full {

        grid-column: auto;
    }

    .ds-form-bottom {

        align-items: stretch;

        flex-direction: column;
    }

    .ds-captcha-wrap {

        overflow: hidden;
    }

    .ds-submit-btn {

        width: 100%;

        justify-content: space-between;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ds-enquiry-header h2 {
        font-size: 24px;
    }

    .ds-enquiry-form-wrap {
        padding-left: 17px;
        padding-right: 17px;
    }

}


/* =========================================================
   ENQUIRY MODAL — VIEWPORT FIT FIX
   Add this AFTER the previous enquiry modal CSS
========================================================= */


/* ---------------------------------------------------------
   MODAL WRAPPER
--------------------------------------------------------- */

.ds-enquiry-modal {
    padding: 0 !important;
    overflow-y: auto !important;
}


/* ---------------------------------------------------------
   DIALOG
--------------------------------------------------------- */

.ds-enquiry-dialog {
    width: calc(100% - 30px) !important;
    max-width: 1080px !important;

    /*
     * Keep complete popup inside viewport
     */
    height: calc(100vh - 30px) !important;
    max-height: calc(100vh - 30px) !important;

    margin: 15px auto !important;

    display: flex !important;
    align-items: center !important;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.ds-enquiry-content {
    width: 100% !important;

    height: auto !important;
    max-height: calc(100vh - 30px) !important;

    display: flex !important;
    flex-direction: column !important;

    overflow: hidden !important;
}


/* ---------------------------------------------------------
   HEADER — COMPACT
--------------------------------------------------------- */

.ds-enquiry-header {
    flex: 0 0 auto !important;

    padding: 27px 48px 25px !important;
}


.ds-enquiry-header h2 {
    font-size: 30px !important;
    line-height: 1.08 !important;

    margin-bottom: 9px !important;
}


.ds-enquiry-header p {
    font-size: 12px !important;
    line-height: 1.55 !important;
}


.ds-enquiry-kicker {
    margin-bottom: 10px !important;

    font-size: 9px !important;
}


/* ---------------------------------------------------------
   BODY
--------------------------------------------------------- */

.ds-enquiry-body {
    /*
     * Important:
     * body takes remaining available height
     */
    flex: 1 1 auto !important;

    min-height: 0 !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(300px, .85fr) !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
}


/* ---------------------------------------------------------
   FORM AREA
--------------------------------------------------------- */

.ds-enquiry-form-wrap {
    padding: 25px 38px 25px !important;
}


/* ---------------------------------------------------------
   FORM GRID
--------------------------------------------------------- */

.ds-form-grid {
    column-gap: 20px !important;
    row-gap: 13px !important;
}


/* ---------------------------------------------------------
   LABEL
--------------------------------------------------------- */

.ds-form-field label {
    margin-bottom: 5px !important;

    font-size: 10px !important;
}


/* ---------------------------------------------------------
   INPUT / SELECT
--------------------------------------------------------- */

.ds-form-field input,
.ds-form-field select {
    height: 40px !important;

    font-size: 12px !important;
}


/* ---------------------------------------------------------
   TEXTAREA
--------------------------------------------------------- */

.ds-form-field textarea {
    min-height: 70px !important;

    height: 70px !important;

    padding: 10px 12px !important;

    font-size: 12px !important;
}


/* ---------------------------------------------------------
   FORM BOTTOM
--------------------------------------------------------- */

.ds-form-bottom {
    margin-top: 15px !important;

    padding-top: 15px !important;

    gap: 15px !important;
}


/* ---------------------------------------------------------
   CAPTCHA
--------------------------------------------------------- */

.ds-captcha-wrap {
    min-height: 70px !important;
}


/* ---------------------------------------------------------
   SUBMIT
--------------------------------------------------------- */

.ds-submit-btn {
    height: 46px !important;

    min-width: 160px !important;

    font-size: 9px !important;
}


/* ---------------------------------------------------------
   RIGHT VISUAL
--------------------------------------------------------- */

.ds-enquiry-visual {
    min-height: 0 !important;

    padding: 28px 32px !important;
}


.ds-visual-content {
    margin-top: 35px !important;
}


.ds-visual-content h3 {
    font-size: 24px !important;
}


.ds-visual-footer {
    bottom: 15px !important;
}


/* ---------------------------------------------------------
   CLOSE
--------------------------------------------------------- */

.ds-enquiry-close {
    top: 14px !important;
    right: 14px !important;

    width: 34px !important;
    height: 34px !important;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .ds-enquiry-dialog {
        max-width: 1080px !important;
    }

    .ds-enquiry-header {
        padding-top: 25px !important;
        padding-bottom: 23px !important;
    }

    .ds-enquiry-form-wrap {
        padding-top: 23px !important;
        padding-bottom: 22px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ds-enquiry-dialog {
        width: calc(100% - 24px) !important;

        height: calc(100vh - 24px) !important;
        max-height: calc(100vh - 24px) !important;

        margin: 12px auto !important;
    }


    .ds-enquiry-content {
        max-height: calc(100vh - 24px) !important;
    }


    .ds-enquiry-body {
        grid-template-columns: 1fr !important;
    }


    .ds-enquiry-visual {
        display: none !important;
    }


    .ds-enquiry-header {
        padding: 25px 30px 23px !important;
    }


    .ds-enquiry-form-wrap {
        padding: 25px 30px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ds-enquiry-dialog {
        width: calc(100% - 16px) !important;

        height: calc(100vh - 16px) !important;
        max-height: calc(100vh - 16px) !important;

        margin: 8px auto !important;
    }


    .ds-enquiry-content {
        max-height: calc(100vh - 16px) !important;

        border-radius: 3px !important;
    }


    .ds-enquiry-header {
        padding: 25px 20px 22px !important;
    }


    .ds-enquiry-header h2 {
        font-size: 25px !important;

        margin-right: 35px !important;
    }


    .ds-enquiry-header p {
        font-size: 11px !important;
    }


    .ds-enquiry-form-wrap {
        padding: 22px 18px 25px !important;
    }


    .ds-form-grid {
        grid-template-columns: 1fr !important;

        row-gap: 14px !important;
    }


    .ds-form-field-full {
        grid-column: auto !important;
    }


    .ds-form-field input,
    .ds-form-field select {
        height: 43px !important;
    }


    .ds-form-field textarea {
        height: 80px !important;
        min-height: 80px !important;
    }


    .ds-form-bottom {
        flex-direction: column !important;

        align-items: stretch !important;
    }


    .ds-captcha-wrap {
        min-height: 78px !important;

        overflow: visible !important;
    }


    .ds-submit-btn {
        width: 100% !important;
    }


    /*
     * Body scroll only when absolutely necessary
     */
    .ds-enquiry-body {
        overflow-y: auto !important;

        -webkit-overflow-scrolling: touch;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .ds-enquiry-header {
        padding: 20px 17px !important;
    }


    .ds-enquiry-header h2 {
        font-size: 22px !important;
    }


    .ds-enquiry-form-wrap {
        padding: 20px 15px !important;
    }


    .ds-form-grid {
        row-gap: 12px !important;
    }

}


/* =========================================================
   DIAKSHAM PREMIUM TOPBAR
   ========================================================= */

#diaksham-header .ds-top-strip {
    position: relative;

    width: 100%;
    height: 40px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #152435 0%,
            #101c2a 50%,
            #152435 100%
        );

    border-bottom: 1px solid rgba(204,180,115,0.10);

    z-index: 100;
}


/* subtle gold glow */

#diaksham-header .ds-top-strip::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 1px;

    right: 10%;

    bottom: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(204,180,115,0.45),
            transparent
        );

    pointer-events: none;
}


#diaksham-header .ds-top-strip .ds-header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LEFT
   ========================================================= */

#diaksham-header .ds-top-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.68);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;

    white-space: nowrap;
}


#diaksham-header .ds-top-brand-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ccb473;

    box-shadow:
        0 0 0 4px rgba(204,180,115,0.10),
        0 0 12px rgba(204,180,115,0.35);

    animation: dsTopDotPulse 2.5s ease-in-out infinite;
}


@keyframes dsTopDotPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(204,180,115,0.08),
            0 0 8px rgba(204,180,115,0.25);
    }

    50% {
        box-shadow:
            0 0 0 6px rgba(204,180,115,0.12),
            0 0 16px rgba(204,180,115,0.40);
    }

}


/* =========================================================
   RIGHT CONTACT
   ========================================================= */

#diaksham-header .ds-top-contact {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 18px;
}


/* =========================================================
   PHONE
   ========================================================= */

#diaksham-header .ds-top-phone {
    position: relative;

    height: 28px;

    padding: 0 13px 0 8px;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #ffffff;

    text-decoration: none;

    background:
        linear-gradient(
            90deg,
            rgba(204,180,115,0.12),
            rgba(204,180,115,0.025)
        );

    border: 1px solid rgba(204,180,115,0.30);

    border-radius: 2px;

    overflow: hidden;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


#diaksham-header .ds-top-phone:hover {
    color: #ffffff;

    border-color: rgba(204,180,115,0.75);

    background:
        linear-gradient(
            90deg,
            rgba(204,180,115,0.20),
            rgba(204,180,115,0.05)
        );

    box-shadow:
        0 0 20px rgba(204,180,115,0.08);
}


/* phone icon */

#diaksham-header .ds-top-phone-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ccb473;

    font-size: 12px;

    flex-shrink: 0;
}


/* =========================================================
   PHONE MARQUEE
   ========================================================= */

#diaksham-header .ds-phone-marquee {
    width: 135px;

    overflow: hidden;

    white-space: nowrap;
}


#diaksham-header .ds-phone-marquee-track {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    white-space: nowrap;

    animation:
        dsPhoneTicker 8s linear infinite;
}


#diaksham-header .ds-phone-marquee-track strong {
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .8px;

    white-space: nowrap;
}


#diaksham-header .ds-phone-separator {
    color: #ccb473;

    font-size: 9px;
}


@keyframes dsPhoneTicker {

    0% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-155px);
    }

}


/* =========================================================
   DIVIDER
   ========================================================= */

#diaksham-header .ds-top-divider {
    width: 1px;
    height: 18px;

    background: rgba(255,255,255,0.16);
}


/* =========================================================
   EMAIL
   ========================================================= */

#diaksham-header .ds-top-email {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.68);

    font-size: 12px;

    text-decoration: none;

    transition: color .25s ease;
}


#diaksham-header .ds-top-email i {
    color: #ccb473;

    font-size: 12px;
}


#diaksham-header .ds-top-email:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    #diaksham-header .ds-top-strip-inner {
        padding: 0 5%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #diaksham-header .ds-top-strip {
        height: 36px;
    }

    #diaksham-header .ds-top-strip-inner {
        padding: 0 18px;
    }

    #diaksham-header .ds-top-brand {
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    #diaksham-header .ds-top-brand-dot {
        width: 5px;
        height: 5px;
    }

    #diaksham-header .ds-top-contact {
        gap: 8px;
    }

    #diaksham-header .ds-top-phone {
        padding: 0 7px;

        border-color: rgba(204,180,115,0.35);
    }

    #diaksham-header .ds-phone-marquee {
        width: 105px;
    }

    #diaksham-header .ds-phone-marquee-track strong {
        font-size: 10px;
    }

    #diaksham-header .ds-top-email,
    #diaksham-header .ds-top-divider {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #diaksham-header .ds-top-strip-inner {
        padding: 0 12px;
    }

    #diaksham-header .ds-top-brand {
        font-size: 7px;
        letter-spacing: 1px;
    }

    #diaksham-header .ds-top-phone {
        height: 26px;
    }

    #diaksham-header .ds-phone-marquee {
        width: 95px;
    }

}


/* =========================================================
   MOBILE HEADER — PREMIUM FIX
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       TOP STRIP
    ----------------------------------------- */

    .ds-top-strip {
        height: 36px;

        background:
            linear-gradient(
                90deg,
                #101d2b 0%,
                #172536 50%,
                #101d2b 100%
            );
    }


    .ds-top-strip .ds-header-container {
        width: calc(100% - 24px);

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* Hide media text on small screens */

    .ds-top-brand {
        display: none !important;
    }


    /* -----------------------------------------
       PHONE
    ----------------------------------------- */

    .ds-top-contact {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 !important;

        gap: 0;
    }


    .ds-top-phone {
        width: auto;
        min-width: 0;

        height: 28px;

        padding: 0;

        background:
            linear-gradient(
                105deg,
                #ccb473 0%,
                #ccb473 24%,
                #1a2a3b 24.5%,
                #1a2a3b 100%
            );

        border-color:
            rgba(204,180,115,.65);
    }


    .ds-top-phone-icon {
        width: 35px;

        font-size: 10px;
    }


    .ds-top-phone-content {
        padding-left: 3px;
    }


    .ds-top-phone-content small {
        display: none;
    }


    .ds-top-phone-content strong {
        font-size: 10px;

        letter-spacing: .4px;
    }


    .ds-top-phone-arrow {
        padding: 0 8px;

        font-size: 11px;
    }


    /* Hide email / talk on mobile */

    .ds-top-email,
    .ds-top-talk,
    .ds-top-contact .ds-top-divider {
        display: flex !important;
    }


    /* -----------------------------------------
       MAIN NAVBAR
    ----------------------------------------- */

    .ds-glass-nav {
        height: 76px !important;

        background:
            linear-gradient(
                135deg,
                #3a5069 0%,
                #31475f 100%
            );

        border-bottom:
            1px solid rgba(204,180,115,.18);
    }


    .ds-nav-inner {
        height: 76px !important;

        display: flex;
        align-items: center;

        justify-content: space-between;
    }


    /* -----------------------------------------
       LOGO
    ----------------------------------------- */

    .ds-logo {
        display: flex;
        align-items: center;

        flex-shrink: 0;
    }


    .ds-logo img {
        width: 170px !important;

        max-width: 170px !important;

        height: auto;
    }


    /* -----------------------------------------
       MOBILE ACTIONS
    ----------------------------------------- */

    .ds-mobile-actions {
        display: flex;

        align-items: center;

        gap: 9px;
    }


    /* Search */

    .ds-search-toggle {
        width: 43px !important;
        height: 43px !important;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background:
            rgba(23,37,54,.72);

        border:
            1px solid rgba(255,255,255,.18);

        color: #fff;
    }


    /* Hamburger */

    .ds-mobile-menu-toggle {
        width: 43px !important;
        height: 43px !important;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background:
            rgba(23,37,54,.55);

        border:
            1px solid rgba(255,255,255,.18);

        color: #fff;
    }

}