* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding-left: 0px;
}

:root {
    /* ===== Colors ===== */
    --color-primary: #1c1b17;
    --color-secondary: #002346;
    --color-light: #ffffff;
    --color-gray-light: #e5e5e5;
    --color-bg: #f7f7f7;
    --color-border: #dddddd;
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
}

.btn2 {
    color: var(--color-light);
    box-shadow: none;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 21px 42px;
    min-width: 170px;
    border-radius: 30px;
    -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    vertical-align: middle;
    display: inline-block;
    border: none;
    background-color: var(--color-primary);
}

.btn2 span {
    z-index: 9;
}

.btn2:hover span {
    z-index: 9;
    position: relative;
}

.btn2::before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 0%;
    background-color: var(--color-secondary);
    z-index: 1;
    transition: all 0.4s ease-out;
}

.btn2::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    right: 0;
    background-color: var(--color-secondary);
    z-index: 1;
    transition: all 0.4s ease-out;
}

.btn2:hover {
    box-shadow: none;
}

.btn2:hover::before {
    width: 50%;
    border-radius: 0;
}

.btn2:hover::after {
    width: 50%;
    border-radius: 0;
}

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

.banner_section {
    position: relative;
    background: radial-gradient(circle,rgba(0, 35, 70, 1) 0%, rgba(49, 91, 145, 1) 100%);
    padding: 250px 0px;
    background-position: bottom center !important;
    background-repeat:no-repeat !important;
	background-size:cover !important;
}
.banner_section::before {
    content: "";
    background: radial-gradient(circle, rgb(0 35 70 / 87%) 0%, rgb(49 91 145 / 73%) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner_section .container{
    position: relative;
    z-index: 9;
}
.banner_img {
    position: relative;
}
.banner_img::before {
    content: "";
    background-color: #042a42bf;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.banner_img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* .header_content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(0%, -50%);
    z-index: 9;
} */

.header_content h1 {
    color: var(--color-light);
    font-weight: 700;
    text-transform: uppercase;
}

.header_content .btn2 {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

.header_content .btn2:hover {
    color: var(--color-light);
}

.btm_arrow {
    position: absolute;
    width: 17px;
    height: 40px;
    bottom: 2rem;
    left: 50%;
    z-index: 3;
    border-radius: 10px;
    border: 2px solid #fff;
    transform: translateX(-50%);
    cursor: pointer
}

.btm_arrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 4px;
    animation: 1s linear infinite bannerDownArrow
}

.btm_arrow small {
    position: absolute;
    top: -18px;
    font-size: 10px;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    text-transform: uppercase
}

@keyframes bannerDownArrow {
    0% {
        bottom: 25px;
        opacity: 1
    }

    100% {
        bottom: 4px;
        opacity: 0
    }
}

/* Counter Section */
.counter_content h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

/* ---------- collage grid wrapper ---------- */
.text-collage-stats-counter-video-button__col--second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: center;
    padding-left: 45px;
}

.counter_img_four {
    margin-top: -45px;
}

/* individual image tile */
.text-collage-stats-counter-video-button__img {
    position: relative;
    overflow: hidden;
    /* border-radius:4px;
    aspect-ratio:4/5; */
}

.text-collage-stats-counter-video-button__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* make first tile taller - typical collage look */
/* .text-collage-stats-counter-video-button__col--second > div:first-child{
    grid-row:span 2;
    aspect-ratio:4/9;
} */

/* wave svg overlay */
.wave-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}

.text-collage-stats-counter-video-button__img--wave-bottom .wave-shape {
    bottom: -1px;
    top: auto;
    transform: none;
}

.text-collage-stats-counter-video-button__img--wave-top.text-collage-stats-counter-video-button__img--flip-wave .wave-shape {
    top: -1px;
    bottom: auto;
    transform: scaleY(-1);
}

/* ---------- ANIMATION 1: slide-image-to-right ---------- */
.slide-image-to-right {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
}

.slide-image-to-right::before,
.slide-image-to-right::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.slide-image-to-right::before {
    left: 0;
    transform: translateX(0%);
    transition: transform 600ms ease-out;
    z-index: 1;
    background: #b08d57;
}

.slide-image-to-right::after {
    right: 0;
    transform: translateX(-100%);
    transition: transform 1200ms ease-out;
    background: #1a2b4c;
}

