:root {
    --navy: #073e66;
    --navy-2: #0a527f;
    --navy-deep: #02263f;
    --navy-black: #011a2b;
    --rose: #83003d;
    --rose-2: #bd5576;
    --rose-soft: #e4a0b5;
    --cream: #f6f3ef;
    --paper: #fbfaf8;
    --text: #173243;
    --muted: #6e7f89;
    --line: rgba(7,62,102,.12);
    --white: #fff;
    --shadow: 0 30px 80px rgba(2,38,63,.12);
    --shadow-soft: 0 16px 44px rgba(2,38,63,.08);
    --radius: 28px;
    --ease: cubic-bezier(.2,.75,.2,1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Lato", Arial, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}


button, input, select, textarea {
    font: inherit;
}
.container {
    width: min(1180px,calc(100% - 48px));
    margin-inline: auto;
}
.section {
    padding: 120px 0;
    position: relative;
}
::selection {
    background: var(--rose);
    color: #fff;
}
.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(157,53,86,.08),transparent 67%);
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 1;
}
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: #f9f8f5;
    transition: opacity .65s var(--ease), visibility .65s;
}
.preloader.hide {
    opacity: 0;
    visibility: hidden;
}
.preloader-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: loaderPulse 1.4s ease-in-out infinite;
}
.preloader-logo {
    width: min(340px,72vw);
    height: auto;
}
.preloader-branch {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .42em;
    color: var(--rose);
    margin-left: .42em;
}
.preloader-line {
    position: absolute;
    bottom: 20%;
    width: 190px;
    height: 2px;
    background: rgba(7,62,102,.1);
    overflow: hidden;
}
.preloader-line i {
    display: block;
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg,var(--navy),var(--rose));
    animation: loaderLine 1.15s ease-in-out infinite;
}
@keyframes loaderLine {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(340%);
    }
}
@keyframes loaderPulse {
    50% {
        transform: scale(.985);
        opacity: .84;
    }
}
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    transition: .35s var(--ease);
}
.header-utility {
    height: 34px;
    background: var(--navy-deep);
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
}
.utility-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.utility-inner>div {
    display: flex;
    align-items: center;
    gap: 14px;
}
.utility-inner a {
    transition: .2s;
}
.utility-inner a:hover {
    color: #fff;
}
.utility-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--rose-soft);
}
.header-shell {
    margin-top: 14px;
}
.header-inner {
    height: 82px;
    padding: 0 18px 0 22px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(251,250,248,.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 15px 45px rgba(2,38,63,.09);
    transition: .35s var(--ease);
}
.site-header.scrolled .header-utility {
    height: 0;
    overflow: hidden;
}
.site-header.scrolled .header-shell {
    margin-top: 10px;
}
.site-header.scrolled .header-inner {
    height: 70px;
    background: rgba(251,250,248,.96);
    box-shadow: 0 15px 55px rgba(2,38,63,.14);
}
.brand {
    width: 225px;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.brand img {
    width: 100px;
    height: auto;
}
.branch-chip {
    position: absolute;
    right: 55px;
    bottom: -7px;
    background: var(--rose);
    color: #fff;
    border: 3px solid var(--paper);
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    background: rgba(7,62,102,.035);
    border-radius: 999px;
}
.desktop-nav a {
    position: relative;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #4b6270;
    transition: .25s;
}
.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--navy-deep);
    background: #fff;
    box-shadow: 0 5px 15px rgba(2,38,63,.07);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-contact {
    font-size: 11px;
    font-weight: 800;
    color: var(--navy);
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--navy-deep);
    padding: 0;
    position: relative;
}
.menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: #fff;
    left: 13px;
    transition: .25s;
}
.menu-toggle span:first-child {
    top: 17px;
}
.menu-toggle span:last-child {
    top: 25px;
}
.menu-toggle.open span:first-child {
    transform: translateY(4px) rotate(45deg);
}
.menu-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}
.mobile-menu {
    display: none;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
    transition: .3s var(--ease);
    cursor: pointer;
}
.btn span {
    font-size: 15px;
    transition: transform .3s;
}
.btn:hover span {
    transform: translate(3px,-3px);
}
.btn-compact {
    padding: 11px 18px;
}
.btn-large {
    padding: 15px 23px;
}
.btn-primary {
    background: linear-gradient(135deg,var(--navy),#0c5988);
    color: #fff;
    box-shadow: 0 12px 28px rgba(7,62,102,.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(7,62,102,.28);
}
.btn-dark {
    padding: 14px 22px;
    background: var(--navy-deep);
    color: #fff;
}
.btn-light {
    padding: 14px 22px;
    background: #fff;
    color: var(--navy-deep);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.text-link span {
    font-size: 18px;
    transition: .25s;
}
.text-link:hover span {
    transform: translateX(5px);
}
.hero {
    min-height: 100vh;
    padding-top: 132px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 78% 24%,rgba(157,53,86,.08),transparent 24%), linear-gradient(135deg,#fcfbf8 0%,#f7f6f2 58%,#f1f5f6 100%);
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(7,62,102,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(7,62,102,.04) 1px,transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom,rgba(0,0,0,.65),transparent 88%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}
.hero-orb-a {
    width: 500px;
    height: 500px;
    right: -180px;
    top: 170px;
    border: 1px solid rgba(7,62,102,.08);
}
.hero-orb-b {
    width: 300px;
    height: 300px;
    right: -80px;
    top: 270px;
    border: 1px solid rgba(157,53,86,.12);
}
.hero-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
    padding: 68px 0 100px;
    position: relative;
    z-index: 2;
}
.hero-copy {
    max-width: 660px;
}
.eyebrow, .section-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--rose);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow span {
    width: 28px;
    height: 1px;
    background: var(--rose);
}
.hero h1, h2 {
    font-weight: 300;
    letter-spacing: -.045em;
    color: var(--navy-deep);
    line-height: 1.02;
}
.hero h1 {
    font-size: clamp(52px,5.6vw,82px);
    margin: 20px 0 25px;
}
.hero h1 em {
    font-style: normal;
    font-weight: 900;
    color: var(--navy);
}
.hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #617582;
    max-width: 610px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}
.hero-trust {
    display: flex;
    gap: 38px;
    margin-top: 48px;
    padding-top: 27px;
    border-top: 1px solid var(--line);
}
.hero-trust div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hero-trust strong {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy-deep);
}
.hero-trust span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8a989f;
}
.hero-photo-shell {
    height: 610px;
    position: relative;
    border-radius: 230px 230px 34px 34px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(2,38,63,.22);
    border: #011a2b;
    border-width: 20px;
}
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(2,38,63,.45),transparent 58%), linear-gradient(135deg,rgba(7,62,102,.13),transparent 45%);
}
.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 18px 40px rgba(2,38,63,.16);
    border-radius: 17px;
    padding: 13px 16px;
}
.floating-card small {
    display: block;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #80909a;
}
.floating-card strong {
    display: block;
    font-size: 11px;
    color: var(--navy-deep);
}
.floating-card-top {
    right: 16px;
    top: 190px;
}
.floating-card-bottom {
    left: 22px;
    bottom: 28px;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5eb591;
    box-shadow: 0 0 0 6px rgba(94,181,145,.13);
}
.mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-weight: 900;
}
.hero-badge {
    position: absolute;
    z-index: 2;
    top: 34px;
    right: 28px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 15px 35px rgba(157,53,86,.3);
    transform: rotate(8deg);
}
.hero-badge span {
    font-size: 25px;
    font-weight: 900;
}
.hero-badge small {
    font-size: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #7d8d96;
}
.hero-scroll i {
    display: block;
    width: 38px;
    height: 1px;
    background: #8f9ca3;
    position: relative;
    overflow: hidden;
}
.hero-scroll i:after {
    content: "";
    position: absolute;
    width: 13px;
    height: 1px;
    background: var(--rose);
    animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
    from {
        left: -14px;
    }
    to {
        left: 39px;
    }
}
.ticker {
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
    padding: 13px 0;
}
.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 35s linear infinite;
}
.ticker span {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    opacity: .8;
    padding: 0 25px;
}
.ticker b {
    color: var(--rose-soft);
    font-size: 10px;
}
@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}
.about {
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 95px;
    align-items: center;
}
.about-media {
    position: relative;
    padding: 0 32px 34px 0;
}
.image-frame {
    height: 610px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.04);
}
.heritage-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 270px;
    padding: 25px;
    background: var(--navy-deep);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(2,38,63,.24);
}
.heritage-label {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--rose-soft);
    font-weight: 900;
}
.heritage-year {
    display: block;
    font-size: 28px;
    font-weight: 900;
    margin: 3px 0 5px;
}
.heritage-card p {
    font-size: 10px;
    color: rgba(255,255,255,.64);
}
h2 {
    font-size: clamp(40px,4.1vw,60px);
    margin-top: 12px;
}
h2 span {
    font-weight: 900;
    color: var(--navy);
}
.section-lead {
    font-size: 16px!important;
    color: #385567!important;
    line-height: 1.72!important;
}
.about-copy>p {
    font-size: 13px;
    color: #74858e;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 580px;
}
.about-points {
    margin: 30px 0;
    display: grid;
    gap: 2px;
}
.about-points>div {
    display: flex;
    gap: 17px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.about-points i {
    font-style: normal;
    font-size: 9px;
    font-weight: 900;
    color: var(--rose);
    padding-top: 2px;
}
.about-points span {
    display: flex;
    flex-direction: column;
}
.about-points strong {
    font-size: 12px;
    color: var(--navy-deep);
}
.about-points small {
    font-size: 10px;
    color: #87959c;
}
.services {
    background: var(--cream);
}
.section-head {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}
.section-head>p {
    font-size: 12px;
    color: #7c8d96;
    line-height: 1.75;
    max-width: 430px;
    padding-bottom: 4px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}
.service-card {
    position: relative;
    min-height: 330px;
    background: #fff;
    border: 1px solid rgba(7,62,102,.07);
    border-radius: 24px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: .35s var(--ease);
    box-shadow: 0 8px 28px rgba(2,38,63,.025);
}
.service-card:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: -95px;
    top: -95px;
    background: var(--rose);
    opacity: .07;
    transition: .4s;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(7,62,102,.12);
}
.service-card:hover:before {
    transform: scale(2);
}
.service-number {
    font-size: 9px;
    color: #9aa6ac;
    font-weight: 900;
}
.service-icon {
    width: 47px;
    height: 47px;
    border-radius: 15px;
    background: #f1f5f6;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 19px;
    margin: 50px 0 21px;
}
.service-card h3 {
    font-size: 18px;
    line-height: 1.25;
    color: var(--navy-deep);
    font-weight: 900;
    max-width: 260px;
}
.service-card p {
    font-size: 11px;
    color: #7b8c95;
    margin-top: 12px;
    max-width: 290px;
}
.service-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    color: var(--navy);
}
.service-card.featured {
    background: linear-gradient(145deg,var(--navy),var(--navy-deep));
    color: #fff;
}
.service-card.featured h3, .service-card.featured a {
    color: #fff;
}
.service-card.featured p {
    color: rgba(255,255,255,.66);
}
.service-card.featured .service-number {
    color: rgba(255,255,255,.5);
}
.service-card.featured .service-icon {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.service-card.featured a {
    border-color: rgba(255,255,255,.13);
}
.service-card.wide {
    grid-column: 2/4;
    min-height: 250px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}
.service-card.wide .service-icon {
    margin: 0;
}
.service-card.wide a {
    padding: 0;
    align-self: center;
    gap: 30px;
    border: 0;
}
.sri-lanka-section {
    background: var(--navy-deep);
    color: #fff;
    overflow: hidden;
}
.sri-lanka-section:before {
    content: "SRI LANKA";
    position: absolute;
    left: -30px;
    bottom: -85px;
    font-size: 180px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.06em;
    color: rgba(255,255,255,.024);
    white-space: nowrap;
}
.sri-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.section-kicker.light {
    color: var(--rose-soft);
}
.sri-copy h2 {
    color: #fff;
}
.sri-copy h2 span {
    color: var(--rose-soft);
}
.sri-copy>p {
    font-size: 13px;
    color: rgba(255,255,255,.62);
    max-width: 540px;
    margin: 24px 0 30px;
}
.bridge-list {
    display: grid;
    gap: 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.bridge-list div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.bridge-list span {
    font-size: 9px;
    color: var(--rose-soft);
    font-weight: 900;
}
.bridge-list p {
    font-size: 11px;
    color: rgba(255,255,255,.62);
}
.bridge-list strong {
    color: #fff;
}
.sri-visual {
    height: 610px;
    position: relative;
}
.sri-image-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 76%;
    height: 72%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0,0,0,.32);
}
.sri-image-main img, .sri-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sri-image-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 47%;
    height: 43%;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid var(--navy-deep);
    box-shadow: 0 28px 60px rgba(0,0,0,.3);
}
.market-card {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 230px;
    padding: 21px;
    border-radius: 19px;
    background: #fff;
    color: var(--navy-deep);
    box-shadow: 0 22px 50px rgba(0,0,0,.24);
}
.market-card small {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--rose);
    font-weight: 900;
}
.market-card strong {
    display: block;
    font-size: 25px;
    font-weight: 900;
    margin: 2px 0;
}
.market-card span {
    font-size: 9px;
    color: #75858e;
    line-height: 1.5;
}
.process {
    background: #fff;
}
.section-head.compact {
    margin-bottom: 60px;
}
.process-row {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: start;
}
.process-step span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    margin-bottom: 20px;
}
.process-step h3 {
    font-size: 15px;
    color: var(--navy-deep);
    font-weight: 900;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 10.5px;
    color: #7c8c95;
    max-width: 190px;
}
.process-line {
    height: 1px;
    background: var(--line);
    margin-top: 21px;
}
.faq {
    background: var(--cream);
}
.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}
.faq-intro p {
    font-size: 12px;
    color: #75858f;
    max-width: 360px;
    margin: 22px 0;
}
.dark-link {
    color: var(--navy-deep);
}
.accordion {
    border-top: 1px solid rgba(5,57,95,.15);
}
.faq-item {
    border-bottom: 1px solid rgba(5,57,95,.15);
}
.faq-item button {
    width: 100%;
    border: 0;
    background: none;
    padding: 23px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--navy-deep);
    font-size: 12.5px;
    font-weight: 900;
    cursor: pointer;
}
.faq-item button i {
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    transition: .25s;
}
.faq-item.active button i {
    transform: rotate(45deg);
    color: var(--rose);
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}
.faq-answer p {
    overflow: hidden;
    font-size: 11px;
    color: #75858e;
    max-width: 620px;
}
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}
.faq-item.active .faq-answer p {
    padding-bottom: 22px;
}
.contact-section {
    padding: 115px 0;
    background: linear-gradient(135deg,#021e32,#06466f);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    right: -260px;
    top: -250px;
    background: radial-gradient(circle,rgba(189,85,118,.3),transparent 64%);
}
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    position: relative;
    z-index: 1;
    align-items: center;
}
.contact-copy h2 {
    color: #fff;
}
.contact-copy h2 span {
    color: #e4a0b5;
}
.contact-copy>p {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    margin: 24px 0 38px;
    max-width: 480px;
}
.contact-details {
    display: flex;
    gap: 45px;
}
.contact-details a, .contact-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-details small {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #d890a5;
    font-weight: 900;
}
.contact-details strong {
    font-size: 13px;
}
.contact-form {
    background: #fff;
    color: var(--text);
    padding: 32px;
    border-radius: 25px;
    box-shadow: 0 35px 80px rgba(0,0,0,.22);
}
.form-head {
    margin-bottom: 24px;
}
.form-head span {
    display: block;
    font-size: 25px;
    font-weight: 900;
    color: var(--navy-deep);
    letter-spacing: -.025em;
}
.form-head small {
    color: #87939a;
    font-size: 10px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-form label {
    display: block;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #526673;
    margin-bottom: 14px;
}
.contact-form input, .contact-form select, .contact-form textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(5,57,95,.12);
    background: #f8f8f6;
    border-radius: 11px;
    padding: 12px 13px;
    margin-top: 7px;
    outline: none;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    transition: .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(5,57,95,.06);
}
.contact-form textarea {
    resize: vertical;
}
.form-submit {
    width: 100%;
    border: 0;
}
.form-note {
    font-size: 8.5px;
    color: #8e999f;
    text-align: center;
    margin-top: 10px;
}
.form-note.success {
    color: #2c7a5a;
    font-weight: 700;
}
.site-footer {
    background: #011522;
    color: #fff;
    padding: 70px 0 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
    gap: 60px;
    padding-bottom: 55px;
}
.footer-brand img {
    width: 220px;
    filter: brightness(0) invert(1);
    opacity: .95;
    margin-bottom: 10px;
}
.footer-branch {
    display: block;
    color: var(--rose-soft);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 15px;
}
.footer-brand p {
    font-size: 10.5px;
    color: rgba(255,255,255,.46);
    max-width: 330px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h4 {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #d890a5;
    margin-bottom: 6px;
}
.footer-col a, .footer-col span {
    font-size: 10.5px;
    color: rgba(255,255,255,.58);
    transition: .2s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 8.5px;
    color: rgba(255,255,255,.36);
}
.footer-bottom div {
    display: flex;
    gap: 18px;
}
.back-top {
    color: #d890a5!important;
}
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
    opacity: 1;
    transform: none;
}
@media(max-width:1100px) {
    .desktop-nav a {
        padding: 9px 10px;
    }
    .brand {
        width: 205px;
    }
    .header-inner {
        gap: 18px;
    }
    .hero-layout {
        gap: 45px;
    }
    .hero-photo-shell {
        height: 560px;
    }
    .about-grid {
        gap: 60px;
    }
    .sri-grid {
        gap: 50px;
    }
    .faq-grid, .contact-grid {
        gap: 55px;
    }
}
@media(max-width:920px) {
    .header-utility {
        display: none;
    }
    .header-shell {
        margin-top: 12px;
    }
    .desktop-nav, .header-actions {
        display: none;
    }
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: rgba(251,250,247,.98);
        transition: max-height .35s var(--ease);
        box-shadow: 0 15px 40px rgba(2,38,63,.1);
    }
    .mobile-menu.open {
        max-height: 420px;
    }
    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        padding-top: 18px;
        padding-bottom: 22px;
    }
    .mobile-menu a {
        padding: 11px 0;
        font-size: 13px;
        font-weight: 900;
        color: var(--navy-deep);
    }
    .hero {
        padding-top: 95px;
        min-height: auto;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        padding: 90px 0 80px;
    }
    .hero-copy {
        max-width: 760px;
    }
    .hero-visual {
        max-width: 660px;
        width: 100%;
        margin: auto;
    }
    .hero-photo-shell {
        height: 560px;
    }
    .hero-scroll {
        display: none;
    }
    .about-grid, .sri-grid, .faq-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        gap: 70px;
    }
    .about-media {
        max-width: 680px;
    }
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card.featured {
        grid-column: auto;
    }
    .service-card.wide {
        grid-column: 1/3;
    }
    .sri-grid {
        gap: 65px;
    }
    .sri-copy {
        max-width: 650px;
    }
    .sri-visual {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }
    .faq-grid, .contact-grid {
        gap: 55px;
    }
    .process-row {
        grid-template-columns: 1fr 40px 1fr;
        gap: 20px;
    }
    .process-row .process-line:nth-of-type(2) {
        display: none;
    }
    .process-step:nth-of-type(3), .process-step:nth-of-type(4) {
        margin-top: 20px;
    }
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-col:last-child {
        grid-column: 1/4;
    }
}
@media(max-width:650px) {
    .container {
        width: min(100% - 28px,1180px);
    }
    .section {
        padding: 82px 0;
    }
    .header-shell {
        width: calc(100% - 20px);
    }
    .header-inner {
        height: 68px;
        padding: 0 11px 0 16px;
        border-radius: 18px;
    }
    .site-header.scrolled .header-inner {
        height: 64px;
    }
    .brand {
        width: 165px;
    }
    .branch-chip {
        font-size: 6px;
        right: -5px;
        bottom: -7px;
    }
    .hero {
        padding-top: 82px;
    }
    .hero-layout {
        padding: 66px 0 65px;
        gap: 50px;
    }
    .eyebrow {
        font-size: 8px;
        letter-spacing: .12em;
        line-height: 1.5;
    }
    .hero h1 {
        font-size: 45px;
        margin-top: 17px;
    }
    .hero-lead {
        font-size: 14px;
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .hero-trust {
        gap: 18px;
        justify-content: space-between;
    }
    .hero-trust strong {
        font-size: 16px;
    }
    .hero-trust span {
        font-size: 8px;
    }
    .hero-photo-shell {
        height: 430px;
        border-radius: 150px 150px 25px 25px;
    }
    .hero-badge {
        width: 90px;
        height: 90px;
    }
    .floating-card-top {
        top: 150px;
    }
    .floating-card-bottom {
        left: 16px;
        bottom: 18px;
    }
    .section-head {
        display: block;
    }
    .section-head>p {
        margin-top: 18px;
    }
    .image-frame {
        height: 470px;
    }
    .about-media {
        padding-right: 0;
    }
    .heritage-card {
        right: 12px;
        bottom: -28px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card, .service-card.wide {
        grid-column: auto;
        min-height: 280px;
    }
    .service-card.wide {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }
    .service-card.wide .service-icon {
        margin: 45px 0 18px;
    }
    .service-card.wide a {
        margin-top: auto;
        align-self: stretch;
    }
    .sri-lanka-section:before {
        font-size: 95px;
        bottom: -35px;
    }
    .sri-visual {
        height: 500px;
    }
    .sri-image-main {
        width: 88%;
        height: 66%;
    }
    .sri-image-small {
        width: 51%;
        height: 38%;
    }
    .market-card {
        width: 190px;
        bottom: 8px;
        padding: 16px;
    }
    .market-card strong {
        font-size: 21px;
    }
    .process-row {
        grid-template-columns: 1fr;
    }
    .process-line {
        display: none;
    }
    .process-step {
        border-left: 1px solid var(--line);
        padding-left: 24px;
        padding-bottom: 30px;
        position: relative;
    }
    .process-step span {
        position: absolute;
        left: -21px;
        top: 0;
    }
    .process-step h3, .process-step p {
        margin-left: 28px;
    }
    .process-step:nth-of-type(3), .process-step:nth-of-type(4) {
        margin-top: 0;
    }
    .contact-details {
        flex-direction: column;
        gap: 18px;
    }
    .contact-form {
        padding: 24px 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }
    .footer-brand {
        grid-column: 1/3;
    }
    .footer-col:last-child {
        grid-column: auto;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .cursor-glow {
        display: none;
    }
}
@media(max-width:430px) {
    .hero h1 {
        font-size: 39px;
    }
    .hero-photo-shell {
        height: 370px;
    }
    .floating-card {
        padding: 10px 12px;
    }
    .floating-card strong {
        font-size: 9px;
    }
    .floating-card small {
        font-size: 7px;
    }
    .floating-card-top {
        top: 125px;
    }
    .hero-badge {
        top: 22px;
        right: 17px;
    }
    .hero-trust {
        gap: 9px;
    }
    .hero-trust span {
        letter-spacing: .03em;
    }
    .image-frame {
        height: 400px;
    }
    .heritage-card {
        width: 220px;
    }
    .sri-visual {
        height: 430px;
    }
    .sri-image-small {
        border-width: 6px;
    }
    .market-card {
        width: 176px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-brand, .footer-col:last-child {
        grid-column: auto;
    }
}
@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto!important;
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}