/* Base Styles */
:root {
    --primary-green: #14a34b;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #ffffff;
    --font-main: 'Public Sans', sans-serif;
    --transition-speed: 0.3s;
    --blue: #021643;
}

.container {
    max-width: 83%;
}


html, body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
img{
	width:100%;
	border-radius:12px;
}

/* Global Section Headings */
.main_title {
    font-family: 'Anta', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 74px;
}
p {
    font-size: 18px;
    line-height: 26px;
}
.second_title {
    font-family: 'Anta', sans-serif;
    font-size: 52px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 52px;
    line-height: 55px;
}
.main_title .text-green {
    color: #41B353;
}

/* ==========================================
   HERO SECTION STYLES
   ========================================== */
.hero-section {
    height: calc(100vh - 80px);
    min-height: 790px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    overflow: hidden;
    
    /* Scrollbar fix */
    max-width: 100%;
    box-sizing: border-box;
}

/* Background Video */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* darkness adjust karo — 0.3 se 0.7 tak */
    z-index: 1;
}

/* Content upar rahega */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Anta', sans-serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 100px;
    margin-bottom: 24px;
}

.hero-title .text-green {
    color: #41B353;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 34px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-custom {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom svg {
    transition: transform 0.3s ease;
}

.btn-primary-custom {
    background: radial-gradient(50% 50% at 50% 50%, #41B353 0%, #008547 100%);
    color: #ffffff;
    border: none;
    width: fit-content;
}

.btn-secondary-custom {
    background: #ffffff;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

/* Padding Utility */
.p_100 {
    padding: 96px 0px;
}

/* ==========================================
   SERVICES SECTION STYLES
   ========================================== */
.services-section {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.service-card {
    background-color: #151C24;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    color: #ffffff;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    background-color: #123021;
    transform: scale(1.06);
    z-index: 10;
    box-shadow: 0 20px 40px #12302114;
}

.card-content {
    margin-bottom: 28px;
}

.service-card h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 40px;
}

.service-card p {
    font-size: 17px;
    line-height: 25px;
    color: #FFFFFF;
    margin-bottom: 0;
    transition: color 0.4s ease;
    font-weight: 200;
}

.service-card:hover p {
    color: #FFFFFF;
}

.card-image-wrap {
    position: relative;
    margin-top: 0px;
    border-radius: 16px;
}

.card-image-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.card-link-icon {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 48px;
    height: 48px;
    background-color: #0d9e4c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 10px #171d25;
}

.service-card:hover .card-link-icon {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 0 10px #123021;
}

.card-link-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .card-link-icon svg {
    transform: translate(2px, -2px);
}

/* ==========================================
   STATS SECTION STYLES
   ========================================== */
.stats-section {
    background: #123021;
    font-family: 'Figtree', sans-serif;
    position: relative;
}

.stat-item {
    position: relative;
    padding: 20px 15px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #FFFFFF4D;
}

.stat-number {
    font-size: 64px;
    font-weight: 600;
    line-height: 74px;
    margin-bottom: 2px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number .currency {
    font-size: 28px;
    margin-right: 5px;
    position: relative;
    top: -15px;
}

.stat-number .unit {
    font-size: 28px;
    margin-left: 5px;
}

.stat-number .counter-text {
    font-size: 50px;
}

.stat-text {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 28px;
}

/* ==========================================
   INDUSTRIES SECTION STYLES
   ========================================== */
.industries-section {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0D141B 0%, rgba(13, 20, 27, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.industry-name {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

/* ==========================================
   LEADERSHIP SECTION STYLES
   ========================================== */
.leadership-section {
    position: relative;
    overflow: hidden;
    background: #0000000A;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background: #021643;
}

.leadership-section .container {
    position: relative;
    z-index: 2;
}

.leadership-content-wrap {
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.our_team_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 34px;
}

.our_team_box .member_img {
    width: 55%;
}

.our_team_box .member_details {
    width: 45%;
    height: 100%;
    padding: 30px;
}

.member_details h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 16px;
}

.member_details p {
    font-size: 20px;
    line-height: 30px;
}
.leadership-content-wrap .sub-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 0.8;
    display: block;
    margin-bottom: 15px;
}

.leadership-content-wrap .lead-text {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0px;
    color: #fff;
    font-weight: 400;
    width: 74%;
}

.slider-arrows .slick-prev-custom,
.slider-arrows .slick-next-custom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0b9b43;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrows .slick-prev-custom:hover,
.slider-arrows .slick-next-custom:hover {
    background: #41B353;
    color: #ffffff;
}

.slider-container-wrap {
    position: relative;
    z-index: 1;
}

.leader-slide {
    padding: 0 15px;
}

.leader-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.leader-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.leader-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgb(13 20 27 / 47%);
    padding: 20px;
    border-radius: 12px;
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.leader-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 34px;
}

.leader-info p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 0;
    color: #41B353;
    line-height: 28px;
}

.leadership-content-wrap h2.main_title.text-white {
    width: 50%;
}

.leadership-content-wrap .slider-arrows.d-flex.gap-3 {
    position: absolute;
}

/* ==========================================
   INTELLIGENCE HUB SECTION STYLES
   ========================================== */
.intelligence-hub-section {
    background-color: #ffffff;
}

.intelligence-tabs .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #999 !important;
    border: none !important;
    background: none !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.intelligence-tabs .nav-link:hover {
    color: #1a1a1a !important;
}

.intelligence-tabs .nav-link.active {
    color: #008547 !important;
    font-weight: 600;
    border-bottom: 2px solid #008547 !important;
}

.featured-post img {
    width: 100%;
    border-radius: 16px;
}

.small-post img {
    width: 100%;
    border-radius: 12px;
}

.featured-post h3 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
    line-height: 42px;
}

.featured-post p {
    font-family: 'Inter', sans-serif;
    color: #000;
    font-size: 18px;
    line-height: 26px;
}

.small-post .post-thumb {
    width: 235px;
    flex-shrink: 0;
}

.small-post .post-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 29px;
    width: 93%;
}