.slide-image-to-right img {
    transform: translateX(-100%);
    transition: transform 700ms;
}

.slide-image-to-right.is-animated::before,
.slide-image-to-right.is-animated::after {
    transform: translateX(100%);
}

.slide-image-to-right.is-animated img {
    transform: translateX(0);
}

/* ---------- ANIMATION 2: slide-fade-in ---------- */
.slide-fade-in {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transition: opacity 900ms ease-out 300ms;
    z-index: 3;
    pointer-events: none;
}

.slide-fade-in.is-animated {
    opacity: 0;
}


.counter_number {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 25px;
}

.counter_text {
    text-align: center;
    color: #fff;
    min-width: 180px;
}

.counter_text h4 {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 8px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.counter_text h4 span {
    font-size: 40px;
}

.counter_text h6 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--color-primary);
    margin: 0;
    text-transform: uppercase;
}

/* Odometer default digit color override so it matches the design */
.odometer.odometer-theme-default {
    color: #b08d57;
    font-weight: 700;
}

.map_img {
    margin-top: 60px;
}

/* Sustainability Section */
.sustainability_section {
    background-color: var(--color-secondary);
    padding: 185px 0px 185px;
    position: relative;
    background-position: top center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.sustainability_section::before {
    content: "";
    background: linear-gradient(90deg, #002346d9 40%, #042a4200 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.sustainability_section p {
    position: relative;
    z-index: 1;
}

.heading_title h2 {
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.heading_title h2::before {
    content: "";
    width: 100px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: translate(-50%, 50%); */
}

.sustainability_section h2 span {
    color: var(--color-light);
    display: block;
}

.sustainability_section_second {
    padding-bottom: 60px;
}

.overlap_box {
    margin-top: -100px;
    z-index: 2;
    position: relative;
}

.sustainability_section_second_content {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0px 1px 8px 4px #33333326;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.bg_image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.bg_image img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    opacity: 0.2;
}

.sustainability_section_second_content h3 {
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    font-size: 22px;
}

.sustainability_section_second_content h3::before {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--color-secondary);
    position: absolute;
    bottom: 0;
    left: 0;
}

.sustain_box {
    display: flex;
    grid-gap: 25px;
    margin-bottom: 20px;
    align-items: center;
    z-index: 9;
    position: relative;
}
.sustainability_section_second_content ul{
    z-index: 9;
    position: relative;
}
.sustainability_section_second_content p{
    z-index: 9;
    position: relative;
}
.sustain_icon {
    width: 65px;
    height: 65px;
    background: #cfcfcf;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustain_icon img {
    width: 38px;
}

.sustainability_section_second_content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.sustainability_section_second_content li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--color-secondary);
}

.sustainability_icon {
    margin-top: 50px;
}

.sustainability_icon .heading_title h2::before {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--color-secondary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.sustainability_icon_slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); */
}

/* the actual scrolling track - flex row, width = auto based on content */
.sustainability_icon_track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--marquee-duration, 30s) linear infinite;
}

/* pause smoothly on hover so user can read/click "Read More" */
.sustainability_icon_slider:hover .sustainability_icon_track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--marquee-width, 0px)));
    }
}

/* ============================================================
     FLIP BOX (unchanged behaviour, just spaced for the track)
     ============================================================ */
.sustainability_flip_box {
    perspective: 1200px;
    width: 180px;
    height: 180px;
    flex: 0 0 auto;
    margin: 0 16px;
}

.sustainability_flip_box_inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.sustainability_flip_box:hover .sustainability_flip_box_inner {
    transform: rotateY(180deg);
}

.sustainability_icon_front,
.sustainability_icon_back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius:8px; */
}

