@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
:root {
    --navy: #07162d;
    --navy2: #081d3a;
    --blue: #1640a8;
    --blue2: #1E3A8A;
    --blue-accent: #1e4fbf;
    --yellow: #ffc107;
    --yellow2: #e9a700;
    --red: #e31e24;
    --text: #07162d;
    --muted: #5c667a;
    --line: #dbe2ee;
    --light: #f5f7fb;
    --white: #fff;
    --shadow: 0 16px 40px rgba(8, 29, 58, 0.12);
    --radius: 14px;
    --radius-pill: 999px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Montserrat, Arial, sans-serif;
    color: var(--text);
    background: #fcfcfc;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    /* width: min(1380px, 92%); */
    margin: auto;
}
.navbar {
    height: 78px;
    background: #fff;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}
.nav-inner {
    width: min(1380px, 95%);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}
.rbnl {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.rbnl .r,
.rbnl .n,
.rbnl .l {
    color: #1640a8;
}
.rbnl .b {
    color: #e31e24;
}
.brand small {
    font-size: 11px;
    line-height: 1.15;
    font-weight: 800;
    border-left: 1px solid #888;
    padding-left: 11px;
}
.nav-links {
    display: flex;
    gap: 58px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--navy2);
    /* padding: 29px 0 10px; */
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.nav-links a.active {
    border-color: var(--yellow);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-actions .btn {
    padding: 12px 20px;
    line-height: 1.1;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 8px;
    border: 0;
    font-weight:800;
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px 28px;
    cursor: pointer;
    white-space: nowrap;
}
.btn-yellow {
    background: linear-gradient(180deg, #ffc70e, #f2ad00);
    color:#474a4e;
    box-shadow: inset 0 -2px rgba(58, 57, 57, 0.08);
}
.btn-blue {
    background: #092b64;
    color: #fff;
}
/* .btn-outline {
    border: 1.5px solid var(--blue);
    color: var(--blue);
    background: #fff;
} */
   .view-all-wrap{display:flex;justify-content:center;margin-top:30px;}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--blue-accent);
    color: var(--blue-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-outline:hover {
    background: var(--blue-accent);
    color: #fff;
}
.btn-outline svg {
    transition: transform .2s ease;
}
.btn-outline:hover svg {
    transform: translateX(3px);
}
.btn-outline.back-btn:hover svg {
    transform: translateX(-3px);
}
.search {
    font-size: 24px;
    color: #061947;
}
.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
    color: #061947;
}
.hero {
    position: relative;
    min-height: 430px;
    background: radial-gradient(circle at 70% 10%, #1359c8 0, #081d3a 34%, #06142a 82%);
    color: #fff;
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 15, 35, 0.96) 0%,
        rgba(6, 20, 42, 0.86) 38%,
        rgba(6, 20, 42, 0.34) 67%,
        rgba(6, 20, 42, 0.08)
    );
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 3;
    padding: 58px 0;
}
.hero h1 {
    font-size: 46px;
    line-height: 1.12;
    margin: 14px 0 18px;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.hero h1 span,
.yellow {
    color: var(--yellow);
}
.eyebrow {
    font-size: 17px;
    font-weight: 900;
    color: var(--yellow);
    text-transform: uppercase;
}
.underline {
    width: 76px;
    height: 4px;
    background: var(--yellow);
    margin: 18px 0;
}
.hero p {
    font-size: 18px;
    line-height: 1.65;
    max-width: 610px;
}
.hero-art {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    opacity: 0.95;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}
.hero-art.home {
    background-image: linear-gradient(120deg, transparent 10%, rgba(0, 0, 0, 0.2)), url("../images/banner.png");
}
.hero-art.disclaimer{
    background-image: linear-gradient(120deg, transparent 10%, rgba(0, 0, 0, 0.2)), url("../images/disclaimerherobanner.png");
}
.hero-art.about,
.hero-art.contact {
    background-image: url("../images/about-banner.png");
}
.hero-art.careers {
    background-image: url("../images/career-banner.png");
}
.hero-art.media {
    background-image: url("../images/media-banner.png");
}
.hero-art.investors {
    background-image: url("../images/investors-banner.png");
}
.hero-art.products {
    background-image: url("../images/products-banner-dark.png");
}
.stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    padding-right: 28px;
}
.stat:last-child {
    border-right: 0px;
}
.stat i {
    width: 54px;
    height: 54px;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
}
.stat strong {
    font-size: 24px;
    color: #fff;
}
.stat span {
    display: block;
    font-size: 12px;
}
.section {
    padding: 34px 0;
}
.light {
    /* background: var(--light); */
}
.title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 28px;
}
.title:after,
.sec-title:after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--yellow);
    margin: 8px auto 0;
}
.sec-title:after {
    left: 0;
    position: absolute;
}
.sec-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 24px;
    position: relative;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.verticals-slider {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
} 