.small-post .post-info p {
    font-family: 'Inter', sans-serif;
    color: #000;
    font-size: 17px;
    margin-bottom: 0;
    line-height: 27px;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.author-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #41B353;
}

.intelligence-hub-section h2.main_title {
    margin-bottom: 48px;
}

/* ==========================================
   GROWTH STRATEGY CTA STYLES
   ========================================== */
.cta-growth-section {
    background: #123021;
    padding: 100px 0;
}

.cta-growth-section .lead-text {
    font-size: 22px;
    line-height: 28px;
}

.btn-green-cta {
    background-color: #41B353;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-green-cta:hover {
    background-color: #008547;
    color: #ffffff;
}

.btn-white-cta {
    background-color: #ffffff;
    color: #008547;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-white-cta:hover {
    background-color: #f8f9fa;
    color: #008547;
}

/* ==========================================
   FOOTER SECTION STYLES
   ========================================== */
.footer-section {
    background-color: #ffffff;
    border-radius: 60px 60px 0 0;
    width: 100%;
}

.footer-top {
    padding: 80px 80px 50px 80px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: fit-content;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
    max-width: 385px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #008547;
    color: #ffffff;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #008547;
    margin-bottom: 28px;
    line-height: 34px;
}

.footer-links {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 2;
}

.footer-links li a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
    line-height: 28px;
}

.footer-links li a:hover {
    color: #008547;
}

.footer-divider {
    border-color: #E7E5E4;
    margin: 0;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px 30px 80px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #78716C;
    font-size: 19px;
    line-height: 27px;
}

.footer-bottom-links a {
    color: #78716C;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 19px;
    line-height: 29px;
}

.footer-bottom-links a:hover {
    color: #008547;
}

footer {
    padding: 0px 100px;
    width: 100%;
    background: #123021;
}

.footer-links li {
    margin-bottom: 12px;
}

.services-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-slider .slick-list,
.services-slider .slick-track {
    all: unset;
}

.services-slider > div {
    height: 100%;
}

.services-slider > div:hover .service-card {
    z-index: 10;
}

.services-slider .service-card {
    height: 100%;
    transform: scale(.95);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.services-slider > div:hover .service-card {
    z-index: 10;
    box-shadow: 0 20px 40px rgba(18, 48, 33, 0.2);
}

.services-slider div:nth-child(2) .service-card {
    transform: scale(1.05);
}
  
.intenal_banner img {
    width: 100%;
}

.internal_banner_text {
    padding: 12px 0px;
    background: var(--primary-green);
}

.internal_banner_text h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.our_team_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    row-gap: 55px;
    transition: 0.5s all ease;
}