.sustainability_icon_front {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sustainability_icon_front img {
    max-width: 180px;
    height: auto;
}

.sustainability_icon_back {
    transform: rotateY(180deg);
}

.sustainability_icon_back.one {
    background-color: #ef402b;
}

.sustainability_icon_back.two {
    background-color: #e11484;
}

.sustainability_icon_back.three {
    background-color: #cf8d2a;
}

.sustainability_icon_back.four {
    background-color: #f36d25;
}

.sustainability_icon_back.five {
    background-color: #8f1838;
}

.sustainability_icon_back.six {
    background-color: #279b48;
}

.sustainability_icon_back.seven {
    background-color: #d3a029;
}

.sustainability_icon_back.eight {
    background-color: #eb1c2d;
}

.sustainability_icon_back.nine {
    background-color: #3eb049;
}

.sustainability_icon_back.ten {
    background-color: #007dbc;
}

.sustainability_icon_back.eleven {
    background-color: #48773e;
}

.sustainability_icon_back.twelve {
    background-color: #f99d26;
}

.sustainability_icon_back .btn2 {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

.sustainability_icon_back .btn2:hover span {
    color: #fff;
}

.first-section {
    /* height: 100vh; */
    background-color: var(--color-secondary);
    padding: 80px 0px;
    background: url(http://jayachandran.legal/wp-content/uploads/2026/08/magnific_luxury-glass-office-signa_LwOI8rFswO.jpg);
    position: relative;
    background-position: center top;
}
.first-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #0000007d;
}
.first-section .container{
	position:relative;
	z-index:9;
}


.energy_section p {
    color: var(--color-light);
    font-size: 20px;
    width: 300px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    position: absolute;
    left: 0;
    font-weight: 500;
    padding-top: 10px;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out
}

h2.home-heading {
    color: #fff;
    font-weight: 700;
}

.energy_section ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    padding-bottom: 150px;
}

.energy_section ul li {
    border-top: 1px solid #00539B;
    position: relative;
    padding-left: 20px;
    padding-top: 12px;
    padding-bottom: 8px;
    width: 100%;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out
}

.energy_section ul li:before {
    content: '';
    background-color: var(--color-light);
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    top: -5px;
    z-index: 1;
    left: 10px
}

.energy_section ul li:after {
    content: '';
    background-color: #002346;
    width: 30px;
    height: 5px;
    position: absolute;
    top: -2px;
    left: 0
}

.energy_section ul li:last-child {
    border-bottom: 1px solid #00539B;
    margin-left: 70px;
    width: 260px
}

.energy_section ul li:last-child>div {
    position: static
}

.energy_section ul li:last-child>div a {
    font-size: 30px
}

.energy_section ul li:last-child>div:hover a {
    font-size: 30px
}

.energy_section ul li:last-child:after {
    width: 24px
}

.energy_section ul li:last-child:before {
    content: '';
    background-color: #002346;
    width: 28px;
    height: 5px;
    position: absolute;
    bottom: -2px;
    left: -1px;
    top: auto
}

.energy_section ul li a {
    color: var(--color-light);
    font-size: 24px;
    transition: 0.25s all ease-in-out;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out
}

.energy_section ul li>div {
    position: absolute;
    top: 15px;
    left: 30px;
    width: 100%
}

.energy_section ul li>div:hover p {
    opacity: 1;
    height: auto
}

.list-2.active p {
    opacity: 1;
    height: auto
}

.energy_section ul li>div:hover a {
    font-size: 30px;
    text-decoration: none;
    cursor: default
}

.execution-ul-3 li:nth-child(2),
.execution-ul-3 li:first-child {
    width: 60%
}

.execution-ul-3 li:nth-child(3) {
    width: 120%
}

.execution-ul-1 li:nth-child(2),
.execution-ul-1 li:nth-child(3) {
    width: 60%
}

.execution-ul-1 li:nth-child(1) {
    width: 120%
}

.execution-ul-2 li:nth-child(3),
.execution-ul-2 li:first-child {
    width: 60%
}

.execution-ul-2 li:nth-child(2) {
    width: 120%
}

/* ========================Expertise Css ==========================*/
/* ===== Expertise Section Wrapper ===== */
.expertise_section {
    position: relative;
}

.expertise_heading {
    text-align: center;
}

/* ===== Horizontal Tab Navigation (Dots + Line) ===== */
.expertise_heading ul {
    grid-gap: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 50px 0 40px 0;
    padding: 0;
    position: relative;
}

/* Background static line (dim) */
.expertise_heading ul::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
    z-index: 0;
}

/* Active/progress line (yeh JS se width ke through fill hogi) */
.expertise_heading ul .line-fill {
    position: absolute;
    top: 50%;
    left: 5%;
    height: 1px;
    width: 0%;
    background: #ffffff;
    transform: translateY(-50%);
    transition: width 0.5s ease;
    z-index: 0;
}