.verticals-slider.slick-initialized {
    display: block;
}
.verticals-slider .slick-track {
    display: flex;
    align-items: stretch;
}
.verticals-slider .slick-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.verticals-slider .card {
    width: 100%;
    max-width: 260px;
    flex: 1;
    margin: 0 auto;

}
.verticals-slider .slick-dots {
    bottom: -35px;
}
.verticals-slider .slick-dots li button:before {
    color: var(--navy2);
    opacity: 0.25;
    font-size: 10px;
}
.verticals-slider .slick-dots li.slick-active button:before {
    color: var(--yellow2);
    opacity: 1;
} 
.card {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 10px;
    padding: 24px 16px 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(8, 29, 58, 0.04);
    position: relative;
}
.logo-badge {
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.round-logo {
    width: 72px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #093894, #0ca2ee);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 0.9;
    border-top: 5px solid var(--yellow);
}
.square-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #6b2dc5;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}
.red-logo {
    color: #e31e24;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
}
.vibe-logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, #1a46b8, #ffce21, #d84dff);
    -webkit-background-clip: text;
    color: transparent;
}
.digital-logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #0ca2ee, #0072ff);
    -webkit-background-clip: text;
    color: transparent;
}
.card h3 {
    font-size: 15px;
    margin: 0 0 14px;
}
.card p {
    font-size: 12px;
    line-height: 1.7;
    color: #253152;
}
.link {
    font-size: 12px;
    font-weight: 900;
    color: var(--blue);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 100%;
    transform: translateX(-50%);
    padding: 10px 15px;
}
.dark-panel {
    background: linear-gradient(135deg, #07162d, #092b64);
    color: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}
.dark-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===== Why Brands Choose RBNL ===== */
.why-rbnl {
    align-items: stretch;
    background: #eef3fc;
    border-radius: 16px;
    padding: 32px;
}
.why-left {
    align-self: center;
}
.why-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy2);
    margin: 0 0 10px;
    position: relative;
    padding-bottom: 12px;
}
.why-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: var(--yellow);
}
.why-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 22px;
    max-width: 440px;
}
.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy2);
    padding: 9px 0;
}
.why-list li i {
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
}
.why-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 40px;
    background:
        linear-gradient(90deg, rgba(6, 16, 35, 0.92) 22%, rgba(6, 16, 35, 0.4) 60%, rgba(6, 16, 35, 0.1) 100%),
        url("../images/media-banner.png") center right / cover no-repeat,
        linear-gradient(135deg, #07162d, #092b64);
}
.why-cta h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #fff;
}
.why-cta p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 380px;
    margin: 0 0 26px;
}
.why-cta .btn {
    align-self: flex-start;
}
.dark-panel h2.title + p {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 28px;
    font-size: 14px;
    line-height: 1.8;
    color: #dfe8ff;
}
.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.feature {
    text-align: center;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.feature:last-child {
    border-right: 0;
}
.feature i {
    width: 58px;
    height: 58px;
    border: 1.2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    font-size: 24px;
}
.feature strong {
    font-size: 22px;
    color: var(--yellow);
}
.feature h4 {
    margin: 6px 0;
    font-size: 14px;
}
.feature p {
    font-size: 12px;
    line-height: 1.6;
    color: #dfe8ff;
}
.news-sec .two-col {
    grid-template-columns: 1.2fr 1fr;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: stretch;
}
.secHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.secHead .sec-title {
    margin-bottom: 8px;
}
.news-sec .row {
    row-gap: 20px;
    align-items: stretch;
}
.news-sec .col-lg-7,
.news-sec .col-lg-5 {
    display: flex;
}
.news-sec .case-study,
.news-sec .news-announce.box {
    width: 100%;
}
.case-study {
    background: linear-gradient(135deg, #07162d, #092b64);
    color: #fff;
    border-radius: 12px;
    padding: 24px 15px;
    box-shadow: var(--shadow);
}
.case-study-slider {
    margin-top: 25px;
    margin-left: -12px;
    margin-right: -12px;
}
.case-study-slider .slick-track {
    display: flex !important;
}
.case-study-slider .slick-slide {
    padding: 0 12px;
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}
.case-study-slider .slick-slide > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-card{
    background:#0b1d57;
    border:1px solid rgba(255,255,255,.15);
    border-radius:12px;
    overflow:hidden;
    color:#fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.case-content{
    padding:15px 10px;
    text-align:center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.case-content h3{
    font-size:13px;
    margin:0 0 8px;
    font-weight:700;
}

.case-content p{
    margin:0;
    color:#d6d6d6;
    font-size:10px;
}

.case-stats{
    display:flex;   
    border-top:1px solid rgba(255,255,255,.15);
}

.case-stat{
    padding:14px 10px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.15);
    width: 33.33%;
    line-height: normal;
}

.case-stat:last-child{
    border-right:none;
}

.case-stat strong{
    display:block;
    font-size:13px;
    margin-bottom:6px;
}

.case-stat span{
    font-size:10px;
    color:#d8d8d8;
    display: inline-block;
    padding-right: 2px;
}

/* Slick Dots */
.slick-dots{
    bottom:-45px;
}

.slick-dots li button:before{
    font-size:12px;
    color:#fff;
    opacity:.5;
}

.slick-dots li.slick-active button:before{
    color:#ffc107;
    opacity:1;
}
.box {
    background: #fefefe;
    border: 1px solid var(--line);
    border-radius: 12px;    
    box-shadow: 0 8px 24px rgba(8, 29, 58, 0.04);
    overflow: hidden;
    padding: 15px 24px;
}

.news-announce.box {
    padding: 0;
}
.boxInner {
    padding: 15px 24px;
}
.boxInner img {
    width: 130px;
    height: 80px;
    border-radius: 10px;
}
.innerList {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}
.innerList::before {
    content: "\f061";
    color: var(--blue2);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.innerList p {
    color: var(--blue2);
    max-width: 300px;
    line-height: 1.5;
    padding-right: 25px;
}
.box .secHead {
    background-color: #00163d;
    padding: 18px 24px;    
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-sec .box .sec-title {
    color: #fff;    
    margin-bottom: 8px;
}
.view-cta {
   
    position: relative;
    padding-right: 25px;
}
.news-sec .case-study,
.news-sec .news-announce.box {
    display: flex;
    flex-direction: column;
}
.case-study-footer {
    margin-top: 40px;
    text-align: center;
    padding: 18px 15px;
    background: #08275a;
    border-top: 1px solid #2f3f70;
    border-radius: 0 0 12px 12px;
    color: #fff;
}
.news-footer .view-cta {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.news-footer {
    margin-top: auto;
    text-align: center;
    padding: 18px 15px;
    background: #00163d;
    border-top: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
}
.case-study .view-all-footer {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -24px;
    margin-top: auto;
}
.case-study-footer .view-cta {
    color:#fff;
    font-weight: bold;
    text-transform: uppercase;
}
.news-footer .view-cta {
    color: var(--blue2);
    font-weight: bold;
    text-transform: uppercase;
}
.view-cta.blueTxt {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.view-cta::before {
     content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (min-width: 768px) {
    .mini-grid.four-col {
        grid-template-columns: repeat(4, 1fr);
    }
}
.icon-block {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px;
}
.icon-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    white-space: nowrap;
}
@media (max-width: 1200px) {
    .icon-block {
        padding: 22px 12px;
    }
    .icon-block h3 {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .icon-block {
        padding: 22px;
    }
    .icon-block h3 {
        font-size: 18px;
    }
}
.icon-block .link {
    position: static;
    transform: none;
    width: auto;
    padding: 0;
    margin-top: 12px;
}
.icon-block .link i {
    font-size: 13px;
    margin-bottom: 0;
    color: inherit;
}
.icon-block i {
    font-size: 34px;
    color: var(--blue);
    margin-bottom: 12px;
}

/* ===== Investor Resources cards ===== */
.resources.res-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1000px) {
    .resources.res-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .resources.res-cards {
        grid-template-columns: 1fr;
    }
}
.res-cards .icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px 26px;
    border: 1px solid var(--line);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.res-cards .icon-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.res-cards .icon-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(8, 29, 58, 0.10);
    border-color: transparent;
}
.res-cards .icon-block:hover::before {
    transform: scaleX(1);
}
.res-cards .icon-block > i {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(22, 64, 168, 0.08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 0 0 16px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.res-cards .icon-block:hover > i {
    background: var(--blue);
    color: #fff;
    transform: scale(1.06);
}
.res-cards .icon-block h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy2);
    margin: 0 0 10px;
    line-height: 1.35;
}
.res-cards .icon-block .link {
    margin-top: auto;
}

.icon-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.icon-row.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
/* ===== Infographic timeline ===== */
.timeline-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 130px 0 120px;
}

.timeline {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

/* the wavy connecting path; diamonds sit on its zero-crossings */
.timeline::after{
    content:"";
    position:absolute;
    top:50%;
    left:8.33%;
    right:8.33%;
    height:44px;
    transform: translateY(-50%);
    z-index:0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 50 Q100 22 200 50 Q300 78 400 50 Q500 22 600 50 Q700 78 800 50 Q900 22 1000 50' fill='none' stroke='%23c2ccdd' stroke-width='4' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* goal / target at the end of the journey */
.timeline-goal {
    flex-shrink: 0;
    text-align: center;
    position: relative;
    padding-left: 14px;
}
.timeline-goal .bullseye {
    display: block;
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: radial-gradient(circle,
        #7a1c15 0 9%,
        #c0392b 9% 22%,
        #fff 22% 35%,
        #c0392b 35% 48%,
        #fff 48% 61%,
        #c0392b 61% 74%,
        #fff 74% 86%,
        #c0392b 86% 100%);
    box-shadow: 0 12px 26px rgba(192, 57, 43, 0.30);
}
.timeline-goal b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy2);
    margin-bottom: 3px;
}
.timeline-goal small {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.tl{
    position:relative;
    z-index:2;
    flex:1;
    display:flex;
    justify-content:center;
}

/* diamond badge */
.tl i{
    width: 58px;
    height: 58px;
    border-radius: 14px;
    transform: rotate(45deg);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(8, 29, 58, 0.18);
    transition: transform .28s ease, box-shadow .28s ease;
}
/* keep the glyph upright inside the rotated diamond */
.tl i::before{
    display:block;
    transform: rotate(-45deg);
}
.tl:hover i{
    transform: rotate(45deg) scale(1.08);
    box-shadow: 0 14px 28px rgba(8, 29, 58, 0.28);
}

/* alternating diamond colours */
.tl:nth-child(1) i{ background: linear-gradient(135deg,#e0564f,#c0392b); }
.tl:nth-child(2) i{ background: linear-gradient(135deg,#efa14b,#e2860f); }
.tl:nth-child(3) i{ background: linear-gradient(135deg,#3bb7b1,#2a8f8a); }
.tl:nth-child(4) i{ background: linear-gradient(135deg,#4bb57a,#2f8f5b); }
.tl:nth-child(5) i{ background: linear-gradient(135deg,#4b8fd1,#2f6f9e); }
.tl:nth-child(6) i{ background: linear-gradient(135deg,#7a6fd1,#574aa8); }

/* the year + description block, centred over each node */
.tl-info{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:140px;
    text-align:center;
}
/* dashed connector between diamond and text */
.tl-info::after{
    content:"";
    position:absolute;
    left:50%;
    width:0;
    height:34px;
    border-left:2px dotted #c2ccdd;
    transform:translateX(-50%);
}
/* odd nodes: text above */
.tl:nth-child(odd) .tl-info{ bottom: calc(50% + 55px); }
.tl:nth-child(odd) .tl-info::after{ top: 100%; }
/* even nodes: text below */
.tl:nth-child(even) .tl-info{ top: calc(50% + 55px); }
.tl:nth-child(even) .tl-info::after{ bottom: 100%; }

.tl b {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy2);
    margin-bottom: 4px;
}
.tl small{
    display:block;
    color: var(--muted);
    line-height:1.45;
    font-size: 12.5px;
    padding: 0 4px;
}

.leaders {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.leaders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.leader {
    background: #fff;
    border: 1.5px solid #d0e1fd;
    border-radius: 16px;
    text-align: center;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(8,29,58,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.leader:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(22,64,168,0.06);
    border-color: #a3c7fc;
}
.leader .avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.leader .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader h4 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 0 0 4px;
}
.leader .designation {
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    color: #718096;
    margin-bottom: 20px;
}
.leader .bio {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5568;
    text-align: left;
    margin: 0;
}
.leader .bio p {
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 13.5px;
    line-height: 1.7;
}
.leader .bio p:last-child {
    margin-bottom: 0;
}
.footer {
    /* background: radial-gradient(circle at 60% 20%, #0d3d82, #07162d 60%); */
    background: url('../images/Footerbg.png');
    color: #fff;
    padding: 38px 0 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 34px;
}
.footer h4 {
    font-size: 15px;
    margin: 0 0 14px;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer li,
.footer p,
.footer a {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
}
.footer p {
    margin-top: 20px;
}
.social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none !important;
}
.social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(8, 29, 58, 0.20);
}
.social a i {
    color: #fff !important;
    font-size: 15px;
}
.social a:has(.fa-facebook-f) { background: #1877f2; }
.social a:has(.fa-x-twitter) { background: #000000; }
.social a:has(.fa-instagram) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social a:has(.fa-youtube) { background: #ff0000; }
.social a:has(.fa-linkedin-in) { background: #0a66c2; }

/* colorful social icons (Follow Us) */
.social-colored {
    gap: 14px;
}
.social-colored a {
    width: 40px;
    height: 40px;
    color: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}
.social-colored a i {
    color: #fff;
    font-size: 17px;
}
.social-colored a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(8, 29, 58, 0.20);
}
.social-colored a.s-fb { background: #1877f2; }
.social-colored a.s-x  { background: #000000; }
.social-colored a.s-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-colored a.s-yt { background: #ff0000; }
.social-colored a.s-in { background: #0a66c2; }
.bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 28px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.news-more-wrap {
    text-align: center;
    margin-top: 28px;
}
.thumb {
    height: 160px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, #07162d, #1f5bff);
    position: relative;
    overflow: hidden;
}
.thumb:after {
    content: "";
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, #ffc107, transparent 12%), linear-gradient(120deg, transparent, #d84dff);
    opacity: 0.75;
}
.thumb.has-img::after {
    display: none;
}
.news-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}
.news-card h3 {
    font-size: 16px;
    padding: 16px;
    margin: 0;
    line-height: 1.4;
}
.news-card small {
    display: block;
    padding: 0 16px 16px;
    color: #53617a;
}
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cdd5e5;
    border-radius: 6px;
    padding: 14px;
    font: inherit;
}
.full {
    grid-column: 1/-1;
}
.form-status {
    grid-column: 1/-1;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
.form-status:empty {
    display: none;
}
.form-status.is-ok {
    color: #1a7f37;
}
.form-status.is-error {
    color: var(--red);
}
.resources {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.job-grid,
.benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #07162d, #082d6b);
    color: #fff;
    border-radius: 12px;
    padding: 26px 34px;
}
.mobile-menu {
    display: none;
}
.brands-awards{
    padding:10px 0;
    /* background:#f8f8f8; */
}

.brands-awards .container{
    display:flex;
    flex-direction:column;
    gap:40px;
    align-items:stretch;
}
.hero .container h3{
    margin-top: 50px;
    margin-bottom: 80px;
}

.brand-section,
.award-section{
    flex:1;
    min-width:500px;
}

.brand-section h2,
.award-section h2{
    font-size:22px;
    color:#17336d;
    margin-bottom:25px;
    position:relative;
    font-weight:700;
}

.brand-section h2::after,
.award-section h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:4px;
    background:#f9b000;
    border-radius:20px;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}
.brand-slider .brand-card {
    margin: 10px 8px;
}
@media (min-width:1200px){
    .brand-grid{
        grid-template-columns:repeat(10,1fr);
    }
}


.award-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.brand-card,
.award-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    min-height:110px;
    padding:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    transition:.3s;
}

.brand-card:hover,
.award-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.brand-card img{
    max-width:90px;
    max-height:50px;
    object-fit:contain;
}

.award-card img{
    max-width:250px;
    max-height:140px;
    object-fit:contain;
}

.award-card p{
    margin-top:10px;
    font-size:13px;
    text-align:center;
    line-height:1.4;
    color:#333;
}
.small-title {
    color: var(--blue2);
    /* font-size: 17px; */
    font-weight: bold;
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1380px;
    }
}
@media (max-width: 1400px) and (min-width: 1000px) {
    .verticals-slider .slick-slide > div {
        padding: 0 10px;
    }
    .verticals-slider .card {
        max-width: 220px!important;
    }
}

@media (min-width: 545px) and (max-width: 1399px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95%;
    }
}
@media (max-width: 1180px) {
    .nav-links {
        gap: 15px;
    }
}
@media (max-width: 1100px) and (min-width: 768px) {
    .feature:nth-child(2), .feature:nth-child(4) {
        border-right: 0;
    }
}
@media (max-width: 1100px) {
    .hamb {
        display: block;
    }
    .nav-links,
    .nav-actions .btn-yellow {
        display: none;
    }
    .nav-inner {
        justify-content: space-between;
    }
    .brand {
        min-width: auto;
    }
    .hero {
        min-height: 520px;
    }
    .hero-art {
        width: 100%;
        opacity: 0.35;
    }
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .features,
    .icon-row,
    .resources {
        grid-template-columns: repeat(2, 1fr);
    }
    .leaders,
    .job-grid,
    .benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-menu.show {
        display: flex;
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 30;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }
    .mobile-menu a {
        padding: 14px;
        font-weight: 800;
        border-bottom: 1px solid #eee;
    }
}
@media(max-width:991px){

    .brand-section,
    .award-section{
        min-width:100%;
    }

    .brand-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .award-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .cards,
    .leaders,
    .job-grid,
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .resources {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width: 992px) {
    .news-sec .col-lg-7 {
        padding-left: 0;
        width: 50%;
    }
    .news-sec .col-lg-5 {
        width: 50%;
        padding-right: 0;
    }
    .milestones {
        position: relative;        
    }
    .milestones:before {
        content: '';
        border-left: 1px solid #dbe2ee;
        position: absolute;
        left: -15px;
        top: 0;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .rbnl {
        font-size: 32px;
    }
    .brand small {
        font-size: 9px;
    }
    .hero .container {
        padding: 42px 15px;
    }
    .hero h1 {
        font-size: 31px;
    }
    .hero p {
        font-size: 15px;
    }
    .stats {
        gap: 14px;
    }
    .stat {
        width: 48%;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 0 12px;
    }
    .cards,
    .mini-grid,
    .features,
    .icon-row,
    .leaders,
    .news-grid,
    .resources,
    .job-grid,
    .benefits {
        grid-template-columns: 1fr;
    }
    .feature {
        border-right: 0;
    }
    .dark-panel h2.title + p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .timeline-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        margin: 24px 0;
    }
    .timeline {
        flex-direction: column;
        gap: 26px;
        padding-left: 52px;
    }
    .timeline::after {
        top: 10px;
        bottom: 10px;
        left: 22px;
        right: auto;
        width: 4px;
        height: auto;
        transform: none;
        background: linear-gradient(180deg, #c9d4ea 0%, #dbe2ee 100%);
    }
    .timeline-goal {
        padding-left: 0;
    }
    .tl {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        flex: none;
    }
    .tl i {
        position: absolute;
        left: -52px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0;
        transform: rotate(45deg);
    }
    .timeline .tl .tl-info {
        position: static;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: auto;
        text-align: left;
    }
    .tl-info::after {
        display: none;
    }
    .tl b {
        margin: 0 0 2px 0;
        font-size: 15px;
    }
    .tl small {
        padding: 0;
        font-size: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form {
        grid-template-columns: 1fr;
    }
    .cta {
        flex-direction: column;
        text-align: center;
    }
    .bottom {
        font-size: 12px;
    }
    .section {
        padding: 26px 0;
    }
    .news-sec .sec-title {
        width: 100%;
        margin-bottom: 30px;
    }
    /* .news-sec .view-cta {
        width: 100%;
    } */
}
@media(max-width:576px){

    .brand-grid,
    .award-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width: 400px) {
    .innerList {
        flex-wrap: wrap;
    }
    .boxInner img {
        width: 100%;
        height: 150px;
    }
    .innerList::before {
        display: none;
    }
}
@media (max-width: 370px) {
    .stat {
        width: 100%;
    }
}

/* Mobile Dropdown Styling */
.mobile-dropdown {
    width: 100%;
}
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
}
.mobile-dropdown-menu {
    display: none;
    background: #fff;
    padding: 0 15px;
}
.mobile-sub-group {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-sub-group:last-child {
    border-bottom: none;
}
.mobile-sub-group-title {
    font-size: 13px;
    font-weight: 500;
    color: #718096;
    margin-bottom: 8px;
    padding: 0;
    text-transform: none;
}
.mobile-sub-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
.mobile-dropdown-menu a {
    padding: 6px 0 !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: #061947 !important;
    border-bottom: none !important;
    display: inline-block !important;
}
.mobile-dropdown-menu a:hover {
    color: #1a5299 !important;
    background: none !important;
}