.team_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.5s all ease;
}

.team_img {
    background: #efefef;
    height: 350px;
    margin-bottom: 12px;
}

.team_box h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 1px;
}

.team_box p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
}

.our_team_wrapper .team_box:hover {
    transition: 0.5s all ease;
    transform: scale(1.1);
    cursor: pointer;
}

.team_box {
    transition: 0.5s all ease;
}

.our_team_wrapper .team_box:hover img {
    transition: 0.5s all ease;
    filter: grayscale(0);
}

.single_serv_banner img {
    width: 100%;
}

.sing_ser_banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    margin-top: -55px;
    position: relative;
    padding: 60px 60px 30px 60px;
}

.sing_serv_cont {
    width: 70%;
}

.sing_serv_social {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.single_serv_overview {
    padding: 20px 60px 0px 60px;
    display: flex;
    gap: 140px;
}

section.single_serv_banner {
    position: relative;
}

section.single_serv_banner:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 55px;
    background: #fff;
    width: 40%;
    z-index: 1;
}

.overview_cont {
    width: 60%;
    border-top: 1px solid #000;
    padding-top: 52px;
}

.overview_form {
    width: 40%;
    border-top: 1px solid #000;
    padding-top: 52px;
}

.overview_form h4 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Anta', sans-serif;
}

.overview_cont p {
    font-size: 18px;
    line-height: 27px;
}

section.main_single_serv {
    padding-bottom: 80px;
}

.sing_serv_cont h1 {
    font-family: 'Anta', sans-serif;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 26px;
}

.sing_serv_cont h4 {
    font-size: 22px;
    line-height: 30px;
}

.sing_serv_social a {
    border: 1px solid #000;
    padding: 12px;
    transition: 0.5s all ease;
}

.sing_serv_social a svg {
    width: 30px;
    height: 30px;
    transition: 0.5s all ease;
}

.sing_serv_social a:hover {
    transition: 0.5s all ease;
    border-color: var(--primary-green);
    background: var(--primary-green);
}

.main_ser_team h2.main_title {
    font-size: 52px;
    line-height: 60px;
}

section.main_ser_team.p_100.pt-0 {
    position: relative;
}

.main_ser_team:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: -1;
    background: var(--primary-green);
}

.main_ser_team .team_box {
    color: #fff;
}

.main_serv_insight h2.main_title {
    font-size: 52px;
    line-height: 60px;
}

.serv_icon {
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: 0.5s all ease;
}

.serv_icon svg {
    width: 15px;
    height: 15px;
}

a.serv_title:hover .serv_icon {
    transition: 0.5s all ease;
    border-color: #14a34b;
    background: #14a34b;
}

.insight_page_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

a.ip_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #e4e4e4;
    padding: 20px;
    gap: 24px;
}

.ip_box .lp_img {
    width: 42%;
}

.ip_box .lp_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ip_box .lp_cont {
    width: 58%;
}

.ip_box .lp_cont span.ip_badge {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
    border: 1px solid var(--primary-green);
    padding: 6px 20px;
    text-transform: uppercase;
}

.ip_box .lp_cont h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin: 25px 0px 25px 0px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e4e4e4;
}

.ip_box .lp_cont p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 24px;
}

.ip_box .lp_cont span {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
}

.main_ip .tab_content {
    display: none;
}

.main_ip .tab_content.active {
    display: block;
}

.main_isight_page_tabs ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0px;
}

.main_isight_page_tabs ul a {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    border-bottom: 2px solid transparent;
    padding: 0px 20px 10px 20px;
}

.main_isight_page_tabs ul li.active a {
    border-color: var(--primary-green);
}

section.main_ip.p_100 {
    background: #f3f3f3;
}

.si_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e4e4e4;
}

.si_img img {
    width: 100%;
}

section.main_sip {
    padding: 70px 0px 30px 0px;
}

.si_title {
    padding: 40px 30px;
}

.si_title h1 {
    font-size: 48px;
    font-family: 'Anta', sans-serif;
    line-height: 52px;
    font-weight: 500;
    margin-top: 45px;
}

span.si_badge {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 6px 20px;
    text-transform: uppercase;
}

.si_social {
    margin-top: 70px;
    padding-top: 130px;
    border-top: 1px solid #e4e4e4;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.si_social span {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
}