.expertise_heading ul li {
    position: relative;
    z-index: 1;
}

.expertise_heading ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease, font-weight 0.3s ease;
    background: #0f0e0be6;
    padding: 0 10px;
}

.expertise_heading ul li a::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.expertise_heading ul li a.active {
    color: #ffffff;
    font-weight: 600;
}

.expertise_heading ul li a.active::after {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* ===== Swiper Slider ===== */
.expertise-slider {
    width: 100%;
    overflow: hidden;
}

.expertise-slider .swiper-wrapper {
    display: flex;
}

/* Har slide desktop/mobile dono par full width - ek time par 1 hi dikhe */
.expertise-slider .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

.tab_content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tab_content_left {
    flex: 1;
}

.tab_content_left h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-light);
}

.tab_content_left h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.tab_content_left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.tab_content_img {
    flex: 1;
}

.tab_content_img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.tab_content_left .btn2 {
    color: var(--color-secondary);
    background-color: var(--color-light);
}

.tab_content_left .btn2::before, .sucess_content .btn2::before,
.tab_content_left .btn2::after, .sucess_content .btn2::after {
    background-color: var(--color-secondary);
}
.tab_content_left .btn2:hover span, .sucess_content .btn2:hover span{
    z-index: 9;
    position: relative;
    color: var(--color-light);
}
/* Impact Section */
.imapact_section {
    background: #ffffff;
    padding: 80px 0;
}

.imapct_main {
    display: flex;
    gap: 40px;
    height: 100%;
}

/* ===== Generic block wrapper ===== */
.ic_block {
    width: 100%;
}

/* ===== Heading (Impact / Careers) ===== */
.ic_heading h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 25px;
}

/* ===== Nav List ===== */
.ic_nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ic_nav li {
    border-bottom: 1px solid #e4e8ec;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.ic_nav li:last-child {
    margin-bottom: 0;
}

.ic_nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.ic_nav li a:hover {
    opacity: 0.65;
}

.ic_nav li a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--color-secondary);
    flex-shrink: 0;
}

/* ===== Quote Block ===== */
.ic_quote {
/*     background: #f2f5f8; */
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    padding: 40px 38px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
}

.ic_quote::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    background: var(--color-secondary);
    z-index: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.ic_quote:hover::after {
    height: 100%;
}

.ic_quote:hover .ic_quote_top p {
    color: #ffffff;
}

.ic_quote:hover .ic_quote_icon svg {
    fill: #fff;
}

.ic_quote:hover .ic_quote_footer .ic_author {
    color: #ffffff;
}

.ic_quote:hover .ic_quote_footer .ic_dot {
    background: #ffffff;
}

.ic_quote_footer .ic_dot {
    transition: background 0.45s ease;
}

.ic_quote_top svg.mark {
    transition: fill 0.45s ease;
    position: relative;
    z-index: 1;
}

.ic_quote:hover .ic_quote_top svg.mark {
    fill: #ffffff;
}

.ic_quote_icon {
    position: absolute;
    top: 10px;
    right: 18px;
    width: 64px;
    height: 64px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 9;
}

.ic_quote_icon svg {
    width: 100%;
    height: 100%;
    fill: var(--brand);
}

/* Top content wrapper (mark + paragraph) */
.ic_quote_top {
    position: relative;
    z-index: 1;
}

.ic_quote_top svg.mark {
    width: 30px;
    height: 24px;
    fill: var(--color-secondary);
    margin-bottom: 14px;
    display: block;
    background-color: transparent;
}

.ic_quote_top p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-primary);
    margin: 0;
}

/* Footer: dot + author */
.ic_quote_footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.ic_quote_footer .ic_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
}

