:root {
    --navy: #061b45;
    --navy2: #092a68;
    --gold: #90c749;
    --text: #071b42;
    --muted: #5d6475;
    --light: #f7f8fb;
    --white: #fff;
}
* {
    box-sizing: border-box;
}
body {
    font-family: Inter, Arial, sans-serif;
    margin: 0;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}
.container {
    max-width: 1180px;
}
.main-nav {
    height: 86px;
    background: rgba(3, 20, 54, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.35s;
}
.main-nav.scrolled {
    height: 74px;
    background: #061b45;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}
.nav-inner {
    max-width: 1320px;
}
.logo {
    line-height: 0.85;
    letter-spacing: 2px;
}
.logo span {
    display: block;
    font-size: 43px;
    font-family: Georgia, serif;
}
.logo small {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
}
.navbar .nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 14px;
}
.navbar .nav-link:hover {
    color: var(--gold);
}
.navbar-toggler {
    background: #fff;
}
.dropdown-menu {
    border: 0;
    border-radius: 2px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}
.btn {
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
}
.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
}
.btn-gold:hover {
    background: #c99942;
    border-color: #c99942;
    color: #071b42;
    transform: translateY(-2px);
}
.btn-outline-white {
    border: 1.5px solid #fff;
    color: #fff;
    background: transparent;
}
.btn-outline-white:hover {
    background: #fff;
    color: #071b42;
}
.btn-navy {
    background: var(--navy);
    color: #fff;
}
.hero {
    position: relative;
    background: #061b45;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(3, 20, 55, 0.98) 0%,
            rgba(5, 26, 63, 0.94) 42%,
            rgba(5, 26, 63, 0.45) 54%,
            rgba(5, 26, 63, 0.12) 100%
        ),
        radial-gradient(circle at 12% 20%, rgba(19, 69, 154, 0.9), transparent 38%);
}
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
}
.hero-row {
    min-height: 620px;
    padding-top: 86px;
}
.hero-left {
    padding-left: 82px;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.eyebrow,
.section-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--gold);
    margin-bottom: 18px;
}
.hero h1 {
    font-size: 58px;
    line-height: 1.07;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1.8px;
}
.hero-text {
    color: #fff;
    font-size: 17px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}