.social_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.social_links svg {
    width: 20px;
    height: 20px;
}

.social_links a:nth-child(1) {
    background: #0e76a8;
}

.social_links a:nth-child(2) {
    background: #e74818;
}

.social_links a:nth-child(3) {
    background: #e3e3e3;
}

.social_links a {
    padding: 10px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sip_over_grid {
    display: flex;
    flex-direction: row;
    align-items: self-start;
    gap: 52px;
}

.sip_cont p {
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

.sip_cont {
    width: 65%;
}

.sip_related {
    width: 35%;
    background: #f6f6f6;
    padding: 30px;
}

.sip_related h2 {
    font-family: 'Anta', sans-serif;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 24px;
}

.sip_related ul {
    list-style: auto;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sip_related ul li {
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.sip_related ul li a {
    display: flex;
    width: max-content;
    margin-top: 4px;
    text-decoration: underline;
    font-size: 16px;
}

section.main_sip_overview {
    padding: 20px 0px 70px 0px;
}

.main_insight_page .insight_page_grid {
    grid-template-columns: 1fr;
}

.sip_cont h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}

.overview_cont h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}

.head_sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.head_sec h2.second_title {
    margin-bottom: 0px;
}

.ongoing_cnt_box {
    background: #021643;
    padding: 48px;
    display: flex;
    flex-direction: row;
    border-radius: 25px;
}

.ongoing_heading span.ong_badge {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #b8fffc;
}

span.abt_badge {
    font-size: 18px;
    line-height: 28px;
    color: var(--blue);
    text-transform: uppercase;
    padding-left: 72px;
    position: relative;
}

.main_onggoing h2.main_title {
    margin-top: 14px;
    width: 75%;
    line-height: 64px;
}

span.abt_badge:before {
    content: "";
    position: absolute;
    width: 65px;
    height: 1px;
    background: var(--blue);
    top: 50%;
    left: 0;
}

.ongoing_heading {
    width: 35%;
}

.ongoing_cont {
    width: 65%;
}

.ongoing_heading h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}

.ongoing_cont p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 22px;
    line-height: 32px;
}

.ongoing_heading h3 span {
    font-style: italic;
    color: #bfbfbf;
    font-weight: 500;
}

.main_ong_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 45px;
    gap: 24px;
}

.ong_box {
    padding: 28px;
    background: #fff;
    border-radius: 15px;
    transition: 0.5s all ease;
}

section.p_100.main_onggoing {
    background: #effdff;
}

.ong_box .ong_head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ong_cont h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--blue);
    transition: 0.5s all ease;
}

.ong_head .ong_icon {
    background: #c5e6ff;
    padding: 10px;
    border-radius: 50px;
}

.ong_box span {
    font-size: 22px;
    line-height: 32px;
    color: #7b7b7b;
    opacity: 0.5;
    transition: 0.5s all ease;
}

.ong_box p {
    margin-bottom: 0px;
    font-size: 17px;
    line-height: 26px;
    transition: 0.5s all ease;
}

.badge-custom {
    display: inline-block;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-green);
}
       
/* =========================================
   SECTION 1: CONTACT HERO
   ========================================= */
.contact-hero-sec {
    background-color: #ffffff;
}

.contact-hero-sec .contact-info-list {
    margin-top: 28px;
}

.contact-hero-sec h1.second_title {
    margin-bottom: 8px;
}

.contact-hero-sec .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 16px;
}

.contact-hero-sec .contact-info-item svg {
    stroke: var(--blue);
}

.contact-hero-sec .info-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-hero-sec .info-details p, 
.contact-hero-sec .info-details a {
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    margin: 0;
}

.contact-hero-sec .form-card {
    background-color: #95e3ff54;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-hero-sec .tab-wrapper {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
}