.ic_quote_footer .ic_author {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.3px;
    color: var(--brand);
    text-transform: uppercase;
}
.ic_block.impact {
    background: url(http://jayachandran.legal/wp-content/uploads/2026/08/ipact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position:relative;
}
.ic_block.career {
    background: url(http://jayachandran.legal/wp-content/uploads/2026/08/career-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position:relative;
}
.ic_block.founder{
	background: url(http://jayachandran.legal/wp-content/uploads/2026/08/founder.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
	position:relative;
}
.ic_block.co_founder{
	background: url(http://jayachandran.legal/wp-content/uploads/2026/08/co-founder-1.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
	position:relative;
}
.ic_block.co_founder:before {
    background: #ffffff94;
}
.ic_block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffffd1;
}
.ic_block .ic_heading, .ic_block  .ic_nav{
	position:relative;
	z-index:9;
	padding:10px;
}

/* Sucess Section */
/* ================= HERO SECTION ================= */
.sucess_section {
    position: relative;
    overflow: hidden;
    padding: 90px 0px 0px;
    background-image:
        linear-gradient(120deg, rgba(0, 35, 70, 0.94) 0%, rgba(0, 35, 70, 0.82) 45%, rgba(10, 61, 107, 0.75) 100%),
        url('../img/sucess-bg.jpg');
    background-size: cover;
    background-position: center;
}

.sucess_content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sucess_content h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 62px;
    color: var(--color-light);
    margin: 0 0 25px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.sucess_content .sucess_sub {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 21px;
    color: var(--color-light);
    margin: 0 0 12px;
}

.sucess_content .sucess_sub .highlight {
    background: var(--color-light);
    color: var(--color-secondary);
    padding: 2px 8px;
    font-weight: 600;
}

.sucess_content .sucess_desc {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #d7e2ee;
    margin: 0 0 35px;
}

.sucess_content .btn2 {
    background: #ffffff;
    color: var(--color-secondary);
}

.sucess_content .btn2:hover::before,
.sucess_content .btn2:hover::after {
    background: var(--color-secondary);
}
.sucess_content .btn2:hover span{
    color: var(--color-light);
}
/* ================= INSIGHTS ROW ================= */
.insights_row {
    position: relative;
    z-index: 2;
    display: flex;
    margin-top: 70px;
    border-top: 2px solid rgba(255, 255, 255, 0.35);
}

.insight_card {
    flex: 1;
    padding: 26px 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.35s ease, transform 0.35s ease;
}

.insight_card:last-child {
    border-right: none;
}

/* progress bar — bottom border line jo fill hoti hai */
.insight_progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--color-light);
}

/* sirf active card ki bar animate hogi */
.insight_card.active .insight_progress {
    animation: insightFill 5s linear forwards;
}

@keyframes insightFill {
    from { width: 0%; }
    to   { width: 100%; }
}

.insight_card.active {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.insight_card .tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9fb8d4;
    text-transform: uppercase;
    margin-bottom: 14px;
    transition: color 0.35s ease;
}

.insight_card:hover .tag {
    color: var(--color-light);
}

.insight_card h4 {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.4;
    margin: 0 0 40px;
}

.insight_card a {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-light);
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 14px;
    transition: color 0.35s ease, gap 0.3s ease;
}

.insight_card:hover a {
    color: var(--color-light);
}

/* ================= BOTTOM CTA BAND ================= */
.cta_band {
    background: var(--color-secondary);
    padding: 55px 0px;
    display: flex;
    gap: 90px;
    flex-wrap: wrap;
}

.cta_link {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--color-light);
    font-weight: 700;
    font-size: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 18px;
    flex: 1;
    min-width: 260px;
    transition: opacity 0.3s ease, gap 0.3s ease;
    justify-content: center;
}

.cta_link:hover {
    opacity: 0.8;
    gap: 26px;
}

.cta_link svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cta_link:hover svg {
    transform: translateX(6px);
}

.cert {
    background: #f3f6f9;
    background-image: radial-gradient(circle, rgba(0, 35, 70, 0.05) 1px, transparent 1px);
    border: 1px solid var(--color-secondary);
    border-radius: 3px;
    padding: 24px 18px;
    text-align: center;
    border-bottom: 4px var(--color-secondary) solid;
    transform: translateX(0px);
    transition-duration: 0.5s;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    position: relative;
    height: 100%;
}

.cert:hover {
    transform: translateY(-8px);
    background-color: #ecf1f6;
    box-shadow: 0 16px 34px rgba(0, 35, 70, 0.1);
}

.cert .ic {
    width: 75px;
    height: 75px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    margin-top: -50px;
}

.cert h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
}

.ic img {
    filter: invert(1);
    width: 40px;
}

.news_slider,
.recognitions_slider {
    overflow: hidden;
}

.news_slider .swiper-wrapper,
.recognitions_slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.new_section {
    background: #f2f9ff;
}