.compliance {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
.compliance i {
    color: var(--gold);
    margin-right: 8px;
}
.hero-right {
    min-height: 620px;
    position: relative;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stat-card {
    position: absolute;
    left: -96px;
    width: 188px;
    min-height: 80px;
    background: #0a2b68;
    color: #fff;
    border-radius: 10px;
    padding: 12px 18px 12px 62px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-card i {
    position: absolute;
    left: 16px;
    top: 34px;
    color: var(--gold);
    font-size: 25px;
}
.stat-card strong {
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}
.stat-card span {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
}
.stat-one {
    top: 105px;
}
.stat-two {
    top: 200px;
}
.stat-three {
    top: 295px;
}
.trust-section {
    position: relative;
    z-index: 5;
    background: #fff;
}
.trust-container {
    margin-top: -57px;
}
.trust-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 17px 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    border-right: 1px solid #ddd;
}
.trust-item:last-child {
    border-right: 0;
}
.trust-item i {
    font-size: 36px;
    color: #707788;
}
.trust-item span {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}
.about-section {
    padding: 95px 0 70px;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #fafafa 100%);
}
.founder-frame {
    position: relative;
    border-left: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    padding-left: 12px;
    padding-bottom: 12px;
}
.founder-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-section h2 {
    font-size: 38px;
    line-height: 1.04;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}
.about-section p {
    color: #333d4e;
    line-height: 1.65;
    max-width: 560px;
}
.check-list {
    list-style: none;
    margin: 22px 0 28px;
    padding: 0;
}
.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #333d4e;
}
.check-list li:before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
}
.services-section {
    padding: 52px 0 70px;
    background: #fff;
}
.section-heading {
    margin-bottom: 26px;
}
.section-heading h2,
.process-section h2,
.insights-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}
.gold {
    color: var(--gold);
}
.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 8px;
    padding: 25px 31px;
    box-shadow: 0 10px 30px rgba(15, 35, 75, 0.08);
    transition: 0.35s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(15, 35, 75, 0.14);
}
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}
.navy {
    background: var(--navy);
}
.gold-bg {
    background: var(--gold) !important;
    color: #fff;
}
.service-card h3 {
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}
.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-card li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 800;
}
.why-bar {
    background: linear-gradient(90deg, #061b45, #082a66);
    padding: 24px 0 30px;
    color: #fff;
}
.why-title {
    text-align: center;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.3px;
    font-weight: 800;
    margin-bottom: 18px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
    min-height: 82px;
}
.why-item i {
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
}
.why-item h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}
.why-item p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    color: #fff;
}
.no-border {
    border-right: 0;
}
.process-section {
    padding: 36px 0 54px;
    background: #fbfbfc;
}
.process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin-top: 34px;
}
.process-line:before {
    content: "";
    position: absolute;
    height: 2px;
    border-top: 2px dotted #24426e;
    left: 10%;
    right: 10%;
    top: 38px;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 18px;
}
.circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 8px #fbfbfc;
}
.process-step h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 12.5px;
    line-height: 1.35;
    color: #313949;
    margin: 0;
}
.insights-section {
    padding: 38px 0 72px;
    background: #fff;
}
.section-heading-left {
    margin-bottom: 24px;
}
.view-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}
.blog-card {
    display: block;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 35, 75, 0.1);
    transition: 0.35s;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 35, 75, 0.15);
}
.blog-card img {
    height: 125px;
    width: 100%;
    object-fit: cover;
}
.blog-card span {
    display: inline-block;
    background: var(--gold);
    color: #071b42;
    font-size: 11px;
    font-weight: 800;
    border-radius: 3px;
    padding: 10px;
    position: relative; margin:10px
}