.contact-hero-sec .tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 8px;
    position: relative;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.contact-hero-sec button.tab-btn.active {
    border-bottom: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.contact-hero-sec .form-control, 
.contact-hero-sec .form-select {
    border: 1.5px solid #e2e8f0;
    padding: 12px 16px;
    font-size: 15px;
    background-color: #ffffff;
    transition: all 0.3s;
    border-radius: 0px;
}

.contact-hero-sec .form-control:focus, 
.contact-hero-sec .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

.contact-hero-sec .form-label-custom {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-hero-sec .submit-btn {
    background-color: var(--blue);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-hero-sec .submit-btn:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.contact-hero-sec .tab-content {
    display: none;
}

.contact-hero-sec .tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.connect-section h2.second_title {
    margin-bottom: 65px;
}

.connect-section h5 {
    font-weight: bold;
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 34px;
}

.connect-section .inquiry-block {
    border-top: 4px solid #2a7da3;
    padding-top: 25px;
    margin-bottom: 30px;
}

.connect-section .inquiry-link {
    color: #2a7da3;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.connect-section .inquiry-link:hover {
    text-decoration: underline;
}

.connect-section .expert-row {
    margin-top: 30px;
    align-items: center;
}

.connect-section .image-col {
    padding: 0;
    position: relative;
    z-index: 1;
}

.connect-section .expert-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.connect-section .text-col {
    position: relative;
    z-index: 2;
}

.connect-section .expert-box {
    border: 1px solid #84b2c9;
    padding: 100px;
    margin-left: -55%;
    padding-left: 60%;
}

.connect-section .expert-box h3 {
    color: #11283d;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 40px;
}

.connect-section .expert-box p {
    color: #212529;
    margin-bottom: 25px;
}

.connect-section .expert-link {
    font-weight: bold;
}

/* =========================================
   SECTION 3: FAQ ACCORDION
   ========================================= */
.faq-sec {
    background-color: #fafbfc;
    border-top: 1px solid #f0f0f0;
}

.faq-sec .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-sec .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-sec .faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(111, 66, 193, 0.05);
}

.faq-sec .faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-sec .faq-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s;
}

.faq-sec .faq-item.active .faq-header h4 {
    color: var(--primary-green);
}

.faq-sec .faq-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f0f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-sec .faq-item.active .faq-toggle-icon {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-sec .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-sec .faq-content-inner {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
}

.faq-sec h2.second_title {
    line-height: 55px;
    margin-bottom: 18px;
}

section.main_inner_banner {
    padding: 50px 0px;
    position: relative;
    background: #effdff;
}

.main_inner_banner .row {
    align-items: center;
    z-index: 1;
    position: relative;
}

.main_inn_ban_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 12px;
}

.main_inn_ban_img {
    height: 400px;
}

.main_inner_banner h1 {
    text-align: center;
    font-family: 'Anta', sans-serif;
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    line-height: 62px;
}

section.main_inner_banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72%;
    background: #123021;
}

.main_inner_tabs ul {
    display: flex;
    flex-direction: row;
}

.main_inner_tabs {
    margin-top: 28px;
}

.main_inner_tabs ul a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
}

.main_inner_tabs ul li {
    padding: 0px 25px;
    border-right: 1px solid #000;
}

.main_inner_tabs ul li:last-child {
    padding-right: 0px;
    border: none;
}

.main_inner_tabs ul li:first-child {
    padding-left: 0px;
}

.main_onggoing h2.second_title {
    width: 50%;
    margin-top: 20px;
}

section {
    overflow: hidden;
}

.ong_box:hover {
    background: var(--blue);
    transform: translateY(-10px);
    transition: 0.5s all ease;
}

.ong_box:hover span,
.ong_box:hover h3,
.ong_box:hover p {
    color: #fff;
    transition: 0.5s all ease;
}

.main_inner_tabs ul li:first-child a {
    font-weight: 800;
}

.ong_cta {
    text-align: end;
    margin-top: 30px;
}

.genric_dept_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 50px;
}

.gen_dept_img img {
    width: 100%;
}

.gen_dept_img {
    margin-bottom: 20px;
}

.gen_dept_box span {
    background: #14a34b36;
    padding: 8px;
    border-radius: 50px;
    font-size: 12px;
    line-height: 24px;
    color: #14a34b;
}

.gen_dept_box h3 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 18px;
    font-weight: 500;
    color: #000;
}

.pvt_over_gird {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    column-gap: 60px;
}

.pvt_num span {
    font-size: 20px;
    line-height: 30px;
    color: #021643;
    font-weight: 500;
}

.pvt_cont {
    padding-right: 60px;
}

.pvt_num_main {
    background: var(--blue);
    position: relative;
    height: 515px;
}