.news_box {
    position: relative;
}

.news_box h4 {
    font-size: 18px;
    font-weight: 600;
}

.news_box p {
    margin: 10px 0px;
    font-size: 12px;
}

.news_box a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}

.new_img {
    position: relative;
    overflow: hidden;
}

.news_box .new_img img {
    transform: scale(1);
    transition: 1s ease-in-out;
}

.news_box:hover .new_img img {
    transform: scale(1.2);
}

.btn3:hover span {
    z-index: 9;
    position: relative;
    color: var(--color-light);
}

.news_head h2::before {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--color-secondary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.awards_section {
    position: relative;
}

.awards_section::before {
    content: "";
    background-color: #00234663;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.awards_section .container {
    position: relative;
    z-index: 9;
}

.award_head h2::before {
    left: 50%;
    transform: translate(-50%, 50%);
}

.award_box {
    /* background: #0023468a; */
    height: 100%;
    border-bottom: 5px #fff solid;
    padding: 10px;
}

.award_box h4,
.award_box p {
    color: var(--color-light);
}

.award_box h4 {
    font-size: 18px;
}

.award_box p {
    font-size: 15px;
}

.award_img {
    display: flex;
    width: 70px;
    background: #fff;
    margin-bottom: 14px;
    border-radius: 50%;
    height: 70px;
    line-height: 70px;
    justify-content: center;
}

.award_img img {
    filter: invert(1);
    width: 55px;
}

.awards_section .btn2 {
    color: var(--color-secondary);
    background-color: var(--color-light);
}

.awards_section .btn2::before,
.awards_section .btn2::after {
    background-color: var(--color-light);
}

.overview_section p {
    /* padding-left: 60px; */
    color: var(--color-secondary);
}

.overview_section h2 {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 26px;
}

.overview_section h6 {
    font-size: 18px;
    font-style: italic;
    margin: 15px 0px;
    /* padding-left: 60px; */
    color: var(--color-secondary);
}

.overview_section a {
    /* padding-left: 60px; */
    color: var(--color-secondary);
}

.overview_section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f2f9ff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* height: 100%; */
    border-radius: 10px;
}

.pro_bono>div:nth-child(even) {
    margin-top: 40px;
}

.innovation_content h2 {
    font-weight: 600;
}

.innovation_content_img img {
    border-radius: 10px;
}

.recognitions_box img {
    width: 140px;
    height: 120px;
    object-fit: contain;
}

.recognitions_slider .swiper-wrapper {
    align-items: center;
}

.alumin_section {
    background-color: var(--color-secondary);
    margin-top: 80px;
    padding: 40px;
    border-radius: 40px 0px;
}

.footer_section {
    position: relative;
    background-color: var(--color-secondary);
    padding: 60px 0px 20px;
}

.footer_box h5 {
    color: var(--color-light);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer_box ul li {
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.footer_box ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-light);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.footer_box ul li a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--color-light);
    flex-shrink: 0;
}

.copywrite {
    background-color: var(--color-secondary);
    border-top: 1px #ffffff2b solid;
    padding: 15px 0px;
}

.footer_social ul li a {
    background: #fff;
    color: #002346;
    width: 30px;
    display: block;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.footer_social ul {
    display: flex;
    grid-gap: 10px;
}

/* Map Css */
.map {
   padding-bottom: 60px;
}

.map__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dce0e6;
    padding: 8px 10px 8px 10px;
    gap: 20px;
    flex-wrap: wrap;
}

.map__title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
}

.map__select-container {
    position: relative;
    flex: 1;
    max-width: 480px;
    min-width: 240px;
    display: flex;
    background-color: #fff;
}

