/* ========================================
   CUSTOM CSS STYLING
   ======================================== */

/* Root Variables */
:root {
    --primary-color: #303765;
    --dark-color: #1a237e;
    --light-color: #f5f7fa;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* body.vacancies-page{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.vacancies-page .vacancies-section{
    flex: 1 0 auto;
    display: flex;
    align-items: center;
}

body.vacancies-page .footer-top{
    margin-top: auto;
} */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 28px;
    transition: var(--transition);
    border: none;
}
 .btn-common {
    background:#303765;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.7rem 2.2rem;
    border: 2px solid white;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    font-size: 0.93rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-common:hover {
    background: #efc23b;
    color: white;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.35);
    transform: translateY(-3px);
}

.btn-common2 {
    background:#ffffff;
    color: #303765;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.7rem 2.2rem;
    border: 2px solid white;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    font-size: 0.93rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-common2:hover {
    background: #efc23b;
    color: white;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.35);
    transform: translateY(-3px);
}

.btn-common2 .btn-arrow-up-right{
    width: 18px;
    height: 18px;
    display: inline-block;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-dark {
    background-color: #2c3e50;
    color: white;
}

.btn-dark:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar {
    /* background: linear-gradient(90deg, #2c3e7a 0%, #1a3a6e 50%, #303765 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); */
    /* background: linear-gradient(90deg, #2c3e7a 0%, #1a3a6e 50%, #303765 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); */
    padding: 0.6rem 0;
    transition: all 0.3s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    overflow: visible;
}

/* .navbar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 400px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50% 0 0 50%;
    pointer-events: none;
} */

.navbar.scrolled {
    padding: 1.2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(90deg, #2c3e7a 0%, #1a3a6e 50%, #303765 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.innernav{
    background: linear-gradient(90deg, #2c3e7a 0%, #1a3a6e 50%, #303765 100%);
}
/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
}

.logo-footer {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.62rem;
    font-weight: 500;
    margin-top: 1px;
    letter-spacing: 0.3px;
    line-height: 1;
}

.navbar-brand {
    margin-right: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 0;
    position: relative;
}

.navbar-brand:hover {
    opacity: 0.9;
}
.navbar-brand .mainlogo img {
    width: 200px;
}
a.navbar-brand:before {
    position: absolute;
    background: #ffffff;
    content: '';
    /* width: 345px;
    height: 115px; */
    width: 290px;
    height: 110px;
    left: -50px;
    border-radius: 0px 0px 50px 0px;
    box-shadow: 0 2px 16px 4px #dfdfdf;
    z-index: -1;
    top: -22px;
}
.navbar.scrolled a.navbar-brand:before{
    box-shadow: inherit;
}
/* Navigation Menu Container - Pill Shape */
.nav-menu-container {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #000000 !important;
    font-weight: 600;
    /* padding: 0.65rem 1.1rem !important; */
    padding: 0.65rem 0.7rem !important;
    position: relative;
    transition: all 0.3s ease-in-out;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 1.1rem;
    right: 1.1rem;
    height: 3px;
    background: #303765;
    border-radius: 2px;
    transform: scaleX(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: #303765 !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #303765 !important;
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 0.6rem 0;
    animation: slideDown 0.3s ease-in-out;
    /* margin-top: 0.5rem; */
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown:hover > .dropdown-toggle {
        color: #303765 !important;
    }

    .navbar .dropdown-menu:hover {
        display: block;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: #2c3e50;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}

.dropdown-item:hover {
    background: #f0f7ff;
    color: #303765;
    padding-left: 1.75rem;
}

.dropdown-item.active,
.dropdown-item:active {
    background: #e3f2fd;
    color: #303765;
}

/* Client Login Button */
.btn-login {
    background: white;
    color: #303765;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.7rem 2.2rem;
    border: 2px solid white;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    font-size: 0.93rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-login:hover {
    background: #efc23b;
    color: white;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.35);
    transform: translateY(-3px);
}

.btn-login.active {
    background: linear-gradient(135deg, #efc23b 0%, #d7a91d 100%);
    color: #ffffff;
    border-color: rgba(239, 194, 59, 0.35);
    box-shadow: 0 10px 24px rgba(239, 194, 59, 0.22);
}

.btn-login.active:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #f2cb4f 0%, #e0b728 100%);
}

.btn-login:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.btn-login:active {
    transform: translateY(-1px);
}

/* Mobile/Responsive Navbar */
.navbar-toggler {
    border: 2px solid white;
    padding: 0.25rem 0.6rem;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.navbar-toggler:hover {
    opacity: 0.9;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: contain;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
        background: linear-gradient(90deg, #2c3e7a 0%, #1a3a6e 50%, #303765 100%);
    }
    a.navbar-brand:before {
        background-color: inherit;
        box-shadow: inherit;
    }
    .navbar::after {
        display: none;
    }
    
    .logo-container {
        gap: 0.6rem;
    }
    
    .logo-box {
        width: 45px;
        height: 45px;
        border-width: 2.5px;
    }
    
    .logo-p {
        font-size: 1.5rem;
    }
    
    .logo-main {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }
    
    .logo-sub {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .logo-footer {
        font-size: 0.55rem;
    }
    
    .navbar-brand {
        margin-right: 0.5rem;
    }
    
    .nav-menu-container {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
        padding: 0.8rem 1rem;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.65rem 1rem !important;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: #f0f7ff;
        color: #303765 !important;
    }
    
    .btn-login {
        width: 100%;
        margin-top: 1rem;
        margin-left: 0 !important;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        background: #f8fafc;
        border: none;
        border-left: 3px solid #303765;
        box-shadow: none;
        margin: 0.5rem 0 0 1rem;
        padding: 0.5rem 0;
    }

    /* Mobile dropdown: keep Bootstrap's open state visible and stack it inline */
    .navbar .dropdown-menu {
        position: static;
        float: none;
        min-width: 0;
        width: calc(100% - 1rem);
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown.dropdown-open > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-item:hover {
        padding-left: 1rem;
        background: #e3f2fd;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
        background: linear-gradient(90deg, #2c3e7a 0%, #1a3a6e 50%, #303765 100%);
    }
    a.navbar-brand:before {
        background-color: inherit;
        box-shadow: inherit;
    }
    .logo-box {
        width: 42px;
        height: 42px;
        border-width: 2px;
    }
    
    .logo-p {
        font-size: 1.3rem;
    }
    
    .logo-main {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
    }
    
    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 0.4px;
    }
    
    .logo-footer {
        font-size: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-menu-container {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        margin-right: 0.3rem;
    }
    
    .logo-container {
        gap: 0.4rem;
    }
    
    .logo-box {
        width: 38px;
        height: 38px;
    }
    
    .logo-p {
        font-size: 1.1rem;
    }
    
    .logo-main {
        font-size: 0.7rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .logo-footer {
        font-size: 0.48rem;
    }
    
    .nav-menu-container {
        margin-top: 0.8rem;
        padding: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    /* background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%); */
    /* overflow: hidden; */
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-content .lead {
    color: #000;
    font-size: 1.2rem;
}
.hero-content .lead b {
    font-weight: 700;
}

.hero-image {
    border-radius: 20px;
    /* min-height: 620px; */
    min-height: 560px;
    display: flex;
    align-items: center;
    /* align-items: flex-start; */
    justify-content: center;
    position: relative;
}
.hero-image:before{
    position: absolute;
    background: #303765;
    content: '';
    width: 118%;
    height: 125%;
    right: -60px;
    border-radius: 200px 0px 200px 200px;
    box-shadow: 0 2px 16px 4px #dfdfdf;
    top: -140px;
    z-index: -1;
}
/* .hero-image img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
} */

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   WEALTH SECTION
   ======================================== */

.wealth-section {
    /* background-color: white; */
    padding: 4rem 0;
    position: relative;
}

.wealth-content {
    /* display: flex; */
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.wealth-heading {
    flex: 0 0 auto;
    min-width: 300px;
}

.wealth-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.wealth-stats-container {
    /* display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 80px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 12%);
    background: #F9FAFB; */
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}
.wealth-content .wealth-stats-container:before {
    content: '';
    background: #f9fafb;
    width: 65%;
    height: 130px;
    right: -70px;
    position: absolute;
    box-shadow: 0 4px 16px rgb(0 0 0 / 12%);
    padding: 2rem;
    border-radius: 80px 0px 0px 80px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 12%);
    background: #ffffff;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem 0.9rem;
    z-index: 9;
}

.stat-number {
    font-size: 1rem;
    font-weight: 800;
    color: #303765;
    line-height: 1.3;
    /* margin-bottom: 0.5rem; */
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.stat-number .counter {
    min-width: 2ch;
    text-align: center;
}

.stat-unit {
    letter-spacing: 0.4px;
}

.stat-label {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, #e0e0e0 50%, transparent 100%);
    margin: 0 0.5rem;
    z-index: 9;
}

/* Responsive Wealth Section */
@media (max-width: 1200px) {
    .wealth-content {
        gap: 2rem;
    }
    
    .wealth-stats-container {
        min-width: auto;
        flex-basis: 100%;
    }
    
    .wealth-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .wealth-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .wealth-heading {
        min-width: 100%;
    }
    
    .wealth-stats-container {
        min-width: 100%;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        margin: 0 0 0 0;
    }
    
    .wealth-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .wealth-section {
        padding: 3rem 0;
    }
    
    .wealth-stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1.5rem 1rem;
        gap: 0;
    }
    
    .stat-item {
        flex: 0 0 50%;
        padding: 1.5rem 0.75rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .wealth-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .wealth-section {
        padding: 2.5rem 0;
    }
    
    .wealth-stats-container {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
        padding: 1rem 0.5rem;
    }
    
    .wealth-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background-color: #ffffff;
    padding: 5rem 0;
}
.services-header {
    margin-bottom: 3rem;
}
.smalltitle{
    color: #222;
    border: 1px solid #222;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 999px;
    display: block;
    transition: 0.3s ease;
    margin: auto;
    text-align: center;
    width: 175px;
}
.services-title {
    font-size: 2.5rem;
    color: #000000;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.services-title .text-primary {
    color: #303765;
}

.service-card {
    background: linear-gradient(180deg, #f8f9fb 0%, #f5f7fa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 70px 0px 70px 70px;
    padding: 3rem 2rem 2.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    /* border-color: #303765; */
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    /* background: white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* box-shadow: 0 4px 12px rgba(21, 101, 192, 0.15); */
    transition: all 0.3s ease-in-out;
}
.service-icon-wrapper img {
    width: 100%;
}
.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    /* box-shadow: 0 6px 20px rgba(21, 101, 192, 0.25); */
}

.service-icon {
    font-size: 2.8rem;
    color: #303765;
    transition: all 0.3s ease-in-out;
}

.service-card:hover .service-icon {
    color: #303765;
}

.service-title {
    color: #303765;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Services Section */
@media (max-width: 1200px) {
    .services-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-header {
        margin-bottom: 2.5rem;
    }
    
    .service-card {
        padding: 2.25rem 1.5rem 1.75rem;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon {
        font-size: 2.4rem;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 2.5rem 0;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.25rem 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
}

/* ========================================
   CONSULTATION SECTION
   ======================================== */

/* .consultation-section {
    border-radius: 20px;
    margin: 4rem 2rem;
}

.consultation-badge {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .consultation-section {
        margin: 2rem 1rem;
        border-radius: 15px;
    }
    
    .consultation-badge {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
} */
.freeconsultion{
  background-color: #1F2756;  
  /* border-radius: 0px 150px 150px 0px; */
  border-radius: 0px 150px 150px 150px;
  position: relative;
  z-index: 9;
}
.finance-wrapper{
      background: #303765;
      border-radius: 0px 150px 166px 166px;
      overflow:hidden;
      color:#fff;
      transition:all .4s ease;
    }

    /* hover effect */
    /* .finance-wrapper:hover{
      transform:translateY(-6px);
    } */

    .finance-img{
      height:100%;
      object-fit:cover;
      /* border-radius:60px 0 0 60px; */
    }

    .finance-content{
      padding:60px;
    }

    .finance-content h2{
      font-weight:600;
      line-height:1.5;
    }

    .highlight{
      font-weight:700;
      letter-spacing:.5px;
    }

    .desc{
      color:#d7d7e7;
      font-size:16px;
      line-height:1.7;
    }

    /* button */
    .btn-read{
      background:#fff;
      color:#3a376a;
      border-radius:40px;
      padding:10px 26px;
      font-weight:600;
      transition:.3s;
    }

    .btn-read:hover{
      transform:scale(1.05);
    }

    /* badge */
    .since-badge{
      position:absolute;
      bottom:20px;
      right:-40px;
      width:150px;
      height:150px;
      background: linear-gradient(180deg, #dfead9 0%, #f3e7e0 100%);
      border-radius:50%;
      display:flex;
      flex-direction: column;
      align-items:center;
      justify-content:center;
      text-align:center;
      font-weight:800;
      color:#3a376a;
      border: 4px solid #ffffff;
      box-shadow: 0 12px 26px rgba(0,0,0,0.18);
      letter-spacing: 0.5px;
      line-height: 1.05;
      animation:pulse 3s infinite;
    }

    .since-badge span{
      font-size: 36px !important;
      font-weight: 900;
      line-height: 1;
    }

    /* pulse animation */
    @keyframes pulse{
      0%{transform:scale(1)}
      50%{transform:scale(1.05)}
      100%{transform:scale(1)}
    }

    /* bottom bar */
    .consult-bar {
        width: 990px;
        margin: auto;
    }
    .consult-bar{
      /* background:#1F2756; */
      padding:30px 40px 0px 40px;
      /* border-radius: 0px 00px 150px 150px; */
    }

    .consult-btn{
      border:1px solid #fff;
      color:#fff;
      border-radius:40px;
      padding:10px 26px;
      font-weight: 700;
      font-size: 15px;
      text-decoration:none;
      transition:.3s;
    }

    .consult-btn:hover{
      background:#fff;
      color:#3a376a;
    }
    .consult-bar h3 {
        color: #fff;
    }
    .consult-bar .phone a{
      font-size:22px;
      font-weight:600;
      color: #fff;
    }

    /* responsive */
    @media(max-width:767px){
      .finance-img{
        border-radius:30px 30px 0 0;
        height:260px;
      }

      .finance-wrapper{
        border-radius:30px;
      }

      .finance-content{
        padding:25px;
      }

      .consult-bar{
        text-align:center;
        width: 100%;
      }
    }


/* Image */
section.financial-lifecycle {
    border-radius: 0px 0px 150px 150px;
    background: #ffffff;
    position: relative;
    z-index: 9;
    padding: 20px 0px 60px;
}
.lifecycle-img{
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
}

/* Cards */
.info-card{
    background:#e9edf3;
    padding:28px;
    border-radius:18px;
    box-shadow:0 6px 16px rgba(0,0,0,.05);
}

.info-card h4{
    font-weight:700;
    margin-bottom:18px;
    color:#303765;
}

.info-card li{
    margin-bottom:10px;
    font-weight: 600;
    font-size:16px;
    color: #303765;
}

/* tagline */
.tagline{
    font-size:20px;
    font-weight:600;
    margin-top:40px;
    color: #000;
}

/* Mobile spacing */
@media(max-width:991px){
    .right-content{
        margin-top:40px;
    }
}

/* CSR Section */
.csr-section{
    background: #f7f9fc;
    padding-top: 10px;
}

.csr-card{
    background: #ffffff;
    border: 1px solid rgba(48, 55, 101, 0.10);
    border-radius: 22px;
    padding: 10px 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.csr-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
    border-color: rgba(48, 55, 101, 0.18);
}

.csr-card h4{
    font-size: 1.05rem;
    line-height: 1.4;
    color: #1f2554;
    width: 100%;
}

.csr-card a{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #303765;
    font-weight: 700;
    word-break: break-word;
}

.csr-card a:hover{
    color: #1f2554;
}

@media (max-width: 767px){
    .csr-card{
        padding: 22px 18px;
        border-radius: 18px;
    }

    .csr-card h4{
        font-size: 1rem;
    }
}



.life-hero-section .nav-link.active{
    color: #ffffff !important;
}
.life-hero-section .nav-link::after{
    height: 2px;
    background: #ffffff;
}

/* ========================================
   APP SECTION
   ======================================== */

.app-section {
    background-color: #f5f7fa;
}

.app-section h2 {
    color: var(--text-dark);
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.app-section h3 {
    color: var(--primary-color);
}

.app-section img {
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Section ---------- */
.blog-section{
  padding:270px 0px 50px;
  text-align:center;
  background: #F3F8FD;
  margin-top: -210px;
}

/* badge */
.insight-pill{
  display:inline-block;
  padding:10px 40px;
  border:1px solid #bfc5cf;
  border-radius:50px;
  font-size:16px;
  background:#f2f4f7;
  margin-bottom:25px;
}

/* heading */
.main-heading{
  /* font-size:48px;
  font-weight:700; */
  font-size: 2.5rem;
  margin-bottom:60px;
  color: #000000;
}

.main-heading span{
  color:#303765;
}

/* ---------- Swiper ---------- */

/* ---------- Card ---------- */
.blog-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
  height:100%;
}

.blog-card:hover{
  transform:translateY(-6px);
}

/* image */
.blog-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

/* content */
.blog-content{
  padding:22px;
  text-align:left;
}

.blog-date{
  font-size:13px;
  color:#1d1d1d;
  margin-bottom:10px;
}

.blog-title{
  font-weight:600;
  font-size:17px;
  margin-bottom:10px;
  color: #000000;
}

.blog-desc{
  font-size:16px;
  color:#1d1d1d;
  margin-bottom:18px;
}

/* read more */
.read-more{
  color:#303765;
  font-weight:600;
  text-decoration:none;
}

.read-more:hover{
  text-decoration:underline;
}

/* pagination */
.swiper-pagination-bullet{
  background:#c7ccd6;
  opacity:1;
}

.swiper-pagination-bullet-active{
  background:#303765;
  width:28px;
  border-radius:10px;
}
.swiper.blogSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}
/* ---------- Responsive ---------- */
@media(max-width:768px){
  .main-heading{
    font-size:32px;
  }
}

.faq-section{
  /* padding:90px 0; */
    background: #fff;
    border-radius: 200px;
    padding: 70px 60px 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

/* ---------------- Container Card ---------------- */
.faq-card{
  /* background:#fff;
  border-radius:40px; */
  padding:0px 60px 0px;
  /* box-shadow:0 20px 40px rgba(0,0,0,0.08); */
}

/* ---------------- Badge ---------------- */
.faq-badge{
  display:inline-block;
  padding:10px 40px;
  border:1px solid #c5cbd4;
  border-radius:50px;
  font-size:16px;
  margin-bottom:25px;
}

/* ---------------- Heading ---------------- */
.faq-title{
  font-size:44px;
  font-weight:700;
  margin-bottom:50px;
  color:#141a36;
}

/* ---------------- Accordion ---------------- */
.accordion-item{
  border:none;
  border-bottom:1px solid #d8dde6;
}

.accordion-button{
  padding:22px 25px;
  font-size:18px;
  font-weight:600;
  color:#3b3f75;
  background:#fff;
  box-shadow:none;
}

.accordion-button:not(.collapsed){
  background:#f2f4fb;
  border-radius:40px 0px 40px 40px !important;
}

.accordion-button::after{
  font-size:20px;
  transform:rotate(0deg);
  transition:0.3s;
}

.accordion-button:not(.collapsed)::after{
  transform:rotate(180deg);
}

.accordion-body{
  padding:0 25px 20px;
  /* color:#6c757d; */
  color: rgb(29, 29, 29);
  animation:fadeIn 0.4s ease;
}
.accordion-body p {
    margin-bottom: 0.3rem;
}
.accordion-item .accordion-collapse {
    margin-top: 20px;
}
/* ---------------- Button ---------------- */
.view-btn{
  margin-top:50px;
}

.view-btn a{
  background:#3b3f75;
  color:#fff;
  padding:14px 45px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:0.3s;
}

.view-btn a:hover{
  background:#2c305f;
}
.dropdown-toggle::after{
    border-top: 0em solid;
}

/* ---------------- Animation ---------------- */
@keyframes fadeIn{
  from{opacity:0; transform:translateY(-5px);}
  to{opacity:1; transform:translateY(0);}
}

/* ---------------- Responsive ---------------- */
@media(max-width:768px){
  .faq-card{
    padding:40px 25px 50px;
    border-radius:25px;
  }

  .faq-title{
    font-size:30px;
  }

  .accordion-button{
    font-size:16px;
  }
}

/* Wrapper */
.testimonial-wrapper{
  background:#1F2756;
  border-radius:200px 0px 200px 200px;
  padding:50px 80px;
  color:#fff;
  margin:0px auto;
}

/* title */
.section-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:40px;
}

/* text */
.quote{
  font-size:38px;
  /* opacity:.6; */
  color: #ffffff;
}

.testimonial-text{
  font-size:16px;
  line-height:1.8;
  opacity:.9;
  margin:20px 0;
}

.author{
  /* display:flex; */
  align-items:center;
  gap:12px;
}

.author img{
  width:45px;
  height:45px;
  border-radius:50%;
}

/* image */
.testimonial-img{
  width:100%;
  border-radius:25px;
  height:320px;
  object-fit:cover;
}

/* dots */
.swiper-pagination{
  margin-top:30px;
  position:relative;
}

.swiper-pagination-bullet{
  background:#a9abff;
  opacity:.4;
}

.swiper-pagination-bullet-active{
  background:#fff;
  width:25px;
  border-radius:10px;
}

/* responsive */
@media(max-width:768px){
  .testimonial-wrapper{
    padding:40px 25px;
    border-radius:35px;
  }
  .testimonial-img{
    height:220px;
    margin-top:20px;
  }
}

/* ================= CTA ================= */
.cta-title{
  font-size:20px;
  font-weight:700;
  margin-top:60px;
}

.cta-info{
  font-size:16px;
  line-height:1.7;
  opacity:0.9;
}
.cta-info a{
  color: #ffffff;
}

/* input */
.newsletter{
  max-width: 420px;
  width: 100%;
}

.newsletter form{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px 8px 6px 16px;
  /* background: rgba(255, 255, 255, 0.08); */
  backdrop-filter: blur(6px);
}

.newsletter input{
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 10px 6px;
  outline: none;
}

.newsletter input::placeholder{
  color: A6A6A6;
}

.newsletter button{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #1F2756;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter button .newsletter-arrow{
  width: 18px;
  height: 18px;
  display: inline-block;
}

.newsletter button:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px){
  .newsletter form{
    padding: 6px 6px 6px 12px;
  }
  .newsletter button{
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .newsletter input{
    font-size: 0.9rem;
  }
  .btn-common2{display: block;}
}
.amfi-logo{
  width:40px;
  flex-shrink:0;
}
@media(max-width:576px){
  .cta-info{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .testimonial-wrapper{
    padding:50px 30px;
    border-radius:40px;
  }
  .testimonial-title{
    font-size:28px;
  }
}

/* ================= Footer Bar ================= */
.footer-top{
  background:#ffffff;
  padding:20px 0;
  font-size:13px;
}

/* left text */
.footer-top .designer{
  color:#000;
}

/* links */
.footer-top a{
  color:#020E56;
  text-decoration:none;
  margin:0 10px;
  font-weight:500;
  transition:0.3s;
}

.footer-top a:hover{
  color:#000;
  text-decoration:underline;
}

img.footer-logo {
    width: 140px;
    background: #fff;
    padding: 10px;
    margin-bottom: 5px;
}
p.cta-info span {
    color: #b9b9b9;
}

/* whatsapp */
.Whts {
  position: fixed;
  z-index: 9;
	bottom: 25px;
	right: 30px;
  /* width: 55px; */
}
.Whts img {
  width: 45px;
}

/* ================= Responsive ================= */
@media(max-width:768px){
  .footer-top{
    text-align:center;
  }
  .footer-links{
    margin-top:8px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hover-shadow {
    transition: var(--transition);
}

.hover-shadow:hover {
    box-shadow: var(--shadow-lg) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: #f5f7fa !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1, .h1, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h2, .h2 {
        font-size: 1.5rem;
    }
    
    h3, .h3 {
        font-size: 1.25rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .d-flex.flex-sm-row {
        flex-direction: column;
    }
    
    .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}

/* ========================================
   RESPONSIVE OVERRIDES
   ======================================== */

@media (max-width: 1200px) {
    .hero-image {
        min-height: 520px;
    }

    .hero-image:before {
        width: 105%;
        height: 700px;
        right: -20px;
        top: -110px;
    }

    .consult-bar {
        width: 100%;
        max-width: 100%;
    }

    .blog-section {
        padding: 220px 0px 50px;
        margin-top: -170px;
    }

    section.app-section {
        margin-top: -120px;
        border-radius: 0px 0px 180px 180px;
        padding: 90px 0px 0px;
    }

    .progress-section {
        padding: 120px 0px 0 40px;
        margin-top: -110px;
    }
}

@media (max-width: 991px) {
    a.navbar-brand:before {
        width: 240px;
        height: 95px;
        left: -30px;
        top: -8px;
    }

    .hero-image {
        min-height: 460px;
    }

    .hero-image:before {
        width: 100%;
        height: 600px;
        right: 0;
        top: -90px;
        border-radius: 160px 0px 160px 160px;
    }

    .wealth-content .wealth-stats-container:before {
        display: none;
    }

    .wealth-stats-container {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 24px;
        box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
    }

    .consult-bar {
        padding: 20px 10px 0px 10px;
    }

    .since-badge {
        right: 10px;
        bottom: 10px;
        width: 120px;
        height: 120px;
    }

    .since-badge span {
        font-size: 30px !important;
    }

    .faq-section {
        padding: 55px 35px 65px;
        border-radius: 120px;
    }

    .testimonial-wrapper {
        padding: 45px 35px;
        border-radius: 120px 0px 120px 120px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 420px;
    }

    .hero-image:before {
        height: 480px;
        top: -70px;
        border-radius: 120px 0px 120px 120px;
    }

    .blog-section {
        padding: 160px 0px 45px;
        margin-top: -120px;
    }

    section.app-section {
        margin-top: -90px;
        border-radius: 0px 0px 150px 150px;
        padding: 80px 0px 0px;
    }

    .progress-section {
        padding: 90px 0px 0 20px;
        margin-top: -80px;
        border-radius: 0px 0px 120px 120px;
    }

    .faq-section {
        padding: 45px 25px 55px;
        border-radius: 70px;
    }
}

@media (max-width: 576px) {
    a.navbar-brand:before {
        width: 210px;
        height: 85px;
        left: -20px;
        top: -6px;
        border-radius: 0px 0px 35px 0px;
    }

    .hero-image {
        min-height: 360px;
    }

    .hero-image:before {
        height: 360px;
        top: -40px;
        border-radius: 100px 0px 100px 100px;
    }

    .since-badge {
        width: 110px;
        height: 110px;
    }

    .since-badge span {
        font-size: 26px !important;
    }

    .blog-section {
        padding: 140px 0px 40px;
        margin-top: -100px;
    }

    section.app-section {
        margin-top: -70px;
        border-radius: 0px 0px 120px 120px;
        padding: 70px 0px 0px;
    }

    .progress-section {
        padding: 70px 0px 0 10px;
        margin-top: -60px;
        border-radius: 0px 0px 90px 90px;
    }

    .testimonial-wrapper {
        padding: 35px 0px;
        border-radius: 60px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth transitions for all elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

button, a, .service-card, .testimonial-card, .blog-card {
    transition: var(--transition);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* :focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.25);
} */

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

/* ========================================
   IMAGE STYLING WITH BACKGROUND COLORS
   ======================================== */

/* General Image Styling */
/* img {
    background-color: #f0f4f8;
    background-image: linear-gradient(45deg, #e3f2fd 25%, transparent 25%, transparent 75%, #e3f2fd 75%, #e3f2fd),
                      linear-gradient(45deg, #e3f2fd 25%, transparent 25%, transparent 75%, #e3f2fd 75%, #e3f2fd);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

img:not([src]) {
    background-color: #e0e0e0;
} */

/* Team Section Images */
.team-section img {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f1f8 100%);
    transition: var(--transition);
}

.team-section img:hover {
    transform: scale(1.02);
}

.team-section {
    position: relative;
    background: linear-gradient(135deg, #f9fbff 0%, #eef4ff 100%);
}

.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(48, 55, 101, 0.08), transparent 38%);
    pointer-events: none;
}

.team-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.team-intro {
    color: #5f6b7a;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
}

.team-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 28px;
    border: 1px solid rgba(48, 55, 101, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    /* padding: 30px 24px 28px; */

}

.team-card-accent {
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #303765 0%, #efc23b 100%);
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(48, 55, 101, 0.035), rgba(239, 194, 59, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.team-card:hover::before {
    opacity: 1;
}

.team-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0.6rem 0 1.2rem; */
}

.team-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.2);
}

.team-info {
    position: relative;
    z-index: 1;
    padding: 0 4px;
}

.team-name-wrap {
    margin-bottom: 0.75rem;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.7rem;
    padding: 0.33rem 0.7rem;
    border-radius: 999px;
    background: rgba(239, 194, 59, 0.16);
    color: #8b6b0f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-info h5 {
    margin-bottom: 0.25rem;
    color: #1f2554;
    font-weight: 700;
    font-size: 1.15rem;
}

.team-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.team-info p {
    color: #5f6b7a;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Blog/Article Card Images */
.blog-card img {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%);
    transition: var(--transition);
    min-height: 250px;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* App Section Images */
section.app-section{
    background-color: #303765 !important;
    position: relative;
    margin-top: -165px;
    border-radius: 0px 0px 215px 215px;
    padding: 100px 0px 0px;
}
.app-section img {
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e8f1f8 100%); */
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
    width: 100%;
}
.mobileimg {
    position: relative;
    z-index: 99;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Section Images */
.testimonial-card img {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%);
    border: 3px solid var(--primary-color);
    min-width: 50px;
    min-height: 50px;
}

/* CTA Section Images */
.cta-content img {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f1f8 100%);
}

/* Success Section Images */
.success-image img {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%);
}

/* Placeholder loading state */
img[loading="lazy"] {
    background-color: #f0f4f8 !important;
}

/* Image containers with aspect ratio */
.img-container {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* progress-section */
.progress-section{
      padding: 142px 0px 0 0px;
    background: #eef2f6;
    border-radius: 0px 0px 150px 150px;
    margin-top: -124px;
}

/* Card container */
.progress-box{
    background:#eef2f6;
    border-radius:60px;
    padding:60px;
    position:relative;
    overflow:hidden;
}

/* Image */
.profile-img{
    border-radius:25px;
    width:100%;
    max-width:380px;
    object-fit:cover;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* Heading */
.sub-title{
    font-size:16px;
    color:#000000;
    margin-bottom:10px;
}

.main-title{
    font-weight:600;
    color:#2f356b;
    font-size:22px;
    margin-bottom:30px;
}

/* Slider bubble */
.quote-box{
    background:#3d3b73;
    color:#fff;
    /* padding:28px 35px; */
    padding:20px 20px;
    border-radius:25px;
    font-size:16px;
    line-height:1.6;
    min-height:120px;
    display:flex;
    align-items:center;
}

/* Swiper dots */
.swiper-pagination{
    position:relative;
    margin-top:20px;
    text-align:left;
}

.swiper-pagination-bullet{
    background:#b5bcc7;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#3d3b73;
    width:22px;
    border-radius:6px;
}

/* about us page css */

/* .contact-section{
    background: #f7f9fc;
}

.disclaimer-section{
    background:
        radial-gradient(circle at top left, rgba(48, 55, 101, 0.08), transparent 32%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%);
} */

.disclaimer-card{
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(48, 55, 101, 0.08);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.disclaimer-header{
    margin-bottom: 24px;
}

.disclaimer-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #303765;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(48, 55, 101, 0.08);
    border-radius: 999px;
    padding: 8px 14px;
}

.disclaimer-title{
    color: #1f2554;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 10px;
}

.disclaimer-subtitle{
    color: #5f6b7a;
    max-width: 720px;
}

.disclaimer-table-wrap{
    border: 1px solid rgba(48, 55, 101, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.disclaimer-table{
    margin-bottom: 0;
    min-width: 720px;
}

.disclaimer-table thead th{
    background: linear-gradient(90deg, #303765 0%, #1f2554 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 1rem 1.1rem;
    vertical-align: middle;
    border-bottom: 0;
}

.disclaimer-table tbody td{
    padding: 1rem 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    vertical-align: middle;
    border-color: rgba(48, 55, 101, 0.08);
}

.disclaimer-table tbody tr:nth-child(odd){
    background: #f9fbff;
}

.disclaimer-table tbody tr:hover{
    background: #eef4ff;
}

.disclaimer-table tbody td:first-child{
    font-weight: 700;
    color: #1f2554;
}

.disclaimer-note{
    margin-top: 18px;
    color: #5f6b7a;
}

.disclaimer-note a{
    font-weight: 700;
    color: #303765;
}

.disclaimer-note a:hover{
    color: #1f2554;
}

.disclaimer-mobile-grid{
    display: none;
}

.disclaimer-mobile-card{
    background: #f9fbff;
    border: 1px solid rgba(48, 55, 101, 0.10);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.disclaimer-mobile-card + .disclaimer-mobile-card{
    margin-top: 14px;
}

.disclaimer-mobile-label{
    color: #1f2554;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.disclaimer-mobile-row{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid rgba(48, 55, 101, 0.08);
    color: #5f6b7a;
    font-size: 0.95rem;
}

.disclaimer-mobile-row:first-of-type{
    border-top: 0;
    padding-top: 0;
}

.disclaimer-mobile-row strong{
    color: #303765;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 767px){
    .disclaimer-card{
        padding: 22px 18px;
        border-radius: 22px;
    }

    .disclaimer-table{
        min-width: 620px;
    }

    .disclaimer-table thead th,
    .disclaimer-table tbody td{
        padding: 0.9rem 0.85rem;
        font-size: 0.92rem;
    }

    .disclaimer-table-wrap{
        display: none;
    }

    .disclaimer-mobile-grid{
        display: grid;
        gap: 14px;
    }

    .disclaimer-note{
        font-size: 0.95rem;
    }
}

.contact-card{
    background:
        radial-gradient(circle at top, rgba(48, 55, 101, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border-radius: 28px;
    padding: 42px 34px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(48, 55, 101, 0.10);
    position: relative;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.contact-card-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-icon{
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 28px rgb(31 37 84 / 16%);
    position: relative;
}

.contact-icon::after{
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
}

.contact-eyebrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #2c2b5c;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 10px;
}

.contact-card h3{
    color: #1f2554;
    font-size: 1.7rem;
    margin-bottom: 6px;
    line-height: 1.15;
}

.contact-location-note{
    margin-bottom: 0;
    color: #6c7592;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-address-panel{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    background: linear-gradient(135deg, rgba(48, 55, 101, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border: 1px solid rgba(48, 55, 101, 0.10);
    border-radius: 22px;
    padding: 18px 18px 18px 16px;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-address-icon{
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: rgba(48, 55, 101, 0.10);
    color: #303765;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 10px 18px rgba(48, 55, 101, 0.05);
}

.contact-address{
    color: #5f6b7a;
    margin: 0;
    max-width: none;
    line-height: 1.7;
}

.contact-details{
    /* display: grid; */
    display:block;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-detail{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f6f8ff;
    border: 1px solid rgba(48, 55, 101, 0.08);
    border-radius: 18px;
    padding: 10px 16px;
    color: #343366;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(48, 55, 101, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-detail:hover{
    transform: translateY(-2px);
    background: #eef2ff;
    border-color: rgba(48, 55, 101, 0.16);
    box-shadow: 0 12px 24px rgba(48, 55, 101, 0.08);
    color: #1f2554;
}

.contact-detail-icon{
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    box-shadow: 0 8px 16px rgba(48, 55, 101, 0.16);
}

.contact-detail-text{
    word-break: break-word;
    text-align: left;
}

.contact-form-card{
    background:
        radial-gradient(circle at top left, rgba(239, 194, 59, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(48, 55, 101, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border-radius: 28px;
    padding: 36px 36px 38px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(48, 55, 101, 0.10);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #303765 0%, #efc23b 55%, #303765 100%);
}

.contact-form-header{
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}

.form-kicker{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #2c2b5c;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-form-header h3{
    margin-bottom: 10px;
    color: #1f2554;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.7rem;
}

.contact-form-header p{
    color: #5f6b7a;
    margin: 0 auto 16px;
    max-width: 40ch;
    line-height: 1.65;
}

.contact-form-meta{
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-meta-chip{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #f6f8ff;
    border: 1px solid rgba(48, 55, 101, 0.08);
    color: #343366;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(48, 55, 101, 0.05);
}

.form-meta-chip i{
    color: #303765;
}

.form-meta-chip:hover{
    background: #eef2ff;
    border-color: rgba(48, 55, 101, 0.16);
    color: #1f2554;
}

.contact-form{
    position: relative;
    z-index: 1;
}

.contact-form-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-form-grid .input-group{
    margin-bottom: 0;
}

.contact-form .input-group{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(48, 55, 101, 0.12);
    border-radius: 18px;
    /* padding: 12px 14px; */
    margin-bottom: 20px;
    /* min-height: 58px; */
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.contact-form .input-group textarea,
.contact-form .input-group input{
    border: none;
    outline: none;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.98rem;
    font-weight: 500;
    background: transparent;
    color: #1f2554;
}

.input-icon{
    color: #ffffff;
    margin-right: 12px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 13px;
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(48, 55, 101, 0.16);
}

.contact-form .input-group:focus-within{
    border-color: rgba(48, 55, 101, 0.34);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgb(31 37 84 / 8%);
    transform: translateY(-1px);
}

.contact-form .textarea{
    align-items: stretch;
    min-height: 110px;
    /* padding-top: 12px; */
}

.contact-form .textarea .input-icon{
    align-self: stretch;
    height: auto;
    min-height: 100%;
    margin-top: 0;
    background: linear-gradient(180deg, #303765 0%, #252c5e 52%, #1f2554 100%);
    box-shadow: 0 10px 18px rgba(48, 55, 101, 0.18);
}

.contact-form .textarea textarea{
    min-height: 76px;
    resize: vertical;
}

.contact-form .input-group input::placeholder,
.contact-form .input-group textarea::placeholder{
    color: #8b92ab;
    font-weight: 400;
}

.contact-submit{
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    /* width: 100%; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 28px rgba(48, 55, 101, 0.16);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-submit:hover{
    background: #efc23b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========================================
   CLIENT LOGIN SECTION
   ======================================== */

.client-section{
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(239, 194, 59, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(48, 55, 101, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.client-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(48, 55, 101, 0.03), transparent 40%),
        linear-gradient(315deg, rgba(239, 194, 59, 0.05), transparent 42%);
    pointer-events: none;
}

.client-login-shell{
    position: relative;
    z-index: 1;
    border-radius: 32px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.client-login-header{
    /* max-width: 760px; */
    margin: 0 auto 26px;
}

.client-login-kicker{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #4e557d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.client-login-header h2{
    color: #1f2554;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 10px;
}

.client-login-header p{
    color: #5f6b7a;
    margin-bottom: 0;
    font-size: 1.02rem;
}

.login-card{
    height: 100%;
    border-radius: 28px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.login-card::before{
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.95;
    pointer-events: none;
}

.login-card-portfolio::before{
    background:
        radial-gradient(circle at top right, rgba(239, 194, 59, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(48, 55, 101, 0.06), rgba(255, 255, 255, 0) 60%);
}

.login-card-nse::before{
    background:
        radial-gradient(circle at top right, rgba(28, 180, 119, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(48, 55, 101, 0.06), rgba(255, 255, 255, 0) 60%);
}

.login-card:hover{
    transform: translateY(-6px);
    border-color: rgba(48, 55, 101, 0.16);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.login-card-top{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.login-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 12px 24px rgba(48, 55, 101, 0.16);
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
}

.login-card-portfolio .login-icon{
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
}

.login-card-nse .login-icon{
    background: linear-gradient(135deg, #19b36f 0%, #0f8f57 100%);
}

.login-card-badge{
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #4e557d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.login-card h3{
    position: relative;
    z-index: 1;
    color: #1f2554;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.login-card p{
    position: relative;
    z-index: 1;
    color: #5f6b7a;
    margin-bottom: 22px;
    line-height: 1.75;
    /* max-width: 36ch; */
}

.login-card-footer{
    position: relative;
    z-index: 1;
}

.btn-login-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    /* width: 100%; */
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    box-shadow: 0 14px 28px rgba(48, 55, 101, 0.16);
    border: none;
    text-decoration: none;
    color: #ffffff;
}

.login-card-nse .btn-login-cta{
    background: linear-gradient(135deg, #19b36f 0%, #0f8f57 100%);
    box-shadow: 0 14px 28px rgba(15, 143, 87, 0.18);
}

.btn-login-cta:hover,
.btn-login-cta:focus,
.btn-login-cta:active,
.btn-login-cta:visited,
.btn-login-cta.active{
    color: #ffffff !important;
    text-decoration: none;
}

.btn-login-cta:hover{
    transform: translateY(-2px);
}

.btn-login-cta:active{
    transform: translateY(0);
    filter: brightness(1.03);
}

.btn-login-cta i{
    transition: transform 0.25s ease;
}

.btn-login-cta:hover i{
    transform: translateX(2px);
}

/* ========================================
   DOWNLOADS SECTION
   ======================================== */

.downloads-section{
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(239, 194, 59, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(48, 55, 101, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.downloads-shell{
    position: relative;
    z-index: 1;
    border-radius: 32px;
    padding: 34px;
    /* background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08); */
    backdrop-filter: blur(10px);
}

.downloads-header{
    max-width: 760px;
    margin: 0 auto 26px;
}

.downloads-kicker{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #4e557d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.downloads-header h2{
    color: #1f2554;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-bottom: 10px;
}

.downloads-header p{
    color: #5f6b7a;
    margin-bottom: 0;
    font-size: 1.01rem;
}

.downloads-table-wrap{
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    background: #ffffff;
    max-width: 700px;
    margin: auto;
}

.downloads-table{
    width: 100%;
    margin-bottom: 0;
}

.downloads-table tbody tr{
    transition: background 0.25s ease, transform 0.25s ease;
}

.downloads-table tbody tr:nth-child(odd){
    background: #f9fbff;
}

.downloads-table tbody tr:hover{
    background: #eef4ff;
}

.downloads-table td{
    padding: 10px 20px;
    vertical-align: middle;
    border-color: rgba(48, 55, 101, 0.08);
}

.downloads-table td:first-child{
    width: 78%;
}

.downloads-doc{
    display: flex;
    align-items: center;
    gap: 14px;
}

.downloads-doc-icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(48, 55, 101, 0.16);
}

.downloads-doc-title{
    color: #1f2554;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.download-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 24px rgba(48, 55, 101, 0.16);
    text-transform: none;
    white-space: nowrap;
}

.download-link:hover{
    color: #ffffff;
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3d457d 0%, #27306a 100%);
}

.download-link i{
    transition: transform 0.25s ease;
}

.download-link:hover i{
    transform: translateX(2px);
}

.downloads-mobile-grid{
    display: grid;
    gap: 14px;
}

.download-card{
    border-radius: 22px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.download-card .downloads-doc{
    margin-bottom: 14px;
}

/* ========================================
   VACANCIES SECTION
   ======================================== */

.vacancies-section{
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(239, 194, 59, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(48, 55, 101, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.vacancies-shell-simple{
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.vacancies-shell{
    position: relative;
    z-index: 1;
    border-radius: 32px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.vacancies-title{
    color: #1f2554;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.vacancies-copy-text{
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 1040px;
    margin: 0 0 12px;
}

.vacancies-resume-text{
    color: #1f2554;
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0;
}

.vacancies-resume-text strong{
    font-weight: 700;
}

.vacancies-resume-text a{
    font-weight: 700;
    color: #303765;
    text-decoration: none;
    border-bottom: 1px solid rgba(48, 55, 101, 0.25);
}

.vacancies-resume-text a:hover{
    color: #1f2554;
    border-bottom-color: rgba(31, 37, 84, 0.55);
}

body.vacancies-page .vacancies-section .container{
    width: 100%;
}

.vacancies-hero{
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.vacancies-copy{
    border-radius: 28px;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(239, 194, 59, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.vacancies-kicker{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #4e557d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vacancies-copy h2{
    color: #1f2554;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.vacancies-copy p{
    color: #5f6b7a;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.vacancies-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vacancy-primary,
.vacancy-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 1.3rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.vacancy-primary{
    background: linear-gradient(135deg, #303765 0%, #1f2554 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(48, 55, 101, 0.16);
}

.vacancy-primary:hover{
    color: #ffffff;
    transform: translateY(-2px);
}

.vacancy-secondary{
    background: #f6f8ff;
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #1f2554;
}

.vacancy-secondary:hover{
    color: #1f2554;
    transform: translateY(-2px);
    background: #eef2ff;
}

.vacancies-spotlight{
    border-radius: 28px;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(48, 55, 101, 0.08), transparent 30%),
        linear-gradient(180deg, #1f2554 0%, #303765 100%);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(31, 39, 86, 0.18);
}

.vacancy-spotlight-card{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 16px;
}

.vacancy-spotlight-icon{
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
    flex: 0 0 56px;
}

.vacancy-spotlight-icon i{
    font-size: 1.15rem;
}

.vacancy-spotlight-label{
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.82;
    margin-bottom: 6px;
}

.vacancy-spotlight-card strong{
    display: block;
    font-size: 1.15rem;
    line-height: 1.4;
}

.vacancy-grid{
    display: grid;
    gap: 12px;
}

.vacancy-mini-card{
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.vacancy-mini-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
    margin-bottom: 10px;
}

.vacancy-mini-card p{
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.vacancies-content-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.vacancy-info-card{
    border-radius: 26px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(48, 55, 101, 0.10);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.vacancy-info-card-highlight{
    background:
        radial-gradient(circle at top right, rgba(239, 194, 59, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.vacancy-section-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    border: 1px solid rgba(48, 55, 101, 0.10);
    color: #4e557d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vacancy-info-card h3{
    color: #1f2554;
    font-size: 1.35rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vacancy-info-card p{
    color: #5f6b7a;
    line-height: 1.75;
    margin-bottom: 18px;
}

.vacancy-points{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.vacancy-points li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1f2554;
    font-weight: 600;
    line-height: 1.6;
}

.vacancy-points li i{
    color: #19b36f;
    margin-top: 4px;
}

.vacancy-primary-inline{
    width: max-content;
    min-width: 0;
}

.breadcrumb-section{
    position: relative;
    /* background: url("../images/companyprofile.jpg") center/cover no-repeat; */
    padding: 10px 0 10px;
    /* padding: 36px 0 28px; */
    color: #ffffff;
    isolation: isolate;
}

.breadcrumb-section::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(44, 62, 122, 0.78) 0%, rgba(48, 55, 101, 0.78) 100%); */
    background: linear-gradient(180deg, #f8f9fb 0%, #f5f7fa 100%);
    /* background: linear-gradient(135deg, rgb(44 62 122 / 18%) 0%, rgb(48 55 101 / 31%) 100%); */
    z-index: 0;
    border-bottom: 1px solid rgb(232, 232, 232);
}

.breadcrumb-wrap{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.breadcrumb-title{
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    color: #000;
}

.breadcrumb{
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item{
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breadcrumb-item a{
    color: #282556;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: #282556;
}

.team-section{
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.team-card{
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(48, 55, 101, 0.08);
    /* box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08); */
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
    /* padding: 20px; */
}

.team-photo{
    position: relative;
    overflow: hidden;
    /* height: 260px; */
    /* height: 150px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(90deg, #303765 0%, #efc23b 100%); */
    background: linear-gradient(90deg, #303765 0%, #ffecb4 100%);
    padding: 20px 0px;
}

.team-photo::after{
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(48, 55, 101, 0) 0%, rgba(48, 55, 101, 0.35) 100%); */
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;

    width: 150px;
    height: auto;
}

.team-avatar{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    color: #303765;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    /* box-shadow: 0 12px 25px rgba(15, 23, 42, 0.15); */
    transition: transform 0.45s ease;
}

.team-avatar-lg{
    width: 140px;
    height: 140px;
    font-size: 60px;
}

.team-info{
    padding: 22px 24px 22px;
}

.team-info h5{
    margin-bottom: 6px;
    color: #1f2554;
    font-weight: 700;
    font-size: 1.0rem;
}

.team-role{
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    /* text-transform: uppercase; */
    color: #3e3e3e;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p{
    color: #5f6b7a;
    margin-bottom: 0;
}

.team-card:hover{
    transform: translateY(-8px);
    /* box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16); */
}

.team-card:hover .team-photo img,
.team-card:hover .team-avatar{
    transform: scale(1.07);
}

.team-card:hover .team-photo::after{
    opacity: 1;
}

.team-modal-media{
    display: flex;
    justify-content: center;
}

.back-to-top{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffc107;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgb(31 37 84 / 9%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: floatUp 2.2s ease-in-out infinite;
}

.back-to-top:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgb(31 37 84 / 9%);
    background: #1F2756;
    color: #fff;
}
.back-to-top:hover i{
    color: #fff;
}

@keyframes floatUp{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-6px);
    }
}

.modal-content{
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(48, 55, 101, 0.08);
}

.modal-header{
    background: #f4f6fb;
    border-bottom: 1px solid rgba(48, 55, 101, 0.08);
}

.modal-title{
    color: #1f2554;
    font-weight: 700;
}

/* ================= LIFE AT PRIMEVISTA ================= */
.life-hero-section{
    background:
        radial-gradient(circle at top left, rgba(239, 194, 59, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(48, 55, 101, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.life-hero-card{
    border: 1px solid rgba(48, 55, 101, 0.08);
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 34px 36px;
}

.life-kicker,
.life-pane-tag,
.gallery-modal-category{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0px;
    /* padding: 7px 12px; */
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.knowledge-gallery-modal .gallery-modal-category {
    /* padding: 7px 12px; */
    color: #fff !important;
    background: rgb(255 255 255 / 10%) !important;
}
p#galleryModalCategory{
    padding: 7px 12px;
    color: #1f2554;
}

.life-heading{
    color: #1f2554;
    font-size: clamp(1.8rem, 3vw, 2.85rem);
    line-height: 1.18;
    margin: 14px 0 14px;
}

.life-copy{
    color: #5f6b7a;
    max-width: 700px;
}

.life-highlights{
    display: grid;
    gap: 14px;
}

.life-highlight{
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, #303765 0%, #1f2756 100%);
    color: #ffffff;
    padding: 18px 20px;
    box-shadow: 0 14px 28px rgba(31, 39, 86, 0.18);
}

.life-highlight-number{
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    min-width: 72px;
}

.life-highlight-text{
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.95;
}

.life-tabs-shell{
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(48, 55, 101, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.life-tabs{
    gap: 10px;
    justify-content: center;
    margin-bottom: 26px;
}

.life-tabs .nav-link{
    border-radius: 999px;
    border: 1px solid rgba(48, 55, 101, 0.14);
    background: #f7f8fd;
    color: #303765;
    font-weight: 700;
    padding: 12px 18px;
    line-height: 1.1;
    box-shadow: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.life-tabs .nav-link:hover{
    transform: translateY(-1px);
    color: #1f2756;
}

.life-tabs .nav-link small{
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.72;
}

.life-tabs .nav-link.active{
    background: linear-gradient(135deg, #303765 0%, #1f2756 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(31, 39, 86, 0.18);
}

.life-tab-content{
    padding: 4px 2px 0;
}

.life-pane-header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.life-pane-header h3{
    color: #1f2554;
    font-size: 1.5rem;
    margin: 12px 0 8px;
}

.life-pane-header p{
    margin-bottom: 0;
    color: #5f6b7a;
    max-width: 760px;
}

.life-pane-meta{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

.life-pane-meta span{
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f6fb;
    color: #303765;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.life-pane-header span.life-pane-tag {
    color: #2c2b5c;
    padding: 10px 20px;
}

.gallery-grid{
    margin-top: 4px;
}

.gallery-card{
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #10162f;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card img{
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-card-preview{
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    object-fit: cover;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 40%),
        linear-gradient(135deg, #303765 0%, #0f1638 100%);
}

.gallery-card--video:hover .gallery-card-preview{
    filter: saturate(1.05);
}

.gallery-overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(8, 12, 28, 0) 0%, rgba(8, 12, 28, 0.88) 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.gallery-card:hover img{
    transform: scale(1.06);
    filter: saturate(1.05);
}

.gallery-card:hover .gallery-overlay{
    opacity: 1;
    transform: translateY(0);
}

.gallery-modal .modal-content{
    border-radius: 26px;
}

.gallery-modal .modal-header{
    padding: 20px 24px 16px;
}

.gallery-modal .modal-body{
    background: #10162f;
}

.gallery-modal-stage{
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    background: #10162f;
}

.gallery-modal-image{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #10162f;
}

.gallery-modal-video{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #10162f;
}

.gallery-modal-image.is-active,
.gallery-modal-video.is-active{
    display: block;
}

.gallery-modal-category{
    margin-bottom: 6px;
}

/* ================= KNOWLEDGE CENTRE ================= */
.knowledge-hero-section{
    background:
        radial-gradient(circle at top left, rgba(239, 194, 59, 0.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(48, 55, 101, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.knowledge-hero-card{
    border: 1px solid rgba(48, 55, 101, 0.08);
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 34px 36px;
}

.knowledge-kicker,
.section-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(48, 55, 101, 0.08);
    color: #303765;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.knowledge-heading{
    color: #1f2554;
    font-size: clamp(1.8rem, 3vw, 2.85rem);
    line-height: 1.18;
    margin: 14px 0 14px;
}

.knowledge-copy{
    color: #5f6b7a;
    max-width: 720px;
}

.knowledge-highlights{
    display: grid;
    gap: 14px;
}

.knowledge-highlight{
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, #303765 0%, #1f2756 100%);
    color: #ffffff;
    padding: 18px 20px;
    box-shadow: 0 14px 28px rgba(31, 39, 86, 0.18);
}

.knowledge-highlight-number{
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    min-width: 72px;
}

.knowledge-highlight-text{
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.95;
}

.knowledge-section{
    background:
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.section-shell{
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(48, 55, 101, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.knowledge-section-header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.knowledge-section-header h3{
    color: #1f2554;
    font-size: 1.5rem;
    margin: 12px 0 8px;
}

.knowledge-section-header p{
    margin-bottom: 0;
    color: #5f6b7a;
    max-width: 760px;
}

.knowledge-section-meta{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

.knowledge-section-meta span{
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f6fb;
    color: #303765;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.newsletter-intro-card{
    border-radius: 26px;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(239, 194, 59, 0.18), transparent 30%),
        linear-gradient(135deg, #303765 0%, #1f2756 100%);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(31, 39, 86, 0.16);
}

.newsletter-intro-badge{
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.newsletter-intro-card h4{
    margin: 16px 0 12px;
    font-size: 1.45rem;
}

.newsletter-intro-card p{
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.newsletter-intro-list{
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.92);
}

.newsletter-intro-list li{
    margin-bottom: 10px;
}

.newsletter-card{
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(48, 55, 101, 0.1);
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.newsletter-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.newsletter-cover{
    min-height: 280px;
    padding: 0;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    position: relative;
    isolation: isolate;
    transition: transform 0.35s ease, filter 0.35s ease;
    overflow: hidden;
    background: #1f2756;
}

.newsletter-cover::before,
.newsletter-cover::after{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
}

.newsletter-cover::after{
    background: linear-gradient(180deg, rgba(12, 16, 34, 0.04) 0%, rgba(12, 16, 34, 0.22) 45%, rgba(12, 16, 34, 0.88) 100%);
    transition: opacity 0.35s ease, background 0.35s ease;
}

.newsletter-card--violet .newsletter-cover{
    background: #1a2148;
}

.newsletter-card--gold .newsletter-cover{
    background: #a96b13;
}

.newsletter-card--navy .newsletter-cover{
    background: #0f1638;
}

.newsletter-cover-ribbon{
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.newsletter-cover-kicker{
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.88;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.newsletter-cover strong{
    font-size: 1.28rem;
    line-height: 1.2;
    max-width: 230px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.newsletter-cover-period{
    font-size: 0.9rem;
    opacity: 0.96;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.newsletter-cover-note{
    font-size: 0.8rem;
    opacity: 0.95;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.newsletter-cover:hover{
    transform: translateY(-6px);
    filter: saturate(1.05) brightness(1.02);
}

.newsletter-cover:hover::before{
    opacity: 1;
}

.newsletter-cover:hover::after{
    background: linear-gradient(180deg, rgba(12, 16, 34, 0.02) 0%, rgba(12, 16, 34, 0.18) 40%, rgba(12, 16, 34, 0.9) 100%);
}

.newsletter-card-body{
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-card-body h4{
    font-size: 1.05rem;
    color: #1f2554;
    margin-bottom: 8px;
}

.newsletter-card-body p{
    margin-bottom: 0;
    color: #5f6b7a;
}

.newsletter-pdf-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    background: #303765;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: max-content;
}

.newsletter-pdf-link:hover{
    background: #1f2756;
    color: #ffffff;
    transform: translateY(-1px);
}

.newsletter-cover-ribbon{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.newsletter-cover-ribbon i{
    font-size: 0.85rem;
}

.newsletter-cover-copy{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: none;
    padding: 18px 20px 18px;
    background: linear-gradient(180deg, rgba(5, 8, 20, 0) 0%, rgba(5, 8, 20, 0.58) 30%, rgba(5, 8, 20, 0.9) 100%);
}

.newsletter-cover-media{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.newsletter-cover-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease;
}

.newsletter-cover-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 16, 35, 0.02) 0%, rgba(13, 16, 35, 0.12) 40%, rgba(13, 16, 35, 0.48) 100%);
}

.newsletter-card:hover .newsletter-cover-media img{
    transform: scale(1.03);
}

.newsletter-card:hover .newsletter-cover-ribbon{
    background: rgba(255, 255, 255, 0.24);
}

.newsletter-card:hover .newsletter-cover-copy{
    transform: translateY(-2px);
    transition: transform 0.35s ease;
}

.knowledge-videos .gallery-card{
    height: 100%;
}

.knowledge-videos .gallery-card-preview{
    min-height: 210px;
    pointer-events: none;
}

.knowledge-videos .gallery-overlay{
    opacity: 1;
    transform: translateY(0);
}

.knowledge-gallery-modal .modal-dialog{
    max-width: min(1040px, calc(100vw - 1rem));
}

.knowledge-gallery-modal .modal-content{
    border-radius: 26px;
    overflow: hidden;
    background: #10162f;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.knowledge-gallery-modal .modal-header{
    background: linear-gradient(135deg, #121935 0%, #1f2756 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.knowledge-gallery-modal .modal-title{
    color: #ffffff;
}

.knowledge-gallery-modal .modal-body{
    background: #10162f;
}

.knowledge-gallery-modal .gallery-modal-stage{
    min-height: auto;
    aspect-ratio: 16 / 9;
    background: #000000;
    position: relative;
}

.knowledge-gallery-modal .gallery-modal-video{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.knowledge-gallery-modal .gallery-modal-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.knowledge-gallery-close{
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    opacity: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.knowledge-gallery-close:hover{
    background: rgba(255, 255, 255, 0.24);
}

.knowledge-gallery-modal .modal-header .btn-close{
    filter: invert(1);
}
/* Cards */
.card-custom{
    border:none;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    padding:40px;
    background:#fff;
    height:100%;
    transition:0.3s;
}

.card-custom:hover{
    transform:translateY(-6px);
}

a.linkedin i.fab {
    color: #0C66C2;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
}

img.primeimg {
    float: right;
    padding: 0 0 0px 20px;
}

.news-media{
    background: linear-gradient(120deg, #f7f4ff 0%, #eef3ff 45%, #fdfcf8 100%) !important;
}

.news-media-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f7ff 100%);
    border: 1px solid rgba(90, 87, 143, 0.14);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 38px rgba(29, 41, 57, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(29, 41, 57, 0.14);
}

.news-media-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-media-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #5a578f 0%, #8b84c9 100%);
    box-shadow: 0 10px 22px rgba(90, 87, 143, 0.22);
}

.news-media-card__tag {
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(90, 87, 143, 0.12), rgba(125, 116, 183, 0.16));
    color: #5a578f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-media-card__body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2752;
    margin-bottom: 8px;
}

.news-media-card__body p {
    margin: 0;
    color: #5f6475;
    line-height: 1.7;
}

.news-media-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5a578f;
    font-weight: 700;
    text-decoration: none;
}

.news-media-card__link:hover {
    color: #342f64;
}

::placeholder {
    color: #a5a5a5;
}
.contact-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #303765 0%, #efc23b 55%, #303765 100%);
}


/* phasesuccess */
section.white.phasesuccess {
  background: #fff;
  padding: 89px 0 45px;
}
.section_title {
  margin: auto;
  text-align: center;
}
.phasebox .icon {
  text-align: center;
  /* border: 1px solid #2f1195; */
  background: #cdcdcd;
  /* background: #545454; */
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
  padding: 20px 0;
  border-radius: 50px;
}
.phasebox .title {
    /* height: 60px; */
    height: auto;
}
.phasebox .icon img {
  border-radius: 100%;
  background: #e9e9e9;
  margin: 20px;
  padding: 20px;
  /* width: 150px; */
  width:118px;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
}
.phasebox .title h3{
  font-size: 17px;
  /* letter-spacing: 1px; */
  color: #151515;
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
  margin-bottom: 16px;
}
/* whyprimevista css */
.whyprimevista{
  /* background: #f4f4f4; */
  /* padding: 0px 0 89px; */
  padding: 40px 0px 89px;
  border-top: 1px solid #dfdfdf;
}
.primevistabox .iconimg img {
  background: #1d1e48;
  margin: auto;
  text-align: center;
  border-radius: 100%;
  display: block;
  padding: 15px;
  /* width: 120px; */
  width:100px;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
}

.primevistabox .title h3 {
  display: block;
  color: #454545;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
  text-align: center;
  min-height: 20px;
}
.primevistabox .text p {
  text-align: center;
  font-size: 16px;
  color: #5e5e5e;
}

/* 16-10-2023 */
section.primevista{
	background-color: #dcd5cd;
	padding:60px 0px;
}
section.primevista .container .col-sm-5.col-md-5{
	padding-right:0px;
}
section.primevista .container .col-sm-7.col-md-7{
	padding-left:0px;
}
section.primevista .container{
	width:800px;
	margin:auto;
	position:relative;
}
section.primevista .company_item_img img {
    width: 100%;
    height: auto;
}
section.primevista .company_item{
	padding-bottom:0px;
}

.company_item .company_text {
    padding: 83px 60px;
    background: #332f60;
    height: 318px;
    margin-bottom: 0px;
}
.company_item .company_text h6 {
    font-weight: 700;
    color: #f1bc24;
    text-align: left;
}

section.phasesuccess .section_title h2, .whyprimevista .section_title h2 {
    margin: auto;
    text-align: center;
    color: #303765;
    font-weight: 300;
    font-size: 26px;
}

/* Responsive */
@media(max-width:768px){
    .progress-box{
    border-radius:25px;
    padding:30px;
    text-align:center;
    }
    .swiper-pagination{
    text-align:center;
    }
    .progress-box{padding: 30px 0px 30px !important;}
    .team-photo{
        height: 230px;
    }
    .breadcrumb-section{
        padding: 28px 0 22px;
    }
    .breadcrumb-title{
        font-size: 1.7rem;
    }
    .contact-card,
    .contact-form-card{
        padding: 28px 22px;
    }
    .life-hero-card,
    .life-tabs-shell{
        padding: 22px;
        border-radius: 24px;
    }
    .life-pane-header{
        align-items: flex-start;
        flex-direction: column;
    }
    .life-pane-meta{
        margin-left: 0;
    }
    .life-pane-header h3{
        font-size: 1.25rem;
    }
    .gallery-card img{
        aspect-ratio: 4 / 3;
    }
    .knowledge-hero-card,
    .section-shell{
        padding: 22px;
        border-radius: 24px;
    }
    .knowledge-section-header{
        align-items: flex-start;
        flex-direction: column;
    }
    .knowledge-section-meta{
        margin-left: 0;
    }
    .knowledge-section-header h3{
        font-size: 1.25rem;
    }
    .knowledge-highlight{
        padding: 16px;
    }
    .knowledge-highlight-number{
        min-width: 58px;
        font-size: 1.65rem;
    }
    .newsletter-cover{
        min-height: 270px;
    }
    .newsletter-cover strong{
        font-size: 1.25rem;
    }
    .life-tabs{
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        flex-wrap: nowrap;
    }
    .life-tabs .nav-item{
        flex: 0 0 auto;
        width: auto;
    }
    .life-tabs .nav-link{
        white-space: nowrap;
    }
    img.primeimg {
        float: none;
        padding: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    /* section.app-section{margin-top: 0px;} */
    .app-section img{width: auto;}
}


@media(min-width:320px) and (max-width:576px){
    .hero-content.p-5 {
        padding: 0 !important;
    }
    /* .d-flex.flex-column.flex-sm-row.gap-3 {
        text-align: center;
        margin: auto;
        display: block !important;
    } */
    .app-section img{width: auto;}
    .mt-5.planSmarter{margin-top: 0px !important;}
    .hero-image:before{position: static;}
    .col-12.col-sm-6.col-lg-6.d-lg-flex.align-items-center.justify-content-center.pt-0.pb-5.ps-5.pe-5 {
        padding: 0px 15px !important;
    }
    .progress-section{
      padding: 100px 0px 0 0px;
    }
    .app-section img{width: auto;}
    .faq-section{
    padding: 30px 0px 40px;}
    .faq-card{
    padding:30px 0px 40px;}
    p.cta-info {
        margin-top: 20px;
    }
    .mt-5.planSmarter {
        margin-top: 90px !important;
    }
    .mobileimg img {
        width: 100%;
    }
    .financialimg.ps-5.pe-5 {
        padding: 0px !important;
    }
    .team-photo{
        height: 210px;
    }
    .breadcrumb-title{
        font-size: 1.5rem;
    }
    .contact-icon{
        width: 60px;
        height: 60px;
        font-size: 22px;
        border-radius: 18px;
    }
    .contact-card{
        padding: 28px 18px;
        border-radius: 22px;
    }
    .contact-card-header{
        gap: 12px;
        margin-bottom: 18px;
    }
    .contact-card h3{
        font-size: 1.3rem;
    }
    .contact-location-note{
        font-size: 0.9rem;
    }
    .contact-address-panel{
        padding: 14px;
        gap: 12px;
        border-radius: 18px;
        margin-bottom: 16px;
    }
    .contact-address-icon{
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }
    .contact-details{
        grid-template-columns: 1fr;
    }
    .contact-detail{
        padding: 12px 13px;
        gap: 10px;
        border-radius: 14px;
    }
    .contact-detail-icon{
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
    .contact-form-header{
        margin-bottom: 18px;
    }
    .contact-form-header h3{
        font-size: 1.35rem;
    }
    .contact-form-meta{
        gap: 10px;
    }
    .form-meta-chip{
        width: 100%;
        justify-content: center;
        padding: 11px 14px;
    }
    .contact-form-grid{
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .contact-form .input-group{
        padding: 10px 12px;
        border-radius: 14px;
        margin-bottom: 8px;
    }
    .input-icon{
        width: 34px;
        height: 34px;
        min-width: 34px;
        flex-basis: 34px;
        border-radius: 11px;
    }
    .contact-form .textarea{
        min-height: 96px;
        padding-top: 10px;
    }
    .contact-form .textarea textarea{
        min-height: 54px;
    }
    .contact-form .textarea .input-icon{
        min-height: 100%;
    }
    .client-login-shell{
        padding: 22px 18px;
        border-radius: 24px;
    }
    .client-login-header{
        margin-bottom: 20px;
    }
    .client-login-header p{
        font-size: 0.95rem;
    }
    .login-card{
        padding: 22px 18px;
        border-radius: 22px;
    }
    .login-card-top{
        gap: 12px;
        margin-bottom: 16px;
    }
    .login-icon{
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 1.1rem;
    }
    .login-card h3{
        font-size: 1.35rem;
    }
    .login-card p{
        margin-bottom: 18px;
        max-width: none;
    }
    .btn-login-cta{
        padding: 0.85rem 1.1rem;
        font-size: 0.9rem;
    }
    .downloads-shell{
        padding: 22px 18px;
        border-radius: 24px;
    }
    .downloads-header{
        margin-bottom: 20px;
    }
    .downloads-header p{
        font-size: 0.95rem;
    }
    .downloads-doc-icon{
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 13px;
    }
    .downloads-doc-title{
        font-size: 0.97rem;
    }
    .download-link{
        width: 100%;
        padding: 0.85rem 1rem;
    }
    .vacancies-shell{
        padding: 22px 18px;
        border-radius: 24px;
    }
    body.vacancies-page .vacancies-section{
        align-items: flex-start;
    }
    .vacancies-title{
        font-size: 1.9rem;
        margin-bottom: 14px;
    }
    .vacancies-copy-text{
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .vacancies-resume-text{
        font-size: 0.95rem;
    }
    .life-highlight{
        padding: 16px;
    }
    .life-highlight-number{
        min-width: 58px;
        font-size: 1.65rem;
    }
    .gallery-card img{
        aspect-ratio: 4 / 3;
    }
    .gallery-card-preview,
    .gallery-modal-stage{
        aspect-ratio: 4 / 3;
        min-height: 0;
        height: auto;
    }
    .knowledge-videos .gallery-card-preview{
        aspect-ratio: 4 / 3;
        min-height: 0;
        height: auto;
    }
    .newsletter-card-body{
        padding: 18px;
    }
    .newsletter-cover{
        min-height: 210px;
    }
    .gallery-overlay{
        opacity: 1;
        transform: translateY(0);
        font-size: 0.82rem;
    }
    img.primeimg {
        float: none;
        padding: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .knowledge-gallery-modal .gallery-modal-stage{
        aspect-ratio: 0;
    }
    .phasebox {
        margin-bottom: 40px;
    }
}