.pvt_num {
    height: 100%;
    background: #fff;
    padding: 32px;
    position: absolute;
    top: 24px;
    right: 24px;
    left: -24px;
    border: 1px solid #e7e7e7;
}

.pvt_num h3 {
    font-size: 58px;
    line-height: 68px;
    margin: 14px 0px 32px 0px;
    font-weight: 900;
}

.pvt_stats {
    padding: 24px;
    background: #effdff;
}

.pvt_stats h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: #000;
}

.pvt_stats_main {
    display: grid;
    row-gap: 20px;
}

.pvt_stats p {
    margin-bottom: 0px;
}

.pvt_main_press_cont {
    background: url(https://nextstep.net.in/sostenible-advisory/wp-content/uploads/2026/08/What-is-Private-Credit.webp);
    height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0px 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.pvt_press_cont .press_cont {
    padding: 20px;
    background: #fff;
}

.pvt_press_cont .press_cont p {
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
}

.pvt_press_cont a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 12px;
    display: inline-block;
    text-decoration: underline;
    color: #000;
}

.pvt_main_press_cont:before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
}

.pvt_press_title {
    position: relative;
}

.pvt_press_cont {
    position: relative;
}

.pvt_training_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 28px;
    row-gap: 50px;
}

.pvt_train_img img {
    width: 100%;
    height: 100%;
}

.main_serv_gird .pvt_train_img {
    height: 380px;
}

.pvt_train_img {
    margin-bottom: 18px;
}

.pvt_train_cont h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

.pvt_vis_cont {
    background: var(--blue);
    padding: 32px 150px;
}

.pvt_vis_cont p {
    color: #fff;
    margin-bottom: 0px;
}

.pvt_train_cont a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: underline;
}

.attribute-card {
    height: 330px;
    border-radius: 6px;
    background: linear-gradient(160deg, #0a1442 0%, #0d3b73 100%);
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.attribute-card svg {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}

.attribute-card p {
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 48px 0;
}

.attribute-card .plus-btn {
    width: 32px;
    height: 32px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: transparent;
    color: #ffffff;
}

.serv_facilities .row {
    row-gap: 24px;
}

.services_overview {
    padding: 48px;
    background: #effdff;
}

.services_overview span {
    font-size: 18px;
    line-height: 28px;
    color: #1a1a1a;
    font-weight: 600;
}

.services_overview h2.second_title {
    margin-top: 12px;
}

.services_overview p {
    color: #000;
    width: 70%;
}

.main_key_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
    margin-top: 48px;
}

.key_box {
    background: #fff;
    padding: 42px;
    border-radius: 15px;
    height: 300px;
}

.key_box span {
    background: #14a34b36;
    padding: 8px;
    border-radius: 50px;
    font-size: 12px;
    line-height: 24px;
    color: #14a34b;
}

.key_box h5 {
    font-size: 36px;
    line-height: 46px;
    margin-top: 12px;
    font-weight: 700;
    color: #000;
}

.key_box .loc {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.main_key_over p {
    width: 70%;
}

.key_box p {
    width: 100%;
}

.vision_grid h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
}

section.vision_mission_sec .container-fluid {
    padding: 0px;
}

section.intertek_facts_sec {
    text-align: center;
}

section.intertek_facts_sec p {
    font-weight: 700;
}

.intertek_fact_icon img {
    border-radius: 50%;
}

.vision_mission_sec {
    background: url("https://nextstep.net.in/sostenible-advisory/wp-content/uploads/2026/07/mission.webp") center/cover no-repeat;
}

.vision_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 70px;
    align-items: center;
}

.vision_box p {
    width: 80%;
}

.intertek_facts_sec h2.second_title {
    margin-bottom: 52px;
}

.intertek_facts_slider {
    margin-bottom: 38px;
}

.vision_title {
    justify-self: end;
    margin-right: 60px;
}

.vision_box {
    width: 100%;
    padding: 32px;
    background: #0b2438;
    color: #fff;
}

.vision_box.top {
    justify-self: start;
}

.vision_box.bottom {
    justify-self: end;
    display: flex;
    justify-content: end;
}

.vision_title.bottom {
    justify-self: start;
    margin-left: 60px;
}

.intertek_fact_item h4 {
    font-size: 18px;
    text-align: center;
}

.intertek_facts_heading p {
    width: 75%;
    text-align: center;
    margin: 0px;
}