.blog-card a {
    display: block;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 0 14px 18px;
}
.mobile-slider {
    display: none;
}
.footer {
    background: #061b45;
    color: #fff;
    padding: 55px 0;
}
.footer h3 {
    font-family: Georgia, serif;
    font-size: 42px;
}
.footer h5 {
    font-size: 15px;
    font-weight: 800;
}
.footer a {
    display: block;
    color: #dfe6f4;
    margin: 8px 0;
    text-decoration: none;
    font-size: 14px;
}
.footer p {
    color: #dfe6f4;
    font-size: 14px;
}
@media (max-width: 1200px) {
    .hero-left {
        padding-left: 35px;
    }
    .stat-card {
        left: -50px;
    }
    .hero h1 {
        font-size: 50px;
    }
}
@media (max-width: 991px) {
    .main-nav {
        height: auto;
    }
    .hero-row {
        min-height: auto;
        padding-top: 100px;
    }
    .hero-left {
        padding: 70px 24px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-right {
        min-height: 360px;
    }
    .stat-card {
        display: none;
    }
    .trust-container {
        margin-top: 20px;
    }
    .trust-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .trust-item {
        border-right: 0;
        border-bottom: 1px solid #eee;
        padding: 20px;
    }
    .about-section {
        padding: 70px 0;
    }
    .founder-frame img {
        height: 360px;
    }
    .why-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        padding: 22px 15px;
    }
    .process-line {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .process-line:before {
        display: none;
    }
    .desktop-grid {
        display: none;
    }
    .mobile-slider {
        display: block;
        padding-bottom: 45px;
    }
    .blogSwiper .swiper-slide {
        height: auto;
    }
}
@media (max-width: 575px) {
    .logo span {
        font-size: 30px;
    }
    .hero h1 {
        font-size: 34px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .trust-box {
        grid-template-columns: 1fr;
    }
    .about-section h2 {
        font-size: 30px;
    }
    .section-heading-left {
        display: block !important;
    }
    .services-section,
    .insights-section {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Fixed NSE / BSE bottom ticker */
body {
    padding-bottom: 46px;
}
.market-ticker {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 46px;
    background: #061b45;
    color: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(216, 173, 91, 0.45);
    overflow: hidden;
}
.ticker-label {
    height: 100%;
    min-width: 135px;
    background: var(--gold);
    color: #061b45;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.ticker-label:after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 16px solid var(--gold);
}
.ticker-marquee {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 38px;
    padding-left: 42px;
    animation: tickerScroll 32s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}
.ticker-track strong {
    color: #fff;
    font-weight: 900;
}
.ticker-track em {
    font-style: normal;
    font-weight: 800;
    font-size: 13px;
}
.ticker-track .up {
    color: #27d17f;
}
.ticker-track .down {
    color: #ff5c6c;
}
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 575px) {
    body {
        padding-bottom: 42px;
    }
    .market-ticker {
        height: 42px;
    }
    .ticker-label {
        min-width: 96px;
        font-size: 12px;
    }
    .ticker-label:after {
        right: -14px;
        border-top-width: 21px;
        border-bottom-width: 21px;
        border-left-width: 14px;
    }
    .ticker-track {
        gap: 24px;
        padding-left: 32px;
        animation-duration: 24s;
    }
    .ticker-track span {
        font-size: 12px;
    }
}

/* Testimonials */
.testimonial-section {
    padding: 46px 0 50px;
    background: #f7f8fb;
    position: relative;
    overflow: hidden;
}
.testimonial-section .section-heading {
    margin-bottom: 22px;
}
.testimonial-section .section-kicker {
    color: var(--navy);
    margin-bottom: 0;
}
.testimonial-wrap {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 54px 28px;
}
.testimonialSwiper {
    padding: 8px 4px 36px;
}
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    min-height: 166px;
    padding: 26px 28px 22px;
    box-shadow: 0 12px 32px rgba(15, 35, 75, 0.08);
    border: 1px solid #edf0f5;
    height: 100%;
}
.testimonial-card .quote-icon {
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.testimonial-card p {
    color: #2e3544;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 14px;
}
.testimonial-card h5 {
    color: var(--text);
    font-size: 13.5px;
    font-weight: 800;
    margin: 0;
}
.testimonial-card span {
    color: #26334f;
    font-size: 12.5px;
    display: block;
}
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 5;
    color: #7a8192;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s;
}
.testimonial-arrow:hover {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(15, 35, 75, 0.1);
}
.testimonial-prev {
    left: 0;
}
.testimonial-next {
    right: 0;
}
.testimonial-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    opacity: 0.35;
    background: var(--navy);
}
.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--navy);
}

/* CTA */
.cta-section {
    position: relative;
    padding: 0;
    background: #061b45;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 27, 69, 0.96), rgba(6, 27, 69, 0.86)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80")
            center/cover;
    opacity: 1;
}
.cta-box {
    position: relative;
    z-index: 2;
    min-height: 136px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #fff;
}

.cta-box p {
    font-size: 17px;
    margin: 0;
    color: #f3f7ff;
}
.cta-btn {
    white-space: nowrap;
    min-width: 278px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}