.map__select-display {
    flex: 1;
    height: 38px;
    border: 1px solid #c2c7ce;
    background: #fff;
    border-radius: 2px 0 0 2px;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.map__select-display.placeholder {
    color: #8b93a0;
}

.map__select-toggle {
    width: 38px;
    height: 38px;
    background: #6a7482;
    border: 1px solid #6a7482;
    border-left: none;
    border-radius: 0 2px 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.map__select-toggle svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.map__select {
    display: none;
}

.map__dropdown {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #c3c8cf;
    border-radius: 2px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
    z-index: 50;
    display: none;
}

.map__dropdown.open {
    display: block;
}

.map__dropdown-search {
    padding: 8px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
}

.map__dropdown-search input {
    width: 100%;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 0 10px;
    font-size: 13px;
}

.map__group-label {
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #8a92a0;
    background: #f7f8f9;
}

.map__option {
    padding: 7px 14px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.map__option:hover,
.map__option.active {
    background: #eef1f5;
    color: #0d5eb8;
}

.map__body {
    background-color: #dce0e6;
    padding: 0px 10px 10px;
}

.map__container {
    position: relative;
    background: #fff;
    border: 1px solid #c2c7ce;
    height: 320px;
    overflow: hidden;
}

.map__wrapper {
    width: 100%;
    height: 100%;
    cursor: grab;
}

.map__wrapper:active {
    cursor: grabbing;
}

.map__wrapper svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map__country {
    fill: #919aa7;
    stroke: #ffffff;
    stroke-width: 0.7;
    transition: fill .15s ease;
}

.map__country:hover {
    fill: var(--color-secondary);
}

.map__country.is-active {
    fill: var(--color-secondary) !important;
}

.map__zoom {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
}

.map__zoom a {
    width: 28px;
    height: 28px;
    background: #b2b8c2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
    user-select: none;
}

.map__zoom a:hover {
    background: #9da4b0;
}

.map__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #8b93a0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 20;
}

/* ============================================= */
/* Responsive */
/* ============================================= */

@media (max-width:900px) {
    .text-collage-stats-counter-video-button__col--second {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:767px) {
    .energy_section ul {
    display: block;
    padding-bottom: 10px;
}
.expertise_heading {
    text-align: left;
}

    .counter_number {
        grid-template-columns: 1fr 1fr;
    }

    .header_content h1 {
        font-size: 26px;
    }

    .energy_section ul li {
        padding-left: 10px;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .energy_section ul li:last-child {
        margin-left: 15px;
        padding-left: 0px;
        padding-bottom: 20px;
    }

    .energy_section ul li:last-child::before,
    .energy_section ul li:last-child::after {
        display: none;
    }

    .energy_section ul li>div {
        position: static;
    }

    .energy_section ul li>div p {
        position: static;
        opacity: 1;
        height: auto;
        font-size: 16px;
        line-height: 30px;
        width: 100%;
    }
.execution-ul-2 li:nth-child(2) {
    width: 100%;
}
.execution-ul-2 li:nth-child(3), .execution-ul-2 li:first-child {
    width: 100%;
}
   .expertise_heading ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
}

    .expertise_heading ul::-webkit-scrollbar {
        display: none;
    }

    .expertise_heading ul li a {
        font-size: 13px;
    }

    .tab_content {
        flex-direction: column;
    }

    .tab_content_img {
        order: -1;
        margin-bottom: 20px;
    }

    .ic_heading h3 {
        font-size: 26px;
    }

    .ic_quote {
        padding: 32px 26px 26px;
    }

    .ic_quote_top p {
        font-size: 16px;
    }

    .imapct_main {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .insights_row {
        margin-top: 50px;
        flex-direction: column;
    }

    .insight_card h4 {
        margin: 0 0 15px;
    }

    .insight_card {
        border-right: 0px;
    }

    .cta_link {
        font-size: 20px;
        min-width: auto;
    }
    .sucess_content h1 {
    font-size: 32px;
}
.cert {
    margin-bottom: 50px;
    height: auto;
}
.counter_text {
    min-width: auto;
}
.counter_content h2 {
    font-size: 26px;
}
.counter_text h4 span {
    font-size: 30px;
}
.counter_number {
    margin-bottom: 15px;
}
.map__container {
    height: 250px;
}
.heading_title h2 {
    font-size: 26px;
}
.sustain_box {
    align-items: flex-start;
    flex-direction: column;
    align-content: flex-start;
}
.sustainability_section_second_content {
    height: auto;
    margin-bottom: 25px;
}
h2.home-heading {
    font-size: 26px;
    margin-bottom: 20px;
}
.banner_section {
    padding: 165px 0px;
}
.sustainability_section {
    padding: 85px 0px 110px;
}
.bg_image img {
    object-fit: cover;
}
.awards_section  .col-12.col-sm-6.col-md-3 {
    margin-bottom: 20px;
}
.usp_section.section-padding {
    padding-bottom: 40px;
}
}