.intertek_fact_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.main_culture .industrial_img {
    display: flex;
    justify-content: end;
}

.key_advantages_static {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.leadership-section .row {
    align-items: center;
}

.leadership-section .col-lg-5,
.leadership-section .col-lg-5 * {
    opacity: 1 !important;
    transform: none !important;
}

@media(max-width: 1799px) {
    .lc_card {
        width: 78%;
    }
}

@media(max-width: 1699px) {
    .lc_card {
        width: 80%;
    }
}

.stat-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.lc_wrap {
    display: flex;
    justify-content: center;
}

.lc_card {
    display: flex;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    gap: 40px;
    width: 90%;
}

.lc_card__left {
    background: #eeece5;
    padding: 48px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(95% - 100px), calc(92% - 100px) 100%, 0% 100%);
    color: #000;
    margin-right: 12px;
}

.lc_card__right {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.lc_card__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.lc_season_badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.lc_designation {
    font-size: 16px;
}

.lc_presented_label {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 4px 0;
}

.lc_presented_name {
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.form-card p {
    margin-bottom: 0px;
}

h3.sg-stat-number.second_title {
    font-size: 38px;
    line-height: 20px;
    margin-bottom: 32px;
    color: var(--primary-green);
}

/* ── Timeline Container Layout ── */
.sg-timeline-container {
    position: relative;
    margin-top: 18px;
}

/* Dotted vertical connector line (Unbroken single line on parent container, positioned at 15% boundary) */
.sg-timeline-container::before {
    content: '';
    position: absolute;
    left: 15%; /* col-3 और col-9 के सटीक बॉर्डर पर अलाइन */
    top: 15px;
    bottom: 85px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #c8c8c0 0px, #c8c8c0 4px, transparent 4px, transparent 9px);
    z-index: 1;
}

.sg-timeline-block {
    position: relative;
    padding-bottom: 60px;
    align-items: center;
}

.sg-timeline-block:last-child {
    padding-bottom: 20px;
}

/* ── Centered Marker (Perfect geometry & alignment) ── */
.sg-tl-marker {
    position: absolute;
    left: 16%; /* वर्टिकल लाइन के बिल्कुल सेंटर पर अलाइन */
    top: 8px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 120px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    background: #fff;
}

/* Dot design */
.sg-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #c8c8c0;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
}

.sg-timeline-block.active .sg-tl-dot {
    border-color: #41B353;
    background: #41B353;
    transform: scale(1.3);
}

/* Year Label design - centered under dot with line-mask background */
.sg-tl-label {
    font-size: 20px;
    font-weight: 500;
    color: #c8c8c0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 4px;
    background: #fff;
    padding: 2px 8px;
    z-index: 3;
    display: inline-block;
    border-radius: 4px;
    white-space: nowrap;
}

.sg-timeline-block.active .sg-tl-label {
    color: #41B353;
    font-weight: 700;
    font-size: 24px;
}

.sg-tl-marker:hover:not(.active) .sg-tl-label {
    color: #888;
}

/* Content block Title design */
.sg-tl-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #000;
    transition: color 0.3s ease;
    font-weight: 800;
}

/* Active side text title goes green */
.sg-timeline-block.active .sg-tl-title {
    color: #41B353;
}

.time_cont p {
    margin-bottom: 0px !important;
}

.main_proffesniol {
    margin: 34px 0px 80px 0px;
}

.main_our_team_details h2 {
    font-weight: 800;
}

.main_proffesniol .sg-stats-grid .sg-stat-item {
    border-right: 1px solid #14a34b78;
    padding-right: 32px;
}

.main_proffesniol .sg-stats-grid .sg-stat-item:nth-child(3) {
    border-right: none;
}

.main_proffesniol .sg-stats-grid .sg-stat-item:nth-child(6) {
    border-right: none;
}

.sg-timeline-header-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    padding-top: 16px;
}

.main_proffesniol .sg-stats-grid .sg-stat-item p.sg-stat-desc {
    width: 75%;
}
.lc_card__left h2.second_title {
    margin-bottom: 18px;
}
.intertek_facts_slider .owl-nav span {
    font-size: 40px;
    line-height: 35px;
}

.intertek_facts_slider .owl-nav button {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.intertek_facts_slider .owl-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.owl-carousel.intertek_facts_slider.owl-loaded.owl-drag {
    margin: 0px;
}