@media (max-width: 991px) {
    .testimonial-wrap {
        padding: 0 0 30px;
    }
    .testimonial-arrow {
        display: none;
    }
    .cta-box {
        min-height: auto;
        padding: 38px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-box h2 {
        font-size: 26px;
    }
    .cta-btn {
        min-width: auto;
        width: 100%;
    }
}

.inner-hero {
    padding: 120px 0 90px;
    background: linear-gradient(135deg, #061b2d, #0b3552);
    color: #fff;
}

.inner-hero h1 {
    font-size: 56px;
    font-weight: 700;
    max-width: 850px;
}

.inner-hero p {
    max-width: 720px;
    font-size: 18px;
    opacity: 0.9;
}

.sub-title {
    display: inline-block;
    color: #90c749;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.about-main h2,
.values-section h2,
.founder-section h2 {
    font-weight: 700;
    color: #08243a;
}

.about-list {
    padding: 0;
    margin-top: 20px;
    list-style: none;
}

.about-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.about-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90c749;
    font-weight: 700;
}

.mv-card,
.value-card {
    height: 100%;
    padding: 35px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.value-card i{font-size:40px; color:#90c749}
.mv-card span {
    font-size: 42px;
    color: #90c749;
    font-weight: 700;
}

.mv-card h3,
.value-card h4 {
    color: #08243a;
    font-weight: 700;
    margin: 15px 0;font-size:18px
}

.mission-vision,
.values-section {
    background: #f7f8fa;
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #08243a, #0b3552);
    color: #fff;
    padding: 60px;
    border-radius: 30px;
}



.btn-main {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #90c749;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-main,
.btn-outline {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 50px;
    margin-right: 12px;
    text-decoration: none;
    font-weight: 700;
}

.btn-main {
    background: #90c749;
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-glass-card h4 {
    color: #90c749;
    margin-bottom: 20px;
}

.hero-glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-glass-card li {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-premium {
    padding: 100px 0;
    background: #f7f8fa;
}

.services-premium h2,
.process-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: #08243a;
}

.services-premium .text-center p {
    max-width: 720px;
    margin: auto;
    color: #666;
}

.premium-card {
    height: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.premium-card:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(201, 164, 92, 0.16);
    border-radius: 50%;
    top: -45px;
    right: -45px;
}

.premium-card:hover,
.premium-card.active {
    transform: translateY(-12px);
    background: #08243a;
    color: #fff;
}

.premium-card span {
    font-size: 44px;
    font-weight: 800;
    color: #90c749;
}

.premium-card h3 {
    font-size: 25px;
    font-weight: 800;
    margin: 18px 0 14px;
    color: #08243a;
}

.premium-card:hover h3,
.premium-card.active h3 {
    color: #fff;
}

.premium-card p {
    color: #666;
}

.premium-card:hover p,
.premium-card.active p {
    color: rgba(255, 255, 255, 0.82);
}

.premium-card ul {
    list-style: none;
    padding: 0;
    margin-top: 22px;
}

.premium-card li {
    padding: 9px 0 9px 26px;
    position: relative;
    font-weight: 500;
}

.premium-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90c749;
}

.process-section {
    padding: 100px 0;
    background: #fff;
}

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

.process-box {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #f5f6f8);
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.process-box b {
    color: #90c749;
    font-size: 32px;
}

.process-box h4 {
    color: #08243a;
    font-weight: 800;
    margin: 16px 0 10px; font-size:18px
}

.process-box p {
    color: #666;
    font-size: 15px;
}

@media (max-width: 991px) {
    .service-hero h1 {
        font-size: 42px;
    }

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

@media (max-width: 575px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 90px 0 70px;
    }

    .btn-main,
    .btn-outline {
        margin-bottom: 12px;
    }
}
.solution-suite {
    background: #fff;
}

.solution-suite h2,
.client-section h2 {
    font-weight: 700;
    color: #08243a;
}

.mini-service {
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: #f8f9fb;
    border: 1px solid #eee;
    transition: 0.35s ease;
}
.mini-service i{font-size:30px}
.mini-service:hover {
    background: #08243a;
    transform: translateY(-8px);
}

.mini-service h4 {
    font-size: 18px;
    font-weight: 700;
    color: #08243a;
    margin-bottom: 12px;
}

.mini-service p {
    color: #666;
    margin: 0;
}

.mini-service:hover h4,
.mini-service:hover p,
.mini-service:hover i
{
    color: #fff;
}

.client-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(201, 164, 92, 0.25), transparent 30%),
        linear-gradient(135deg, #061827, #0b2f4a);
    color: #fff;
}

.client-section h2 {
    color: #fff;
}

.client-section p {
    color: rgba(255, 255, 255, 0.78);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.client-grid div {
    padding: 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-weight: 600;
}

@media (max-width: 575px) {
    .client-grid {
        grid-template-columns: 1fr;
    }
}


.nri-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.nri-glass-card h4 {
    color: #90c749;
    margin-bottom: 20px;
}

.nri-glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nri-glass-card li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.nri-intro h2,
.invest-card h2,
.why-india-section h2 {
    font-weight: 700;
    color: #08243a;
}

.nri-intro .text-center p {
    max-width: 780px;
    margin: auto;
    color: #666;
}

.highlight-box {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.highlight-box h3 {
    color: #08243a;
    font-weight: 800;
}

.investment-tabs {
    background: #f7f8fa;
}

.invest-card {
    height: 100%;
    padding: 45px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.invest-card:before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.18);
    top: -50px;
    right: -50px;
}

.invest-card span {
    color: #90c749;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
}

.invest-card p {
    color: #666;
}

.invest-card ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.invest-card li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-weight: 500;
}

.invest-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90c749;
}

.why-india-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(201, 164, 92, 0.25), transparent 30%),
        linear-gradient(135deg, #061827, #0b2f4a);
    color: #fff;
}

.why-india-section h2 {
    color: #fff;
}

.why-india-section p {
    color: rgba(255, 255, 255, 0.78);
}

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

.india-grid div {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.india-grid h4 {
    color: #90c749;
    font-weight: 800;
}



@media (max-width: 575px) {
    .india-grid {
        grid-template-columns: 1fr;
    }
}

.btn-main {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 50px;
    background: #90c749;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.career-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.career-glass-card h4 {
    color: #90c749;
    margin-bottom: 20px;
}

.career-glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-glass-card li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.career-intro h2,
.culture-section h2,
.openings-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: #08243a;
}

.career-intro .text-center p {
    max-width: 780px;
    margin: auto;
    color: #666;
}

.career-box {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.career-box h3 {
    color: #08243a;
    font-weight: 800;
}

.culture-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #061827, #0b2f4a);
    color: #fff;
}

.culture-section h2 {
    color: #fff;
}

.culture-section p {
    color: rgba(255, 255, 255, 0.78);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.culture-grid div {
    padding: 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

.openings-section {
    background: #f7f8fa;
}

.job-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.job-card h3 {
    color: #08243a;
    font-weight: 800;
    margin-bottom: 6px;
}

.job-card p {
    margin: 0;
    color: #666;
}

.job-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background: #08243a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.career-cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #08243a, #0b3552);
    color: #fff;
    padding: 60px;
    border-radius: 30px;
}



@media (max-width: 991px) {
    .career-hero h1 {
        font-size: 42px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

.calculator-section {
    padding: 90px 0;
    background: #f7f8fa;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.calc-card {
    background: #fff;
    padding: 32px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.calc-card h3 {
    color: #08243a;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 22px;
}

.calc-card input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 14px; font-size:14px
}

.calc-card button {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 50px;
    background: #90c749;
    color: #fff;
    font-weight: 700;
    margin-top: 8px;
}

.calc-card h4 {
    margin-top: 22px;
    color: #08243a;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 991px) {
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-hero h1 {
        font-size: 38px;
    }
}
.leadership-team {
    padding: 100px 0;
    background: #f8f9fc;
}

.sub-title {
    color: #c8a35f;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}

.section-title {
    max-width: 800px;
    margin: auto;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0b233d;
    margin: 15px 0;
}

.section-title p {
    color: #666;
}

.leader-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-img {
    height: 340px;
    overflow: hidden;
    position: relative;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.leader-card:hover img {
    transform: scale(1.08);
}

.placeholder {
    background: linear-gradient(135deg, #0b233d, #15426a);
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 15px 35px;
    border-radius: 50px;
}

.leader-content {
    padding: 35px;
}

.leader-content h3 {
    color: #0b233d;
    font-size: 28px;
    margin-bottom: 8px;
}

.leader-content span {
    color: #c8a35f;
    font-weight: 600;
}

.leader-content p {
    margin: 20px 0;
    color: #666;
}

.leader-content ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.leader-content ul li {
    padding: 8px 0;
    color: #444;
}

.leader-content ul li:before {
    content: "✓";
    color: #c8a35f;
    margin-right: 10px;
}

.leader-content a {
    color: #0b233d;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }

    .leader-img {
        height: 280px;
    }
}
.blog-listing {
    padding: 90px 0;
    background: #f7f8fa;
}

.blog-card {
    height: 100%;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.blog-card:hover {
    transform: translateY(-10px);
}
.blog-card h3{padding:10px; font-size:18px}
.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 10px;
}

.blog-content span {
    font-size: 13px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 18px;
    color: #08243a;
    font-weight: 800;
    margin: 1px 0;
}

.blog-content p {color:#666; font-size:14px; padding:10px
}

.blog-meta {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-meta a {
    color: #08243a;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 575px) {
    .blog-hero h1 {
        font-size: 38px;
    }
}
.section-padding {
    padding: 100px 0;
}

.sub-title {
    color: #90c749;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.leadership-hero {
    padding: 120px 0 90px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #061827, #0b2f4a);
}

.leadership-hero h1 {
    font-size: 58px;
    font-weight: 800;
}

.leadership-hero p {
    max-width: 720px;
    margin: 18px auto 0;
    opacity: 0.85;
}

.main-leader-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 60px;
}


.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.leader-tags span {
    padding: 10px 18px;
    border-radius: 50px;
    background: #e5e5e5;
    color: #08243a;
    font-weight: 700;
    font-size: 14px;
}

.theme-btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 50px;
    background: #90c749;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.team-grid-section,
.principles-section {
    background: #f7f8fa;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 800;
    color: #08243a;
}

.team-card {
    height: 100%;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card div {
    padding: 28px;
}

.team-card h3 {
    color: #08243a;
    font-size: 18px;
    font-weight: 800;
}

.team-card span {
    color: #90c749;
    font-weight: 700;
}

.team-card p {
    margin-top: 14px;
}

.principle-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}
.principle-card i{font-size:40px; color:#90c749}
.principle-card:hover {
    background: #08243a;
    color: #fff;
    transform: translateY(-8px);
}

.principle-card h4 {
    color: #08243a;
    font-weight: 800;font-size:18px
}

.principle-card:hover h4 {
    color: #90c749;
}

.principle-card p {
    color: #666;
}

.principle-card:hover p {
    color: rgba(255, 255, 255, 0.82);
}

.leadership-cta {
    padding: 80px 0;
}

.cta-box {
    padding: 65px;
    border-radius: 32px;
    background: linear-gradient(135deg, #08243a, #0b3552);
    color: #fff;
}


.cta-box p {
    margin-bottom: 28px;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .leadership-hero h1 {
        font-size: 40px;
    }

    .main-leader-card {
        grid-template-columns: 1fr;
    }

    .leader-info {
        padding: 35px;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ffffff;
}
.dropdown-item{font-size:14px}
.contact-hero {
  padding: 110px 0;
  background: linear-gradient(rgba(5, 22, 38, 0.78), rgba(5, 22, 38, 0.78)),
              url('images/contact-hero.jpg') center/cover no-repeat;
  color: #fff;
}

.contact-hero h1 {
  max-width: 720px;
}

.contact-hero p {
  max-width: 650px;
}

.contact-section {
  padding: 90px 0;
  background: #f7f9fb;
}

.contact-info-box,
.contact-form-box {
  height: 100%;
  background: #fff;
  padding: 42px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-info-box h2 {
  margin-bottom: 18px;
}

.contact-info-box > p {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e9edf2;
}

.contact-item i {
  width: 46px;
  height: 46px;
  background: #0b2d4d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h5 {
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: #5d6875;
  text-decoration: none;
}

.contact-form-box h3 {
  margin-bottom: 8px;
}

.contact-form-box p {
  margin-bottom: 28px;
}

.contact-form-box label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
  background: #fff;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: #0b2d4d;
}

.contact-form-box .btn-primary {
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  background: #0b2d4d;
  color: #fff;
  font-weight: 600;
}

.map-section iframe {
  display: block;
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 80px 0;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 28px;
  }
}

.blog-detail{
    padding:100px 0;
}

.blog-image{
    position:sticky;
    top:120px;
}

.blog-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.blog-content p{
    line-height:1.9;
    margin-bottom:22px;
}

