/* ========================== Home page Hero section ================================== */
/* =========================================
HERO SECTION
========================================= */

.hero{
min-height:80vh;
display:flex;
align-items:center;
overflow:hidden;
padding:130px 0 30px 0;
}


/* =========================================
CONTAINER
========================================= */

.hero-container{
width:1200px;
margin:0 auto;
display:flex;
flex-direction:column;
gap:80px;
position:relative;
}


/* =========================================
ROW
========================================= */

.hero-row{
display:flex;
align-items:center;
justify-content:space-between;
}


/* =========================================
LEFT CONTENT
========================================= */

.hero-left{
width:45%;
}


/* =========================================
TITLE
========================================= */

.hero-title{
font-size:56px;
line-height:1.15;
font-weight:300;
color:#3f3f3f;
overflow:hidden;
}


/* TITLE LINE ANIMATION */

.hero-title .line{
display:block;
opacity:0;
transform:translateY(80px);
animation:lineReveal 0.8s ease forwards;
}

.hero-title .line:nth-child(1){
animation-delay:0.2s;
}

.hero-title .line:nth-child(2){
animation-delay:0.4s;
}

.hero-title .line:nth-child(3){
animation-delay:0.6s;
}

.hero-title .line:nth-child(4){
animation-delay:0.8s;
}


/* HIGHLIGHT TEXT */

.highlight{
color:#0052a1;
font-weight:600;
letter-spacing:1px;
}


/* =========================================
ABOUT CONTENT
========================================= */

.about-content{
max-width:650px;
position:relative;
z-index:2;
}

.about-title{
font-size:32px;
font-weight:600;
color:#0e2a47;
margin-bottom:10px;
line-height:1.3;
}

.about-underline{
width:120px;
height:4px;
background:#0052a1;
margin:12px 0 18px 0;
border-radius:2px;
}

.about-content p{
font-size:14.5px;
line-height:1.65;
color:#5b6775;
margin-bottom:14px;
text-align:justify;
text-justify:inter-word;
}


/* =========================================
SCROLL / SEQUENCE ANIMATION
========================================= */

.scroll-animate .animate-item{
opacity:0;
transform:translateY(60px);
transition:all 0.8s ease;
}

.scroll-animate.active .animate-item{
opacity:1;
transform:translateY(0);
}

.scroll-animate.active .animate-item:nth-child(1){
transition-delay:0.2s;
}

.scroll-animate.active .animate-item:nth-child(2){
transition-delay:0.4s;
}

.scroll-animate.active .animate-item:nth-child(3){
transition-delay:0.6s;
}

.scroll-animate.active .animate-item:nth-child(4){
transition-delay:0.8s;
}

.scroll-animate.active .animate-item:nth-child(5){
transition-delay:1s;
}


/* =========================================
IMAGE SIDE
========================================= */

.hero-right{
width:55%;
display:flex;
align-items:flex-start;
perspective:1500px;
position:relative;
top:-40px;
justify-content:flex-end;
}


.hero-row.reverse .hero-right{
justify-content:flex-start;
margin-left:-60px;
}

.hero-row.reverse .hero-left{
padding-left:30px;
}


/* =========================================
CAROUSEL
========================================= */

.carousel{
position:relative;
width:520px;
height:380px;
transform-style:preserve-3d;
transform:rotateZ(-25deg);
animation:spin 50s linear infinite;
}

.carousel span{
position:absolute;
top:50%;
left:50%;
width:280px;
height:170px;
margin:-85px -140px;

transform:
rotateY(calc(var(--i) * 45deg))
translateZ(360px);
}

.carousel img{
width:100%;
height:100%;
object-fit:cover;
border-radius:18px;
box-shadow:0 30px 50px rgba(0,0,0,0.25);
}


/* =========================================
CAROUSEL ROTATION
========================================= */

@keyframes spin{

0%{
transform:rotateZ(-25deg) rotateY(0deg);
}

100%{
transform:rotateZ(-25deg) rotateY(360deg);
}

}


/* =========================================
TEXT REVEAL ANIMATION
========================================= */

@keyframes lineReveal{

0%{
opacity:0;
transform:translateY(60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}


/* =========================================
LARGE TABLET
========================================= */

@media(max-width:1200px){

.hero-container{
width:95%;
}

.hero-title{
font-size:48px;
}

.carousel{
transform:rotateZ(-25deg) scale(0.9);
}

}


/* =========================================
TABLET
========================================= */

@media(max-width:992px){

.hero{
align-items:flex-start;
padding-top:130px;
}

.hero-row{
flex-direction:column;
text-align:center;
}

.hero-row .hero-left{
order:1;
}

.hero-row .hero-right{
order:2;
}

.hero-row.reverse .hero-left{
order:1;
padding-left:0;
}

.hero-row.reverse .hero-right{
order:2;
margin-left:0;
}

.hero-left,
.hero-right{
width:100%;
}

.hero-left{
margin-bottom:0px;
}

.hero-right{
justify-content:center;
top:0;
}

.about-content{
margin:0 auto;
}

.about-underline{
margin-left:auto;
margin-right:auto;
}

.carousel{
transform:rotateZ(-25deg) scale(0.8);
}

}


/* =========================================
MOBILE
========================================= */

@media(max-width:600px){

.hero{
padding-top:125px;
}

.hero-title{
font-size:36px;
}

.about-title{
font-size:26px;
}

.about-content p{
font-size:13.5px;
}

.carousel{
transform:rotateZ(-25deg) scale(0.65);
}
}




/* =================HOME ABOUT START================= */


/* Background Animation */
.jsrabthm-bg-animation {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: url('../images/bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.35; /* Increased opacity for better visibility */
    filter: invert(1);
    z-index: 0;
    pointer-events: none;
    animation: jsrabthm-pan 8s ease-in-out alternate infinite;
}

@media (max-width: 991px) {
    .jsrabthm-bg-animation {
        background-size: 100% 100% !important; /* Force stretch to fill both width and height completely */
    }
}

.jsrabthm-bg-animation.reverse {
    animation: jsrabthm-pan-flipped 8s ease-in-out alternate infinite;
}

@keyframes jsrabthm-pan-flipped {
    0% {
        transform: scaleX(-1) translateX(-10%);
    }

    100% {
        transform: scaleX(-1) translateX(10%);
    }
}

@keyframes jsrabthm-pan {
    0% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(10%);
    }
}

.jsrabthm-logo{
    margin-bottom:10px;
}

.jsrabthm-logo img{
    width:70px;
    height:auto;
    display:block;
    margin:0 auto;
    animation: flip-continuous 4s linear infinite;
}

@keyframes flip-continuous {
    0% { transform: perspective(600px) rotateY(0deg); }
    25% { transform: perspective(600px) rotateY(90deg); }
    25.001% { transform: perspective(600px) rotateY(-90deg); }
    50% { transform: perspective(600px) rotateY(0deg); }
    75% { transform: perspective(600px) rotateY(90deg); }
    75.001% { transform: perspective(600px) rotateY(-90deg); }
    100% { transform: perspective(600px) rotateY(0deg); }
}

.jsrabthm-title{
    font-weight:700;
    margin-bottom:15px;
    font-family: Cinzel, serif;
    color: #000000; /* Classic corporate navy blue */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jsrabthm-content{
    max-width:1200px;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:#000000;
    font-weight:400;
    text-align: justify;
}

.jsrabthm-btn{
    display:flex;
    width: max-content;
    align-items:center;
    justify-content:center;
    margin: 25px auto 0 auto;
    min-width:auto;
    height:48px;
    padding:0 35px;
    background: #ff9600; /* Classic brand orange */
    color:#fff;
    text-decoration:none;
    border-radius:40px; /* Corporate slightly rounded corners instead of full pill */
    font-size:15px;
    font-weight:600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition:all .3s ease;
}

.jsrabthm-btn:hover{
    background: #369bd6; /* Corporate brand blue on hover */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform:translateY(-2px);
}

/* Split Layout for About Section */
.jsrabthm-header {
    margin-bottom: 10px;
    text-align: center;
}



/* Large Screens */
@media (width <=1400px){
    .jsrabthm-title{
        }

    .jsrabthm-content{
        font-size:14px;
    }

}

/* Laptop */
@media (width <=1200px){
    #jsrabthm{
        padding:30px 25px;
    }

    .jsrabthm-title{
        }

    .jsrabthm-content{
        font-size:14px;
        line-height:1.9;
    }

}

/* Tablet */
@media (width <=992px){
    .jsrabthm-title{
        }

    .jsrabthm-content{
        font-size:14px;
    }

    .jsrabthm-btn{
        height:48px;
        font-size:14px;
    }

    .jsrabthm-layout-split {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }
}

/* Mobile */
@media (width <=768px){
    #jsrabthm{
        padding:30px 18px;
    }

    .jsrabthm-logo img{
        width:60px;
    }

    .jsrabthm-title{
        margin-bottom:25px;
    }

    .jsrabthm-content{
        font-size:12px;
        line-height:1.8;
    }

    .jsrabthm-btn{
        height:46px;
        margin-top:40px;
        font-size:14px;
    }

}

/* Small Mobile */
@media (width <=480px){
    #jsrabthm{
        padding:30px 15px;
    }

    .jsrabthm-logo img{
        width:55px;
    }

    .jsrabthm-title{
        }

    .jsrabthm-content{
        font-size:12px;
        line-height:1.8;
    }

    .jsrabthm-btn{
        height:44px;
        font-size:12px;
    }

}

/* =================HOME ABOUT END================= */

/* ==========================
   JSR CERTIFIED SECTION
========================== */

#jsrcertifiedhm{
    background: linear-gradient(135deg, rgba(239, 124, 0, 0.05) 0%, rgba(0, 158, 227, 0.05) 100%);
    padding:30px 0;
    width:100%;
}

.jsrcertifiedhm-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.jsrcertifiedhm-content{
    max-width:1000px;
    margin:0 auto;
    text-align:center;
}

.jsrcertifiedhm-title{
    font-family:Cinzel, serif;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin:0 0 15px;
}

.jsrcertifiedhm-desc{
    font-size:14px;
    line-height:1.6;
    color:#555;
    margin:0 auto;
    max-width:800px;
}

.jsrcertifiedhm-divider{
    width:70%;
    height:1px;
    background:#d9dfdc;
    margin:15px auto;
}

.jsrcertifiedhm-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.jsrcertifiedhm-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:25px 20px;
    border-radius:12px;
    border:1px solid transparent;
    position:relative;
}

/* Vertical Middle Lines */
.jsrcertifiedhm-item:not(:last-child)::after{
    content: '';
    position: absolute;
    right: -15px; /* Exactly in the middle of the 30px gap */
    top: 15%;
    height: 70%;
    width: 1px;
    background: #d9dfdc; /* Matching horizontal line color */
    pointer-events: none;
    display: block;
}

.jsrcertifiedhm-item:hover{
    transform:translateY(-10px);
    background:#fff;
    box-shadow:0 15px 40px rgb(0 0 0 / 6%);
    border:1px solid #f0f0f0;
}

.jsrcertifiedhm-icon{
    width:42px;
    min-width:42px;
    height:42px;
    color:#369bd6;
    transition:all 0.4s ease;
}

.jsrcertifiedhm-item:hover .jsrcertifiedhm-icon{
    transform:scale(1.15) rotate(-5deg);
    color:#ff9600;
}

.jsrcertifiedhm-icon svg,
.jsrcertifiedhm-icon img{
    width:100%;
    height:100%;
    object-fit: contain;
}

.jsrcertifiedhm-item h4{
    font-size:15px;
    font-weight:600;
    color:#2f2f2f;
    margin:0 0 8px;
    white-space: nowrap;
}

.jsrcertifiedhm-item p{
    font-size:14px;
    font-weight:400;
    color:#555;
    line-height:1.6;
    margin:0;
}

/* Entrance Animation for Built on Trust Section */
.jsrcert-anim-ready .jsrcertifiedhm-content > *,
.jsrcert-anim-ready .jsrcertifiedhm-divider,
.jsrcert-anim-ready .jsrcertifiedhm-item {
    opacity: 0;
}

@keyframes jsrcertFadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes jsrcertScaleX {
    0% { opacity: 0; transform: scaleX(0); }
    100% { opacity: 1; transform: scaleX(1); }
}

.jsrcert-anim-visible .jsrcertifiedhm-title {
    animation: jsrcertFadeUp 0.8s ease forwards;
}

.jsrcert-anim-visible .jsrcertifiedhm-desc {
    animation: jsrcertFadeUp 0.8s ease forwards 0.2s;
}

.jsrcert-anim-visible .jsrcertifiedhm-divider {
    animation: jsrcertScaleX 0.8s ease forwards 0.4s;
    transform-origin: center;
}
.jsrcert-anim-visible .jsrcertifiedhm-item:nth-child(1) { animation: jsrcertFadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.6s; }
.jsrcert-anim-visible .jsrcertifiedhm-item:nth-child(2) { animation: jsrcertFadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.75s; }
.jsrcert-anim-visible .jsrcertifiedhm-item:nth-child(3) { animation: jsrcertFadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.9s; }
.jsrcert-anim-visible .jsrcertifiedhm-item:nth-child(4) { animation: jsrcertFadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1.05s; }

/* ==========================
   TABLET
========================== */

@media(width <=991px){
    .jsrcertifiedhm{
        padding:50px 0;
    }

    .jsrcertifiedhm-features{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }
    
    /* Remove right border on the 2nd and 4th items in the 2x2 grid */
    .jsrcertifiedhm-item:nth-child(2n)::after {
        display: none;
    }

    .jsrcertifiedhm-desc{
        font-size:14px;
    }

    .jsrcertifiedhm-item h4{
        white-space: normal;
    }
}

/* ==========================
   MOBILE
========================== */

@media(width <=767px){
    #jsrcertifiedhm{
        padding:40px 0;
    }

    .jsrcertifiedhm-container{
        width:92%;
    }

    .jsrcertifiedhm-title{
        }

    .jsrcertifiedhm-desc{
        font-size:14px;
        line-height:1.6;
    }

    .jsrcertifiedhm-features{
        grid-template-columns:1fr;
        gap:28px;
    }

    /* Convert vertical dividers to horizontal dividers on mobile stacked layout */
    .jsrcertifiedhm-item::after {
        display: none;
    }

    .jsrcertifiedhm-item:not(:last-child)::after {
        display: block;
        width: 100%;
        height: 1px;
        inset: auto 0 -14px; /* Half of the 28px gap */
    }

    .jsrcertifiedhm-divider{
        width: 90%;
        margin:25px auto;
    }

    .jsrcertifiedhm-item h4{
        font-size:15px;
    }

    .jsrcertifiedhm-item p{
        font-size:14px;
    }
}

/*=====================================
    JSR PROJECT LOGOS
======================================*/

#jsrprojlogos {
    width: 100%;
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#jsrprojlogos .jsrprojlogos-heading {
    text-align: center;
    margin-bottom: 0px;
}

#jsrprojlogos .jsrprojlogos-subtitle {
    display: block;
    color: #ff9600;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#jsrprojlogos .jsrprojlogos-heading h2 {
    font-family: Cinzel, serif;
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}



#jsrprojlogos .jsrprojlogos-item{
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

#jsrprojlogos .jsrprojlogos-item img{
    width: 150px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

#jsrprojlogos .jsrprojlogos-item:hover img{
    transform: scale(1.1);
}

/*=========================
      Laptop
==========================*/

/*=========================
      Laptop
==========================*/

@media(max-width:1200px){

    #jsrprojlogos{
        padding:55px 0;
    }

    #jsrprojlogos .jsrprojlogos-item{
        height: 80px;
        width: auto;
    }

    #jsrprojlogos .jsrprojlogos-item img{
        width: 140px;
        height: 60px;
    }

}

/*=========================
        Tablet
==========================*/

@media(max-width:992px){

    #jsrprojlogos{
        padding:50px 0;
    }

    #jsrprojlogos .jsrprojlogos-item{
        height: 75px;
        width: auto;
    }

    #jsrprojlogos .jsrprojlogos-item img{
        width: 120px;
        height: 55px;
    }
}

/*=========================
        Mobile
==========================*/

@media(max-width:768px){

    #jsrprojlogos{
        padding:40px 0;
    }

    #jsrprojlogos .jsrprojlogos-heading h2 {
        font-size: 28px;
    }

    #jsrprojlogos .jsrprojlogos-item{
        height: 65px;
        width: auto;
    }

    #jsrprojlogos .jsrprojlogos-item img{
        width: 100px;
        height: 50px;
    }
}

/*=========================
      Small Mobile
==========================*/

@media(max-width:480px){

    #jsrprojlogos .jsrprojlogos-item{
        height: 60px;
        width: auto;
    }

    #jsrprojlogos .jsrprojlogos-item img{
        width: 90px;
        height: 45px;
    }

}


/* =================HOME WHY CHOOSE JSR START================= */
#jsrhmwhy {
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    font-family: Inter, sans-serif;
    overflow: hidden;
}

#jsrhmwhy .jsrabthm-bg-animation {
    opacity: 0.35;
}

.jsrhmwhy-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.jsrhmwhy-left {
    text-align: center;
    margin-bottom: 25px;
}

.jsrhmwhy-subtitle {
    display: block;
    color: #ff9600;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.jsrhmwhy-left h2 {
    font-family: Cinzel, serif;
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-top: 0;
    margin-bottom: 20px;
}

.jsrhmwhy-left p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.jsrhmwhy-coverflow-container {
    width: 100%;
    margin-top: 20px;
    padding: 0;
    perspective: 2000px; /* Refined perspective for soft Apple 3D effect */
    position: relative;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    touch-action: pan-y;
}

.jsrhmwhy-coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jsrhmwhy-coverflow-card {
    background: #11141a; /* Premium dark background for the text area */
    border-radius: 20px;
    padding: 0; /* Removed padding to allow image to bleed to edges */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 280px;
    height: 420px;
    overflow: hidden;
    border: none;
    position: absolute;
    cursor: grab;
    will-change: transform;
    backface-visibility: hidden;
    /* Static 3D positioning via variables */
    transform: translate3d(var(--tx, 0px), 0, var(--tz, 0px)) rotateY(var(--rotY, 0deg)) scale(var(--s, 1));
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform-origin: center center;
}

.jsrhmwhy-coverflow-card:active {
    cursor: grabbing;
}

.jsrhmwhy-coverflow-card.is-hovered {
    --s: 1.05;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.jsrhmwhy-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Image always covers 100% */
    z-index: 0;
    border-radius: 20px;
    overflow: hidden;
}

.jsrhmwhy-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jsrhmwhy-coverflow-card.is-hovered .jsrhmwhy-card-bg img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.jsrhmwhy-bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto; /* Height adapts strictly to content */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: flex-end; /* Move content to the bottom */
    padding: 80px 25px 25px 25px; /* 80px top padding provides space for the gradient blend */
    pointer-events: none; /* Let drag events pass through to card */
    /* Dynamic gradient background anchored to the content container */
    background: linear-gradient(to bottom, rgba(17,20,26,0) 0px, rgba(17,20,26,0.9) 60px, #11141a 80px, #11141a 100%);
    border-radius: 0 0 20px 20px;
}

.jsrhmwhy-coverflow-card h3 {
    font-family: Cinzel, serif;
    font-size: 16px; /* Slightly reduced to fit one line comfortably */
    font-weight: 700;
    color: #ff9600; /* Golden text */
    margin: 0;
    width: 100%;
    text-align: center; /* Center align text */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    /* Force one line only */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: margin 0.5s ease;
}

.jsrhmwhy-coverflow-card p {
    font-size: 14px;
    color: #ffffff; /* White text */
    line-height: 1.5;
    margin: 0;
    text-align: center; /* Center align text */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    /* Hidden by default */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active center card styling */
.jsrhmwhy-coverflow-card.is-active h3 {
    margin-bottom: 10px;
}

.jsrhmwhy-coverflow-card.is-active p {
    opacity: 1;
    max-height: 150px; /* Arbitrary large enough height */
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 992px) {
    .jsrhmwhy-coverflow-container {
        height: 450px;
    }
    .jsrhmwhy-coverflow-card {
        width: 260px;
        height: 380px;
    }
}

@media(max-width: 768px) {
    .jsrhmwhy-coverflow-card h3 {
        /* Allow wrapping on mobile to prevent truncation */
        white-space: normal;
        font-size: 15px; 
    }
    .jsrhmwhy-bento-content {
        padding: 60px 20px 20px 20px; /* Slightly reduce padding on mobile */
    }
}

@media(max-width: 768px) {
    .jsrhmwhy-coverflow-container {
        height: 380px;
    }
    .jsrhmwhy-coverflow-card {
        width: 220px;
        height: 340px;
    }
}




/* =================HOME WHY CHOOSE JSR END================= */

.jsrhomeawards{
    padding:30px 0;
    background: #ffffff;
    position:relative;
    overflow:hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jsr-container{
    width:90%;
    max-width:1450px;
    margin:auto;
    position:relative;
    z-index:2;
}

.jsrhomeawards .jsr-container {
    width: 100%;
}

.jsrhomeawards-heading{
    text-align:center;
    margin-bottom:20px;
    padding:0 20px;
    position: relative;
    z-index: 1;
}

.jsrhomeawards-heading span{
    color:#ff9600;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
}

.jsrhomeawards-heading h2{
    margin:10px 0;
    color:#111;
    font-weight:700;
    font-family: Cinzel, serif;
    line-height: 1.2;
}

.jsrhomeawards-heading p{
    max-width:800px;
    margin:auto;
    color:#555;
    line-height:1.6;
    font-size:14px;
}

.jsrhomeawards-slider {
    padding: 20px 0 20px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.jsrhomeawards-slider .swiper-slide {
    width: 320px;
}

.jsrhomeawards-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    padding:14px;
    box-shadow: none;
    transition:.4s;
    position:relative;
    border: 1px solid rgba(193,138,43,0.3);
}

.jsrhomeawards-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#c18a2b,#f3d06b,#c18a2b);
}

.jsrhomeawards-card img{
    width:100%;
    max-height: 400px;
    object-fit: contain;
    display:block;
    transition:.5s;
    border-radius:10px;
}

.jsrhomeawards-card:hover{
    transform:translateY(-10px);
    box-shadow: none;
}

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

/*============================
        RESPONSIVE
=============================*/

@media(max-width:1200px){

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

}

@media(max-width:768px){

.jsrhomeawards{
padding:70px 0;
}

.jsrhomeawards-heading h2{
font-size:34px;
}

.jsrhomeawards-heading p{
font-size:15px;
line-height:28px;
}



}

@media(max-width:500px){

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

.jsrhomeawards-heading h2{
font-size:28px;
}

}

/* =================HOME AWARDS START================= */
#jsrawardshm {
    padding: 30px 20px;
    background: 
        radial-gradient(circle at bottom left, rgb(0 158 227 / 40%) 0%, transparent 20%),
        radial-gradient(circle at bottom right, rgb(239 124 0 / 40%) 0%, transparent 20%),
        #16142B;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.jsrawardshm-container {
    max-width: 1500px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.jsrawardshm-heading {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.jsrawardshm-subtitle {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.jsrawardshm-heading h2 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Cinzel, serif;
}

.jsrawardshm-heading p {
    color: rgb(255 255 255 / 85%);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1200px;
}

.jsrawardshm-desc-extra {
    margin-top: 15px;
}

.jsrawardshm-pill {
    background: #fff;
    border-radius: 100px;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.jsrawardshm-pill img {
    height: 60px;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.jsrawardshm-pill img:hover {
    transform: scale(1.05);
}

.jsrawardshm-divider {
    width: 2px;
    height: 50px;
    background-color: #eaeaea;
    flex-shrink: 0;
}

.jsrawardshm-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 20px auto 60px; /* Added bottom margin to push the pill down */
    width: 100%;
    max-width: 1200px;
    padding: 0;
}

.jsrawardshm-stat {
    position: relative;
    text-align: center;
}

.jsrawardshm-stat h3 {
    font-size: 45px;
    font-family: Cinzel, serif;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 5px 15px rgb(0 0 0 / 30%);
    line-height: 1;
}

.jsrawardshm-stat h3 span:last-child {
    font-size: 35px;
    color: #fff;
    margin-left: 5px;
}

.jsrawardshm-stat p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
    opacity: 0.85;
}

@media(width <= 991px) {
    .jsrawardshm-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
        padding: 0 10px;
    }
}

@media(width <= 576px) {
    .jsrawardshm-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }
}

@media(width <= 1200px) {
    .jsrawardshm-pill {
        padding: 20px 40px;
    }

    .jsrawardshm-pill img {
        height: 50px;
    }
}

@media(width <= 991px) {
    .jsrawardshm-pill {
        border-radius: 30px;
        padding: 30px 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
        place-items: center center;
    }

    .jsrawardshm-pill img {
        height: 45px;
        max-width: 100%;
        animation: jsrMobileLogoPulse 3s infinite ease-in-out;
    }

    .jsrawardshm-pill img:nth-of-type(even) {
        animation-delay: 1.5s;
    }

    .jsrawardshm-divider {
        display: none;
    }
}

@keyframes jsrMobileLogoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@media(width <= 576px) {
    .jsrawardshm-pill {
        padding: 20px 10px;
        gap: 20px 10px;
    }

    .jsrawardshm-pill img {
        height: 35px;
    }
}

/* =================HOME AWARDS END================= */

#jsrmaphm{
    width:100%;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 85svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jsrmaphm-dynamic-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    filter: blur(6px);
    z-index: -2;
    transition: opacity 0.4s ease-in-out;
}

.jsrmaphm-dynamic-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(0 0 0 / 40%) 0%, rgb(0 0 0 / 75%) 100%);
    z-index: -1;
}

.jsrmaphm-heading{
    position: relative;
    text-align:center;
    max-width: 1200px;
    margin:0 auto 0;
    padding:0 20px;
}

.jsrmaphm-heading span{
    display: block;
    color:#ff9600;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform: uppercase;
}

.jsrmaphm-heading h2{
    font-family: Cinzel, serif;
    margin-bottom: 0;
    margin-top: 0;
    font-weight:700;
    color:#fff;
    line-height:1.2;
}

.jsrmaphm-container{
    position: relative;
    width:95%;
    max-width:1500px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.jsrmaphm-map-wrap{
    flex:1.8;
    position:relative;
}

.jsrmaphm-map-inner{
    width:100%;
    position:relative;
    left:0;
}

.jsrmaphm-map{
    width:100%;
    display:block;
}

.jsrmaphm-dot{
    position:absolute;
    width:8px;
    height:8px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:#9e9e9e;
    transform:translate(-50%,-50%);
    transition:.3s;
    z-index: 1;
}

.jsrmaphm-dot::before{
    content:'';
    position:absolute;
    inset:-4px;
    border:1px solid rgb(190 150 75 / 40%);
    border-radius:50%;
    animation:jsrmaphmPulse 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jsrmaphm-dot.active::before {
    opacity: 1;
}

.jsrmaphm-dot-1 { top: 69.15%; left: 23.78%; }
.jsrmaphm-dot-2 { top: 69.32%; left: 32.03%; }
.jsrmaphm-dot-3 { top: 73.08%; left: 31.93%; }
.jsrmaphm-dot-4 { top: 85.77%; left: 37.38%; }
.jsrmaphm-dot-5 { top: 85.72%; left: 50.43%; }
.jsrmaphm-dot-6 { top: 73.31%; left: 52.09%; }
.jsrmaphm-dot-7 { top: 64.08%; left: 54.95%; }
.jsrmaphm-dot-8 { top: 82.41%; left: 57.96%; }
.jsrmaphm-dot-9 { top: 89.40%; left: 57.99%; }
.jsrmaphm-dot-10 { top: 33.60%; left: 75.89%; }
.jsrmaphm-dot-11 { top: 33.59%; left: 78.38%; }
.jsrmaphm-dot-12 { top: 36.25%; left: 77.68%; }
.jsrmaphm-dot-13 { top: 7.30%; left: 74.33%; }
.jsrmaphm-dot-14 { top: 47.97%; left: 40.86%; }
.jsrmaphm-dot-15 { top: 52.53%; left: 38.26%; }

.jsrmaphm-dot.active{
    background:#c49a45;
    transform:translate(-50%,-50%) scale(1.3);
    z-index:2;
}

.jsrmaphm-dot.active::before{
    border-color:#ff9600;
}

.jsrmaphm-dot-text {
    position:absolute;
    top:-30px;
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap;
    font-size:11.0px;
    font-weight:500;
    font-family: Inter, sans-serif;
    color:#4a4a4a;
    transition:.3s;
    pointer-events:auto;
}

/* Individual Text Placements to prevent overlapping */
.jsrmaphm-dot-1 .jsrmaphm-dot-text { top: -26px; left: 50%; transform: translateX(-50%); } /* TOP */
.jsrmaphm-dot-2 .jsrmaphm-dot-text { top: -5px; left: 16px; transform: none; } /* RIGHT */
.jsrmaphm-dot-3 .jsrmaphm-dot-text { top: -5px; left: -16px; transform: translateX(-100%); } /* LEFT */
.jsrmaphm-dot-4 .jsrmaphm-dot-text { top: -20px; left: 50%; transform: translateX(-100%); } /* BOTTOM */
.jsrmaphm-dot-5 .jsrmaphm-dot-text { top: -26px; left: 50%; transform: translateX(-50%); } /* TOP */
.jsrmaphm-dot-6 .jsrmaphm-dot-text { top: -5px; left: -16px; transform: translateX(-100%); } /* LEFT */
.jsrmaphm-dot-7 .jsrmaphm-dot-text { top: -5px; left: 16px; transform: none; } /* RIGHT */
.jsrmaphm-dot-8 .jsrmaphm-dot-text { top: 10px; left: -38px; transform: none; } /* RIGHT */
.jsrmaphm-dot-9 .jsrmaphm-dot-text { top: 0; left: -132px; transform: none; } /* RIGHT */
.jsrmaphm-dot-10 .jsrmaphm-dot-text { top: -5px; left: -16px; transform: translateX(-100%); } /* LEFT */
.jsrmaphm-dot-11 .jsrmaphm-dot-text { top: -20px; left: -45px; transform: none; } /* RIGHT */
.jsrmaphm-dot-12 .jsrmaphm-dot-text { top: 18px; left: 50%; transform: translateX(-70%); } /* BOTTOM */
.jsrmaphm-dot-13 .jsrmaphm-dot-text { top: 18px; left: 50%; transform: translateX(-50%); } /* BOTTOM */
.jsrmaphm-dot-14 .jsrmaphm-dot-text { top: -26px; left: 50%; transform: translateX(-50%); } /* TOP */
.jsrmaphm-dot-15 .jsrmaphm-dot-text { top: -5px; left: -16px; transform: translateX(-100%); } /* LEFT */

.jsrmaphm-dot:hover .jsrmaphm-dot-text,
.jsrmaphm-dot.active .jsrmaphm-dot-text {
    color: #111;
}

.jsrmaphm-content{
    flex:1;
    margin-left: -60px; /* shift left to close gap with map */
}

.jsrmaphm-image-box{
    width:100%;
    perspective: 1500px;
}

.jsrmaphm-image-box img{
    width:100%;
    display:block;
    aspect-ratio:16/10;
    object-fit:cover;
    transform: rotateY(-20deg) rotateX(5deg) scale(0.95);
    transform-origin: center;
    box-shadow: 20px 25px 40px rgb(0 0 0 / 60%);
    border-radius: 4px;
    border: 1px solid rgb(255 255 255 / 10%);
    transition: transform 0.2s ease-out;
}

.jsrmaphm-content h2{
    margin-top:35px;
    font-size:20px;
    line-height:1.3;
    color:#fff;
    font-weight:500;
}

.jsrmaphm-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.jsrmaphm-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    text-decoration:none;
    color:#fff;
    font-size:14px;
    font-weight:500;
    transition: opacity 0.3s;
}

.jsrmaphm-content a:hover {
    opacity: 0.8;
}

@keyframes jsrmaphmPulse{
    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(2);
        opacity:0;
    }
}

@media(width <=991px){
    .jsrmaphm-heading h2{
        }

    .jsrmaphm-heading p{
        font-size:14px;
    }

    .jsrmaphm-container{
        flex-direction:column;
        gap:25px;
    }

    .jsrmaphm-map-wrap {
        width: 100%;
        margin-left: 0;
    }

    .jsrmaphm-map-inner{
        width: 100%;
        left: 0;
    }

    .jsrmaphm-content {
        margin-left: 0;
        padding: 0 20px;
    }



    .jsrmaphm-content h2{
        font-size:24px;
    }
}

@media(max-width: 767px){
    .jsrmaphm-map-inner {
        width: 130%;
        left: -15%;
        margin: 20px 0;
    }

    .jsrmaphm-dot-text {
        opacity: 0;
        visibility: hidden;
        top: -35px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* Force left-side dots to grow right so they don't cut off left */
    .jsrmaphm-dot-1 .jsrmaphm-dot-text,
    .jsrmaphm-dot-2 .jsrmaphm-dot-text,
    .jsrmaphm-dot-3 .jsrmaphm-dot-text,
    .jsrmaphm-dot-4 .jsrmaphm-dot-text,
    .jsrmaphm-dot-14 .jsrmaphm-dot-text,
    .jsrmaphm-dot-15 .jsrmaphm-dot-text {
        left: -10px !important;
        transform: translateX(0) !important;
    }

    /* Force right-side dots to grow left so they don't cut off right */
    .jsrmaphm-dot-10 .jsrmaphm-dot-text,
    .jsrmaphm-dot-11 .jsrmaphm-dot-text,
    .jsrmaphm-dot-12 .jsrmaphm-dot-text,
    .jsrmaphm-dot-13 .jsrmaphm-dot-text {
        left: auto !important;
        right: -10px !important;
        transform: translateX(0) !important;
    }

    .jsrmaphm-dot.active .jsrmaphm-dot-text,
    .jsrmaphm-dot:hover .jsrmaphm-dot-text {
        opacity: 1;
        visibility: visible;
        background: rgb(255 255 255 / 95%);
        padding: 4px 8px;
        border-radius: 4px;
        z-index: 10;
        box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
    }
}

@media(width <=576px){
    #jsrmaphm{
        padding:20px 0;
    }

    .jsrmaphm-heading {
        margin-bottom: 15px;
    }

    .jsrmaphm-heading span {
        margin-bottom: 5px;
    }

    .jsrmaphm-heading h2{
        margin-bottom: 10px;
    }

    .jsrmaphm-heading p{
        font-size: 12px;
        line-height: 1.4;
    }

    .jsrmaphm-container{
        width:92%;
        gap: 15px;
    }

    .jsrmaphm-image-box img {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
    }

    .jsrmaphm-content h2{
        font-size:16px;
        margin-top: 15px;
    }

    .jsrmaphm-content a{
        font-size:14px;
        margin-top: 10px;
    }

    .jsrmaphm-dot{
        width:8px;
        height:8px;
    }


}

/* =================HOME TESTIMONIALS START================= */
#jsrhmtestimonial{
    background: #ffffff;
    padding:30px 0;
    overflow:hidden;
    position: relative;
}

#jsrhmtestimonial .jsrabthm-bg-animation {
    display: none;
}

.jsrhmtestimonial-heading{
    text-align:center;
    margin-bottom:20px;
    padding:0 20px;
    position: relative;
    z-index: 1;
}

.jsrhmtestimonial-heading span{
    color:#ff9600;
    font-size:12px;
    letter-spacing:2px;
    font-weight:600;
}

.jsrhmtestimonial-heading h2{
    font-family: Cinzel, serif;
    margin:10px 0;
    color:#111;
    line-height:1.2;
}

.jsrhmtestimonial-heading p{
    max-width:800px;
    margin:auto;
    color:#555;
    line-height:1.6;
    font-size:14px;
}

.jsrhmtestimonial-slider{
    width:100%;
    position:relative;
    z-index: 1;
    padding-bottom: 30px; /* Space for pagination dots */
}

.jsrhmtestimonial-pagination {
    bottom: 0 !important;
}

.jsrhmtestimonial-pagination .swiper-pagination-bullet {
    background: #FF9600;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}

.jsrhmtestimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.jsrhmtestimonial-track{
    /* Normal easing for standard slider */
}

.jsrhmtestimonial-card{
    width:270px; /* Reduced width to match 9:16 ratio */
    height:480px; /* Reduced height as requested */
    background:#ffffff;
    border-radius:12px;
    padding:0; /* Removed padding for full-bleed video */
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
    flex-shrink:0;
    transition: all 0.3s ease;
    margin-right: 15px; /* Replaces spaceBetween in Swiper */
}

.jsrhmtestimonial-card:last-child {
    margin-right: 0;
}

.jsrhmtestimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.jsrhmtestimonial-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.jsrhmtestimonial-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.jsrhmtestimonial-top img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.jsrhmtestimonial-top h4{
    color:#FF9600;
    font-size:15px;
    margin-bottom:4px;
}

.jsrhmtestimonial-top h5{
    color:#111;
    font-size:12px;
    font-weight:500;
    margin-bottom:2px;
}

.jsrhmtestimonial-top span{
    color:#555;
    font-size:12.0px;
}

.jsrhmtestimonial-card p{
    color:#222;
    line-height:1.6;
    margin-bottom:20px;
    font-size:12px;
}

.jsrhmtestimonial-stars{
    color:#FF9600;
    font-size:15px;
    letter-spacing:2px;
}

@media(width <=991px){
    #jsrhmtestimonial{
        padding:30px 0;
    }

    .jsrhmtestimonial-heading h2{
        }

    .jsrhmtestimonial-card{
        width:300px;
        height:533px;
        padding:0;
    }

}

@media(width <=576px){
    .jsrhmtestimonial-heading h2{
        }

    .jsrhmtestimonial-heading p{
        font-size:14px;
    }

    .jsrhmtestimonial-card{
        width:250px;
        height:444px;
        padding:0;
    }

    .jsrhmtestimonial-top img{
        width:65px;
        height:65px;
    }

    .jsrhmtestimonial-top h4{
        font-size:15px;
    }

}

/* =================HOME TESTIMONIALS END================= */

/* =================TIMELINE SECTION START================= */
.jsrtimelinehm {
    background: #ffffff; /* White background for the heading area */
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: unset;
    display: flex;
    flex-direction: column;
}

.jsrtimelinehm-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Stretch container to fill section */
}

/* LEFT (Top Header) */
.jsrtimelinehm-left {
    text-align: center;
    margin-bottom: 0;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.jsrtimelinehm-left h2 {
    font-family: Cinzel, serif;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111111;
}

.jsrtimelinehm-left p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    max-width: 1000px;
}

/* CARDS WRAPPER */
.jsrtimelinehm {
    background: #f8f9fa; /* Classic light background */
    padding: 30px 0; 
}

.jsrtimelinehm-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.jsrtimelinehm-cards-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    height: 450px; /* Fixed height for the accordion */
    margin-top: 0px;
}

/* CARD */
.jsrtimelinehm-card {
    position: relative;
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 82, 161, 0.1);
    transition: flex 0.4s ease-out, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Expanding logic */
.jsrtimelinehm-card.active {
    flex: 4;
    box-shadow: 0 15px 40px rgba(0, 82, 161, 0.2);
}


.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Professional logo-blue gradient */
    background: linear-gradient(135deg, rgba(0, 82, 161, 0.95) 0%, rgba(0, 82, 161, 0.3) 100%);
    z-index: 1;
    transition: all 0.6s ease;
}

.jsrtimelinehm-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(0, 82, 161, 0.98) 0%, rgba(0, 82, 161, 0.5) 100%);
}

/* COLLAPSED CONTENT (Icon + Title) */
.collapsed-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column-reverse; /* Reverses order: Icon at bottom, Text above */
    align-items: center;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.collapsed-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Upright icon */
}

.collapsed-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

/* Hide collapsed content in expanded cards */
.jsrtimelinehm-card.active .collapsed-content {
    opacity: 0;
}


/* INNER CONTENT (Visible when expanded) */
.card-inner-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 450px; /* Fixed width to prevent reflow while animating */
    max-width: calc(100% - 80px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease 0.1s; /* Slight delay for smooth fade-in */
}

/* Show content in expanded cards */
.jsrtimelinehm-card.active .card-inner-content {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s ease 0.2s; /* Delay fade in until card is mostly expanded */
}


/* ICON WRAPPER */
.icon-wrapper {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: #FF9600; /* Logo orange */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 150, 0, 0.4);
}

.jsrtimelinehm-card:hover .icon-wrapper {
    background: #ffffff;
}

.jsrtimelinehm-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.jsrtimelinehm-card:hover .jsrtimelinehm-icon {
    /* Brand Orange (#FF9600) via filter for when the wrapper turns white */
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(2256%) hue-rotate(3deg) brightness(104%) contrast(105%);
}

/* TEXT CONTENT */
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h3 {
    margin-top: 0;
    font-family: Cinzel, serif; /* Using their classic font */
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    white-space: nowrap;
}

.text-content p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    white-space: normal;
}

/* Media Queries for jsrtimelinehm */
@media (max-width: 992px) {
    .jsrtimelinehm-cards-wrapper {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }
    
    .jsrtimelinehm-card {
        flex: none !important; /* Disable accordion flex sizing */
        height: 300px; /* Fixed height for each card */
        width: 100%;
        border-radius: 20px;
    }

    .collapsed-content {
        display: none !important; /* Never show collapsed state on mobile */
    }

    .card-inner-content {
        opacity: 1 !important; /* Always show full content */
        pointer-events: auto !important;
        width: 100%;
        max-width: 100%;
        padding-right: 40px;
    }
}
/* =================TIMELINE SECTION END================= */


/* =================HOME FOUNDER START================= */
.elite-director-section {
    padding: 30px 0;
    position: relative;
    display: flex;
    justify-content: center;
    border-top: 1px solid #004488;
    border-bottom: 1px solid #004488;
    background-color: #0052a1;
}

.elite-director-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}

.director-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- THE MAIN CARD --- */
.director-card {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Hover: Subtle Lift */
.director-card:hover {
    transform: none;
    box-shadow: none;
}

/* --- LEFT IMAGE AREA --- */
.director-img-area {
    flex: 0 0 28%;
    position: relative;
    padding-right: 0;
}

/* Accent Shape Behind Image */
.img-border-anim {
    display: none;
}

.director-card:hover .img-border-anim {
    display: none;
}

/* Photo Box */
.director-photo-box {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 5px solid #ffffff;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.director-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover: Zoom */
.director-card:hover .director-photo-box img {
    transform: scale(1.03);
}


/* --- RIGHT CONTENT AREA --- */
.director-content-area {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #FF9600;
}

.director-name {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.1;
}

.director-role {
    font-size: 15px;
    color: #FF9600;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.quote-separator {
    display: block;
    width: 50px;
    height: 2px;
    background-color: #FF9600;
    margin-bottom: 20px;
}

.director-message {
    font-size: 15px;
    line-height: 1.7;
    color: #f4f4f4;
    margin-bottom: 15px;
    position: relative;
    font-weight: 400;
    text-align: justify;
    z-index: 1;
}

.big-quote {
    display: inline-block;
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 120px;
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
    line-height: 1;
}

/* Footer (Button) */
.director-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    margin-top: 10px;
}

.director-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FF9600 0%, #e68600 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 150, 0, 0.3);
}

.director-btn:hover {
    background: #ffffff;
    color: #0052a1;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.director-btn::after {
    display: none;
}

/* ==================== ANIMATIONS ==================== */

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounceBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
    .director-card { padding: 30px; }
    .director-img-area { flex: 0 0 45%; }
    .img-border-anim { width: 260px; height: 320px; }
    .director-photo-box { width: 240px; height: 300px; }
    .director-name { font-size: 36px; }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .elite-director-section { padding: 40px 0; }
    
    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    /* Stack Image on Top */
    .director-img-area {
        flex: 0 0 auto;
        padding-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }

    /* Resize Image for Mobile */
    .director-photo-box {
        width: 260px;
        height: 320px;
    }
    
    .img-border-anim {
        width: 280px;
        height: 340px;
    }

    /* Center Badge */
    .xp-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: none; /* Simplify animation on mobile */
    }

    /* Center Align Text */
    .director-content-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quote-separator { margin: 0 auto 25px auto; }
    
    .director-footer {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
}
/* =================HOME FOUNDER END================= */

/* ================= GLOBAL HEADING FONT SIZES ================= */
.jsrabthm-title,
.jsrcertifiedhm-title,
.jsrawardshm-heading h2,
.jsrmaphm-heading h2,
.jsrhmwhy-left h2,
.jsrhmtestimonial-heading h2,
.jsrhomeawards-heading h2,
.jsrtimelinehm-left h2 {
    font-size: 32px;
}

@media (width <= 1400px) {
    .jsrabthm-title,
    .jsrcertifiedhm-title,
    .jsrawardshm-heading h2,
    .jsrmaphm-heading h2,
    .jsrhmwhy-left h2,
    .jsrhmtestimonial-heading h2,
    .jsrhomeawards-heading h2,
    .jsrtimelinehm-left h2 {
        font-size: 31px;
    }
}

@media (width <= 1200px) {
    .jsrabthm-title,
    .jsrcertifiedhm-title,
    .jsrawardshm-heading h2,
    .jsrmaphm-heading h2,
    .jsrhmwhy-left h2,
    .jsrhmtestimonial-heading h2,
    .jsrhomeawards-heading h2,
    .jsrtimelinehm-left h2 {
        font-size: 27px;
    }
}

@media (width <= 992px) {
    .jsrabthm-title,
    .jsrcertifiedhm-title,
    .jsrawardshm-heading h2,
    .jsrmaphm-heading h2,
    .jsrhmwhy-left h2,
    .jsrhmtestimonial-heading h2,
    .jsrhomeawards-heading h2,
    .jsrtimelinehm-left h2 {
        font-size: 26px;
    }
}

@media (width <= 768px) {
    .jsrabthm-title,
    .jsrcertifiedhm-title,
    .jsrawardshm-heading h2,
    .jsrmaphm-heading h2,
    .jsrhmwhy-left h2,
    .jsrhmtestimonial-heading h2,
    .jsrhomeawards-heading h2,
    .jsrtimelinehm-left h2 {
        font-size: 24px;
    }
}

@media (width <= 576px) {
    .jsrabthm-title,
    .jsrcertifiedhm-title,
    .jsrawardshm-heading h2,
    .jsrmaphm-heading h2,
    .jsrhmwhy-left h2,
    .jsrhmtestimonial-heading h2,
    .jsrhomeawards-heading h2,
    .jsrtimelinehm-left h2 {
        font-size: 20px;
    }
}

/* --- Added as part of optimization and cleanup --- */

.director-message-alt {
    margin-top: -10px;
}

.jsrprojlogos-slider-padded {
    padding: 20px 0;
    overflow: hidden;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}


/* ===================================== BANNER SECTION START===================================== */
/* HERO SECTION */
.inner-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 320px;
  max-height: 500px;

  display: flex;
  justify-content: center;

  /* ✅ UPDATED (move content down) */
  align-items: flex-end;
  padding-bottom: 80px;

  overflow: hidden;
}

/* IMAGE */
.inner-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.inner-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 54, 22, 0.5);
}

/* CONTENT */
.inner-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  max-width: 900px;
}

/* SUBTITLE */
.inner-hero .hero-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  opacity: 0.85;
}

/* TITLE */
.inner-hero .hero-title {
  font-family: "Italiana", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ========================= */
/* PREMIUM BREADCRUMB DESIGN */
/* ========================= */

.inner-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  font-family: "Raleway", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* HOME LINK */
.inner-hero .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

/* Hover underline effect */
.inner-hero .breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.inner-hero .breadcrumb a:hover::after {
  width: 100%;
}

/* SEPARATOR */
.inner-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* ACTIVE PAGE */
.inner-hero .breadcrumb span:last-child {
  color: #fff;
  font-weight: 500;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .inner-hero .hero-title {
    font-size: 48px;
  }

  /* adjust spacing for tablet */
  .inner-hero {
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .inner-hero {
    height: 38vh;
    min-height: 260px;

    /* adjust spacing for mobile */
    padding-bottom: 40px;
  }

  .inner-hero .hero-title {
    font-size: 34px;
  }

  .inner-hero .hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .inner-hero .breadcrumb {
    font-size: 11px;
    padding: 8px 14px;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .inner-hero .hero-title {
    font-size: 28px;
  }
}

/* ===================================== BANNER SECTION END ===================================== */

/* ===================================== JSR AWARD LEGACY BANNER ===================================== */
.jsrbanner, #jsrbanner {
  position: relative;
  width: 100%;
  min-height: 350px;
  background: radial-gradient(circle at 50% 60%, #0b3d82 0%, #06244f 50%, #020f26 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 85px 20px 25px;
  box-sizing: border-box;
}

/* Background Building Overlays (Restored Full Original Scale with Continuous Line Animation) */
.jsr-banner-bg-building {
  position: absolute;
  bottom: 0;
  top: auto;
  height: 140px;
  width: 50%;
  background-image: url('../images/buildings.svg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  filter: invert(1) brightness(1.8);
  pointer-events: none;
  z-index: 1;
}

/* Left Building: Starts at center seam and expands out to the LEFT */
@keyframes buildingFromMiddleToLeft {
  0% {
    opacity: 0.10;
    clip-path: inset(0 0 0 100%);
  }
  50% {
    opacity: 0.35;
    clip-path: inset(0 0 0 0%);
  }
  100% {
    opacity: 0.10;
    clip-path: inset(0 0 0 100%);
  }
}

/* Right Building: Starts at center seam and expands out to the RIGHT */
@keyframes buildingFromMiddleToRight {
  0% {
    opacity: 0.10;
    clip-path: inset(0 0 0 100%);
  }
  50% {
    opacity: 0.35;
    clip-path: inset(0 0 0 0%);
  }
  100% {
    opacity: 0.10;
    clip-path: inset(0 0 0 100%);
  }
}

.jsr-banner-bg-building.building-left {
  left: 0;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  animation: buildingFromMiddleToLeft 7s ease-in-out infinite;
}

.jsr-banner-bg-building.building-right {
  right: 0;
  transform: scaleX(-1);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  animation: buildingFromMiddleToRight 7s ease-in-out infinite;
}

/* Vertical Light Beams Rays in Middle */
.jsr-banner-light-rays {
  position: absolute;
  top: 10%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 16px,
    rgba(255, 215, 0, 0.28) 17px,
    transparent 18px
  );
  mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Banner Central Container */
.jsr-banner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Award Content Center Text */
.jsr-award-content {
  text-align: center;
  color: #ffffff;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Emblem Icon Wrapper */
.jsr-award-content .classic-logo-frame {
  margin-bottom: 4px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.jsr-award-content .banner-title-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(245, 207, 104, 0.4)) drop-shadow(0 6px 15px rgba(0, 0, 0, 0.6));
  animation: flip-continuous 4s linear infinite;
}

/* Classic Luxury Banner Title */
.jsr-award-content .award-title {
  font-family: 'Cinzel', serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 4px 0;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #fff0b8 40%, #e6b837 80%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Sleek Glass Breadcrumb Pill UI on Line 2 */
.jsr-award-content .jsr-breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 10px 0;
  padding: 6px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 207, 104, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.jsr-award-content .jsr-breadcrumb-pill .bc-home {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.jsr-award-content .jsr-breadcrumb-pill .bc-home i {
  color: #f5cf68;
  font-size: 11px;
}

.jsr-award-content .jsr-breadcrumb-pill .bc-home:hover {
  color: #f5cf68;
}

.jsr-award-content .jsr-breadcrumb-pill .bc-arrow {
  color: rgba(245, 207, 104, 0.7);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
}

.jsr-award-content .jsr-breadcrumb-pill .bc-current {
  color: #f5cf68;
  font-weight: 600;
}

/* Tagline Slogan Wrap */
.jsr-award-content .award-slogan-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.jsr-award-content .award-slogan-wrap .slogan-dash {
  color: #f5cf68;
  font-size: 14px;
  opacity: 0.85;
}

.jsr-award-content .award-slogan-wrap .award-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Page Entrance Animation */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= BANNER RESPONSIVE BREAKPOINTS (ALL DEVICES) ================= */
@media (max-width: 1200px) {
  .jsrbanner, #jsrbanner {
    min-height: 330px;
    padding: 90px 20px 20px;
  }

  .jsr-banner-bg-building {
    height: 120px;
  }

  .jsr-award-content .award-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .jsrbanner, #jsrbanner {
    min-height: 310px;
    padding: 85px 20px 20px;
  }

  .jsr-banner-bg-building {
    height: 105px;
  }

  .jsr-award-content .banner-title-icon {
    width: 44px;
    height: 44px;
  }

  .jsr-award-content .award-title {
    font-size: 38px;
    margin-bottom: 2px;
  }

  .jsr-award-content .jsr-breadcrumb-pill {
    padding: 5px 18px;
    font-size: 12px;
  }

  .jsr-award-content .award-slogan-wrap .award-tag {
    font-size: 11px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 768px) {
  .jsrbanner, #jsrbanner {
    min-height: 290px;
    padding: 80px 15px 20px;
  }

  .jsr-banner-bg-building {
    height: 90px;
  }

  .jsr-award-content .banner-title-icon {
    width: 40px;
    height: 40px;
  }

  .jsr-award-content .award-title {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .jsr-award-content .jsr-breadcrumb-pill {
    padding: 5px 16px;
    font-size: 12px;
    margin: 4px 0 8px 0;
  }

  .jsr-award-content .award-slogan-wrap {
    gap: 8px;
  }

  .jsr-award-content .award-slogan-wrap .award-tag {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .jsr-award-content .award-slogan-wrap .slogan-dash {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .jsrbanner, #jsrbanner {
    min-height: 340px;
    padding: 110px 15px 25px;
  }

  .jsr-banner-bg-building {
    height: 110px;
  }

  .jsr-award-content .banner-title-icon {
    width: 42px;
    height: 42px;
  }

  .jsr-award-content .award-title {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .jsr-award-content .jsr-breadcrumb-pill {
    padding: 5px 16px;
    font-size: 12px;
    gap: 6px;
    margin: 4px 0 8px 0;
  }

  .jsr-award-content .award-slogan-wrap {
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jsr-award-content .award-slogan-wrap .award-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  .jsr-award-content .award-slogan-wrap .slogan-dash {
    display: inline-block;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .jsrbanner, #jsrbanner {
    min-height: 320px;
    padding: 105px 10px 20px;
  }

  .jsr-banner-bg-building {
    height: 95px;
  }

  .jsr-award-content .banner-title-icon {
    width: 38px;
    height: 38px;
  }

  .jsr-award-content .award-title {
    font-size: 28px;
  }

  .jsr-award-content .award-slogan-wrap .award-tag {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

/*=============================
      JSR ABOUT US PAGE
==============================*/

#jsraboutuspg-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 30px;
  overflow: hidden;
}

.jsraboutuspg-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.jsraboutuspg-heading-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

.jsraboutuspg-heading {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1.5px;
  color: #0b3d82;
  text-transform: uppercase;
  margin: 0;
}

.jsraboutuspg-grid {
  display: flex;
  align-items: stretch;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.jsraboutuspg-video-box {
  flex: 0 0 45%;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jsraboutuspg-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.jsraboutuspg-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jsraboutuspg-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  color: #333333;
  text-align: justify;
  margin: 0 0 20px 0;
}

.jsraboutuspg-text:last-child {
  margin-bottom: 0;
}

/*=========================
        Laptop
=========================*/
@media (max-width: 1200px) {
  .jsraboutuspg-heading {
    font-size: 34px;
  }

  .jsraboutuspg-text {
    font-size: 15.5px;
    line-height: 1.8;
  }
}

/*=========================
        Tablet
========================*/
@media (max-width: 992px) {
  #jsraboutuspg-section {
    padding: 50px 20px;
  }

  .jsraboutuspg-grid {
    flex-direction: column;
    gap: 24px;
  }

  .jsraboutuspg-video-box {
    flex: none;
    width: 100%;
    height: 320px;
  }

  .jsraboutuspg-heading {
    font-size: 30px;
  }

  .jsraboutuspg-heading-wrapper {
    margin-bottom: 24px;
  }

  .jsraboutuspg-text {
    font-size: 15px;
    line-height: 1.8;
  }
}

/*=========================
      Large Mobile
========================*/
@media (max-width: 768px) {
  #jsraboutuspg-section {
    padding: 45px 18px;
  }

  .jsraboutuspg-video-box {
    height: 280px;
  }

  .jsraboutuspg-heading {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .jsraboutuspg-heading-wrapper {
    margin-bottom: 20px;
  }

  .jsraboutuspg-text {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/*=========================
        Mobile
========================*/
@media (max-width: 576px) {
  #jsraboutuspg-section {
    padding: 40px 15px;
  }

  .jsraboutuspg-video-box {
    height: 220px;
  }

  .jsraboutuspg-heading {
    font-size: 22px;
  }

  .jsraboutuspg-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    padding: 0;
  }

  .jsr-banner-bg-building {
    height: 110px;
  }

  .jsr-award-content .banner-title-icon {
    width: 42px;
    height: 42px;
  }

  .jsr-award-content .award-title {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .jsr-award-content .jsr-breadcrumb-pill {
    padding: 5px 16px;
    font-size: 12px;
    gap: 6px;
    margin: 4px 0 8px 0;
  }

  .jsr-award-content .award-slogan-wrap {
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jsr-award-content .award-slogan-wrap .award-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  .jsr-award-content .award-slogan-wrap .slogan-dash {
    display: inline-block;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .jsrbanner, #jsrbanner {
    min-height: 320px;
    padding: 105px 10px 20px;
  }

  .jsr-banner-bg-building {
    height: 95px;
  }

  .jsr-award-content .banner-title-icon {
    width: 38px;
    height: 38px;
  }

  .jsr-award-content .award-title {
    font-size: 28px;
  }

  .jsr-award-content .award-slogan-wrap .award-tag {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

/*=============================
      JSR ABOUT US PAGE
==============================*/

#jsraboutuspg-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 30px;
  overflow: hidden;
}

.jsraboutuspg-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.jsraboutuspg-heading-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

.jsraboutuspg-heading {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1.5px;
  color: #0b3d82;
  text-transform: uppercase;
  margin: 0;
}

.jsraboutuspg-grid {
  display: flex;
  align-items: stretch;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.jsraboutuspg-video-box {
  flex: 0 0 45%;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jsraboutuspg-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.jsraboutuspg-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jsraboutuspg-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  color: #333333;
  text-align: justify;
  margin: 0 0 20px 0;
}

.jsraboutuspg-text:last-child {
  margin-bottom: 0;
}

/*=========================
        Laptop
========================*/
@media (max-width: 1200px) {
  .jsraboutuspg-heading {
    font-size: 34px;
  }

  .jsraboutuspg-text {
    font-size: 15.5px;
    line-height: 1.8;
  }
}

/*=========================
        Tablet
========================*/
@media (max-width: 992px) {
  #jsraboutuspg-section {
    padding: 50px 20px;
  }

  .jsraboutuspg-grid {
    flex-direction: column;
    gap: 24px;
  }

  .jsraboutuspg-video-box {
    flex: none;
    width: 100%;
    height: 320px;
  }

  .jsraboutuspg-heading {
    font-size: 30px;
  }

  .jsraboutuspg-heading-wrapper {
    margin-bottom: 24px;
  }

  .jsraboutuspg-text {
    font-size: 15px;
    line-height: 1.8;
  }
}

/*=========================
      Large Mobile
========================*/
@media (max-width: 768px) {
  #jsraboutuspg-section {
    padding: 45px 18px;
  }

  .jsraboutuspg-video-box {
    height: 280px;
  }

  .jsraboutuspg-heading {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .jsraboutuspg-heading-wrapper {
    margin-bottom: 20px;
  }

  .jsraboutuspg-text {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/*=========================
        Mobile
========================*/
@media (max-width: 576px) {
  #jsraboutuspg-section {
    padding: 40px 15px;
  }

  .jsraboutuspg-video-box {
    height: 220px;
  }

  .jsraboutuspg-heading {
    font-size: 19.5px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .jsraboutuspg-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }
}

/*=========================
      Small Mobile
========================*/
@media (max-width: 375px) {
  .jsraboutuspg-heading {
    font-size: 17.5px;
    line-height: 1.35;
  }

  .jsraboutuspg-text {
    font-size: 13.5px;
    line-height: 1.65;
  }
}

/*==============================
      JSR VISION MISSION (ANIMATED CLASSIC UI)
===============================*/

#jsrvmvpg-section {
  width: 100%;
  background: #ffffff;
  padding: 0 0 30px 0;
  overflow: hidden;
}

.jsrvmvpg-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Top Section: Real Estate Image Background Box with Black Layer */

.jsrvmvpg-top {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.65) 100%),
              url('../images/aboutbg.png') center/cover no-repeat;
  position: relative;
  padding: 40px 0 105px 0;
}

.jsrvmvpg-top .jsrvmvpg-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.jsrvmvpg-top-left {
  flex: 1.1;
}

.jsrvmvpg-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF9600;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding: 5px 16px;
  background: rgba(0, 0, 0, 0.60);
  border: 1px solid #FF9600;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.jsr-crown-anim {
  display: inline-block;
  animation: crownRotate 3s ease-in-out infinite alternate;
}

@keyframes crownRotate {
  0% { transform: rotate(-6deg) scale(1); }
  100% { transform: rotate(8deg) scale(1.15); }
}

.jsrvmvpg-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.jsrvmvpg-title .jsr-orange-text {
  color: #FF9600;
}

/* Top Right Quality Policy Glass Card (Clean Soft Shadow) */
.jsrvmvpg-top-right {
  flex: 1;
}

.jsrvmvpg-qp-card {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 150, 0, 0.4);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.jsrvmvpg-qp-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: #FF9600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.jsr-shield-anim {
  display: inline-block;
  animation: shieldPulse 2.5s infinite alternate;
}

@keyframes shieldPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.18); opacity: 1; filter: drop-shadow(0 0 6px #FF9600); }
}

.jsrvmvpg-qp-card p {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Bottom Section: Single White Card Overlapping Top Image Box (Soft Clean Shadow) */

.jsrvmvpg-bottom {
  margin-top: -75px;
  position: relative;
  z-index: 3;
}

.jsrvmvpg-single-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 28px 32px;
  display: flex;
  align-items: stretch;
  gap: 32px;
  position: relative;
  border-top: 4px solid #FF9600;
}

.jsrvmvpg-col {
  flex: 1;
}

/* Side-by-side Icon & Heading Wrapper */
.col-heading-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

/* Center Vertical Divider Line with Animated Dot */
.jsrvmvpg-divider-line {
  width: 1px;
  background: linear-gradient(180deg, transparent, #c8d8ea 20%, #c8d8ea 80%, transparent);
  align-self: stretch;
  margin: 5px 0;
  position: relative;
}

.jsrvmvpg-divider-line .line-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: #FF9600;
  border-radius: 50%;
  animation: dotGlow 2.5s infinite alternate;
}

@keyframes dotGlow {
  0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 4px rgba(255, 150, 0, 0.6); }
  100% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 12px rgba(255, 150, 0, 1); }
}

.jsrvmvpg-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 150, 0, 0.12);
  border: 2px solid #FF9600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 150, 0, 0.15);
}

.jsrvmvpg-icon-badge:hover {
  background: #FF9600;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(255, 150, 0, 0.4);
}

.jsrvmvpg-icon-badge i {
  font-size: 18px;
  color: #FF9600;
  transition: all 0.3s ease;
}

.jsrvmvpg-icon-badge:hover i {
  color: #ffffff;
  transform: scale(1.15);
}

.jsrvmvpg-col h3.col-heading {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #0b3d82;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.col-title-line {
  width: 45px;
  height: 3px;
  background: #FF9600;
  border-radius: 3px;
  margin-bottom: 12px;
  transition: width 0.3s ease;
}

.jsrvmvpg-col:hover .col-title-line {
  width: 65px;
}

.jsrvmvpg-col p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
  text-align: justify;
}

.jsrvmvpg-col p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
  text-align: justify;
}

.jsrvmvpg-col p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #383838;
  margin: 0;
  text-align: justify;
}

/*==============================
        Laptop Breakpoint
===============================*/

@media (max-width: 1100px) {
  .jsrvmvpg-title {
    font-size: 26px;
  }

  .jsrvmvpg-top {
    padding: 30px 0 90px 0;
  }

  .jsrvmvpg-single-box {
    padding: 22px 22px;
    gap: 20px;
  }

  .jsrvmvpg-col h3.col-heading {
    font-size: 16px;
  }

  .jsrvmvpg-col p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/*==============================
        Tablet Breakpoint
===============================*/

@media (max-width: 991px) {
  .jsrvmvpg-top .jsrvmvpg-container {
    flex-direction: column;
    gap: 20px;
  }

  .jsrvmvpg-top-left {
    text-align: center;
  }

  .jsrvmvpg-subtitle {
    margin: 0 auto 10px auto;
    display: inline-flex;
    justify-content: center;
  }

  .jsrvmvpg-title {
    font-size: 24px;
    text-align: center;
  }

  .jsrvmvpg-single-box {
    flex-direction: column;
    gap: 20px;
    padding: 22px 20px;
  }

  .jsrvmvpg-divider-line {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .jsrvmvpg-divider-line .line-dot {
    top: 50%;
    left: 50%;
  }

  .jsrvmvpg-bottom {
    margin-top: -45px;
  }
}

/*==============================
      Mobile Breakpoint
===============================*/

@media (max-width: 768px) {
  #jsrvmvpg-section {
    padding: 0 0 25px 0;
  }

  .jsrvmvpg-top {
    padding: 25px 0 65px 0;
  }

  .jsrvmvpg-title {
    font-size: 20px;
  }

  .jsrvmvpg-single-box {
    padding: 18px 16px;
  }

  .jsrvmvpg-col h3.col-heading {
    font-size: 15px;
  }

  .jsrvmvpg-col p {
    font-size: 12.5px;
    line-height: 1.55;
  }
}

/*==============================
      JSR CURRENT PROJECTS LOGOS SECTION
===============================*/

#jsr-current-projects-section {
  width: 100%;
  background: #f8fafc;
  position: relative;
  padding: 45px 0 60px 0;
  overflow: hidden;
}

#jsr-current-projects-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  background: url('../images/bg.png') center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  animation: currproj-bg-pan 12s ease-in-out infinite alternate;
}

@keyframes currproj-bg-pan {
  0% {
    transform: translate(-4%, -3%) scale(1);
  }
  50% {
    transform: translate(3%, 4%) scale(1.04);
  }
  100% {
    transform: translate(4%, -2%) scale(1);
  }
}

.jsr-currproj-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jsr-currproj-heading-wrapper {
  text-align: center;
  margin-bottom: 35px;
}

.jsr-currproj-heading {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: 0.5px;
}

.jsr-currproj-heading .jsr-highlight-text {
  color: #0b3d82;
}

.jsr-currproj-title-line {
  width: 45px;
  height: 2.5px;
  background: #0b3d82;
  border-radius: 2px;
  margin: 10px auto 0 auto;
}

.jsr-currproj-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 16px;
  max-width: 1140px;
  margin: 0 auto;
}

.jsr-currproj-card {
  width: 145px;
  height: 65px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.jsr-currproj-card:hover {
  transform: translateY(-4px);
  border-color: #0b3d82;
  box-shadow: 0 8px 20px rgba(11, 61, 130, 0.12);
}

.jsr-currproj-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease;
}

.jsr-currproj-card:hover img {
  transform: scale(1.06);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  #jsr-current-projects-section {
    padding: 35px 0 45px 0;
  }

  .jsr-currproj-heading {
    font-size: 26px;
  }

  .jsr-currproj-card {
    width: 130px;
    height: 58px;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  #jsr-current-projects-section {
    padding: 30px 10px 40px 10px;
  }

  .jsr-currproj-heading {
    font-size: 21px;
  }

  .jsr-currproj-grid {
    gap: 8px 8px;
    justify-content: center;
  }

  .jsr-currproj-card {
    width: calc((100% - 16px) / 3);
    max-width: 115px;
    min-width: 90px;
    height: 48px;
    padding: 5px 8px;
    border-radius: 8px;
  }
}

@media (max-width: 375px) {
  .jsr-currproj-grid {
    gap: 6px 6px;
  }

  .jsr-currproj-card {
    width: calc((100% - 12px) / 3);
    height: 44px;
    padding: 4px 6px;
  }
}

/*==============================
      JSR ABOUT FOUNDER SECTION
===============================*/

#jsr-about-founder-section {
  width: 100%;
  background-color: #0b3d82;
  border-top: 1px solid rgba(255, 150, 0, 0.3);
  border-bottom: 1px solid rgba(255, 150, 0, 0.3);
  padding: 35px 0 38px 0;
  position: relative;
  overflow: hidden;
}

#jsr-about-founder-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: brightness(0) invert(1);
  z-index: 0;
  pointer-events: none;
}

.jsr-founder-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.jsr-founder-card {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
  padding: 0;
  position: relative;
}

.jsr-founder-card::after {
  content: "";
  display: table;
  clear: both;
}

.jsr-founder-img-col {
  float: left;
  width: 300px;
  max-width: 300px;
  margin-right: 30px;
  margin-bottom: 10px;
  margin-top: 0;
}

.jsr-founder-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border: 2.5px solid #FF9600;
}

.jsr-founder-img-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.jsr-founder-img-wrapper:hover img {
  transform: scale(1.04);
}

.jsr-founder-content-col {
  display: block;
}

.jsr-founder-name {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 4px 0 3px 0;
}

.jsr-founder-name .jsr-orange-text {
  color: #FF9600;
}

.jsr-founder-designation {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #FF9600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 6px 0;
}

.jsr-founder-title-line {
  width: 50px;
  height: 3px;
  background: #FF9600;
  border-radius: 2px;
  margin: 0 0 12px 0;
}

.jsr-text-orange-bold {
  color: #FF9600;
  font-weight: 700;
}

.jsr-text-gold-bold {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 150, 0, 0.4);
}

.jsr-founder-bio {
  font-family: 'Inter', sans-serif;
  font-size: 12.8px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
  text-align: justify;
}

.jsr-founder-bio strong {
  color: #ffffff;
  font-weight: 700;
}

.jsr-founder-bio strong {
  color: #ffffff;
  font-weight: 700;
}

.jsr-founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.jsr-founder-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.jsr-founder-highlights .highlight-item i {
  color: #FF9600;
  font-size: 14px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  #jsr-about-founder-section {
    padding: 30px 0 35px 0;
  }

  .jsr-founder-card {
    display: block;
  }

  .jsr-founder-img-col {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px auto;
  }

  .jsr-founder-img-wrapper img {
    height: 300px;
  }

  .jsr-founder-name {
    font-size: 24px;
    text-align: center;
  }

  .jsr-founder-designation {
    font-size: 12px;
    text-align: center;
  }

  .jsr-founder-title-line {
    margin: 0 auto 12px auto;
  }

  .jsr-founder-content-col .jsrvmvpg-subtitle {
    display: table;
    margin: 0 auto 10px auto;
  }

  .jsr-founder-bio {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
  }
}

/* ===================================== SPLIT CARD CONTACT US SECTION START ===================================== */
#jsr-contactus-section {
  padding: 30px;
  background-color: #f4f7fa;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.jsr-contactus-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Main Unified Outer Card */
.jsr-contact-split-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: stretch;
}
/* LEFT SIDE: Dark Navy Sidebar Panel */
.jsr-contact-dark-panel {
  background: linear-gradient(155deg, #0052a1 0%, #001e2b 100%);
  border-radius: 12px;
  padding: 32px 28px;
  flex: 0 0 380px;
  min-width: 290px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Decorative Overlapping Circles in Dark Sidebar */
.jsr-panel-bg-circle-1 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.jsr-panel-bg-circle-2 {
  position: absolute;
  bottom: 25px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.jsr-dark-panel-top {
  position: relative;
  z-index: 2;
}

.jsr-dark-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.jsr-dark-panel-sub {
  font-size: 13px;
  color: #d4e4f7;
  margin-bottom: 24px;
  line-height: 1.45;
}

/* Contact Details List */
.jsr-dark-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.jsr-dark-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #e2e8f0;
}

.jsr-dark-info-item i {
  font-size: 16px;
  color: #ffffff;
  margin-top: 3px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.jsr-dark-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jsr-dark-info-label {
  font-size: 11px;
  font-weight: 700;
  color: #ff9600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.jsr-dark-info-val {
  font-size: 13px;
  line-height: 1.5;
  color: #f1f5f9;
  font-weight: 400;
}

.jsr-dark-info-val a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jsr-dark-info-val a:hover {
  color: #ff9600;
}

.jsr-dark-info-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.jsr-dark-info-link:hover {
  transform: translateX(4px);
}

.jsr-dark-info-link:hover i {
  color: #ff9600;
}

.jsr-dark-info-link:hover .jsr-dark-info-val {
  color: #ff9600;
}

/* Bottom Social Icons */
.jsr-dark-panel-socials {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
}

.jsr-social-circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jsr-social-circle-btn:hover {
  background: #ff9600;
  color: #001e2b;
  transform: translateY(-2px);
}

/* RIGHT SIDE: Light Form Panel */
.jsr-contact-light-panel {
  flex: 1 1 500px;
  padding: 30px 35px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.jsr-light-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0052a1;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.jsr-light-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 2-Column Form Row */
.jsr-form-row-2col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.jsr-form-col-item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

.jsr-form-col-full {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Minimalist Underline Label & Input */
.jsr-input-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #0052a1;
  margin-bottom: 4px;
}

.jsr-underline-input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #cbd5e1;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #001e2b;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.jsr-underline-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.jsr-underline-input:focus {
  border-bottom-color: #0052a1;
}

/* Custom Styled Dropdown Component */
.jsr-custom-select-wrap {
  position: relative;
  width: 100%;
  user-select: none;
}

.jsr-custom-select-trigger {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #cbd5e1;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #001e2b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.jsr-custom-select-wrap.open .jsr-custom-select-trigger {
  border-bottom-color: #0052a1;
}

.jsr-selected-val {
  color: #001e2b;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jsr-selected-val.placeholder-text {
  color: #a0aec0;
  font-weight: 400;
}

.jsr-select-arrow {
  font-size: 12px;
  color: #0052a1;
  transition: transform 0.3s ease;
}

.jsr-custom-select-wrap.open .jsr-select-arrow {
  transform: rotate(180deg);
}

.jsr-custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 52, 120, 0.15);
  border: 1px solid rgba(0, 82, 161, 0.15);
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.jsr-custom-select-wrap.open .jsr-custom-select-options {
  display: block;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.jsr-select-option {
  padding: 9px 16px;
  font-size: 13.5px;
  color: #334155;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.jsr-select-option:hover {
  background: #f0f7ff;
  color: #0052a1;
  font-weight: 500;
}

.jsr-select-option.selected {
  background: #e6f0fa;
  color: #0052a1;
  font-weight: 600;
}

.jsr-select-option.placeholder-option {
  color: #94a3b8;
}

.jsr-underline-textarea {
  resize: vertical;
  min-height: 60px;
}


/* Consent Checkbox */
.jsr-contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.jsr-contact-consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #0052a1;
}

.jsr-contact-consent label {
  font-size: 10.5px;
  line-height: 1.45;
  color: #64748b;
  cursor: pointer;
}

/* Bottom Submit Action Row */
.jsr-form-bottom-action {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.jsr-send-msg-btn {
  padding: 12px 42px;
  background-color: #0052a1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 82, 161, 0.25);
}
.jsr-send-msg-btn:hover {
  background-color: #ff9600;
  color: #001e2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 150, 0, 0.35);
}

.jsr-send-msg-btn:active {
  transform: translateY(0);
}

/* Form Alert Status */
.jsr-form-status {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.jsr-form-status.success {
  display: flex;
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

/* Attached 3-Part Location Hub Section */
#jsr-contact-map-section {
  padding: 30px;
  background-color: #f4f7fa;
  font-family: 'Inter', sans-serif;
}

.jsr-map-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.jsr-map-hub-header {
  text-align: center;
  margin-bottom: 25px;
}

.jsr-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #ff9600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 150, 0, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 150, 0, 0.25);
}

.jsr-map-title {
  font-size: 24px;
  font-weight: 700;
  color: #0052a1;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.jsr-map-subtitle {
  font-size: 13px;
  color: #64748b;
}

.jsr-attached-location-card {
  display: flex;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  align-items: stretch;
}

/* Left Column: Office 1 (Top) & Office 2 (Bottom) Stacked */
.jsr-loc-left-col {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid #cbd5e1;
}

.jsr-loc-part-box {
  flex: 1 1 50%;
  padding: 22px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jsr-loc-part-box:first-child {
  border-bottom: 1.5px solid #e2e8f0;
}

.jsr-loc-part-box:hover {
  background: #f8fafc;
}

.jsr-loc-part-box.active {
  background: #ffffff;
}

.jsr-loc-part-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.jsr-loc-part-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0052a1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.jsr-loc-part-box.active .jsr-loc-part-badge {
  background: #ff9600;
  color: #001e2b;
}

.jsr-loc-part-titles {
  display: flex;
  flex-direction: column;
}

.jsr-office-tag {
  font-size: 10px;
  font-weight: 700;
  color: #ff9600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.jsr-office-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #001e2b;
  line-height: 1.2;
}

.jsr-office-addr {
  font-size: 12px;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 12px;
}

.jsr-office-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}


.jsr-view-map-pill {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jsr-loc-part-box.active .jsr-view-map-pill {
  color: #0052a1;
}

.jsr-directions-btn {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  background: #0052a1;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 82, 161, 0.2);
}

.jsr-directions-btn:hover {
  background: #ff9600;
  color: #001e2b;
  box-shadow: 0 4px 12px rgba(255, 150, 0, 0.3);
}

/* Right Column: Map Window */
.jsr-loc-part-map {
  flex: 1 1 500px;
  min-height: 380px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.jsr-map-frame-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: none;
}

.jsr-map-frame-wrap.active {
  display: block;
  height: 100%;
}

.jsr-map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .jsr-attached-location-card {
    flex-direction: column;
  }
  .jsr-loc-left-col {
    flex: 0 0 auto;
    width: 100%;
    border-right: none;
  }
  .jsr-loc-part-map {
    flex: 0 0 300px;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
  }
  .jsr-map-frame-wrap {
    height: 100% !important;
    min-height: 100% !important;
  }
  .jsr-map-frame-wrap iframe {
    height: 100% !important;
    min-height: 100% !important;
  }
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* Laptop & Medium Displays (992px to 1199px) */
@media (max-width: 1199px) {
  .jsr-contactus-container, .jsr-map-container {
    width: 92%;
  }
  .jsr-contact-dark-panel {
    flex: 0 0 340px;
    padding: 28px 22px;
  }
  .jsr-contact-light-panel {
    padding: 28px 25px;
  }
  .jsr-form-row-2col {
    gap: 18px;
  }
}

/* Tablets & iPad Portrait (768px to 991px) */
@media (max-width: 991px) {
  #jsr-contactus-section {
    padding: 30px 0 40px 0;
  }
  .jsr-contact-split-card {
    flex-direction: column;
    padding: 6px;
  }
  .jsr-contact-dark-panel {
    flex: 1 1 100%;
    min-width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 28px 24px;
  }
  .jsr-contact-light-panel {
    flex: 1 1 100%;
    padding: 28px 24px;
  }
  .jsr-dark-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .jsr-map-title {
    font-size: 23px;
  }
}

/* Small Tablets & Large Mobile (576px to 767px) */
@media (max-width: 767px) {
  .jsr-dark-info-list {
    grid-template-columns: 1fr;
  }
  .jsr-form-row-2col {
    flex-direction: column;
    gap: 16px;
  }
  .jsr-form-col-item {
    flex: 1 1 100%;
  }
  .jsr-send-msg-btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile Phones (< 576px) */
@media (max-width: 575px) {
  #jsr-contactus-section {
    padding: 20px 0 25px 0;
  }
  .jsr-contactus-container, .jsr-map-container {
    width: 94%;
  }
  .jsr-contact-split-card {
    border-radius: 12px;
    padding: 4px;
  }
  .jsr-contact-dark-panel {
    padding: 22px 18px;
    border-radius: 10px 10px 0 0;
  }
  .jsr-dark-panel-title {
    font-size: 20px;
  }
  .jsr-dark-panel-sub {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .jsr-dark-info-list {
    gap: 14px;
    margin-bottom: 18px;
  }
  .jsr-dark-info-val {
    font-size: 12.5px;
  }
  .jsr-contact-light-panel {
    padding: 22px 16px;
  }
  .jsr-light-panel-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .jsr-input-label {
    font-size: 11px;
  }
  .jsr-underline-input, .jsr-custom-select-trigger {
    font-size: 13.5px;
    padding: 7px 0;
  }
  .jsr-contact-consent label {
    font-size: 10px;
  }
  .jsr-send-msg-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 13.5px;
  }
  #jsr-contact-map-section {
    padding: 15px 0 25px 0;
  }
  .jsr-map-title {
    font-size: 20px;
  }
  .jsr-map-subtitle {
    font-size: 12px;
  }
  .jsr-loc-part-map {
    flex: 0 0 250px;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    background: #ffffff;
  }
  .jsr-map-frame-wrap {
    height: 100% !important;
    min-height: 100% !important;
  }
  .jsr-map-frame-wrap iframe {
    height: 100% !important;
    min-height: 100% !important;
  }
}
/* ===================================== SPLIT CARD CONTACT US SECTION END ===================================== */


/* ===================================== FORMS SECTION START ===================================== */
#jsr-forms-section {
  padding: 30px;
  background-color: #f4f7fa;
  font-family: 'Inter', sans-serif;
}

.jsr-forms-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.jsr-forms-header {
  text-align: center;
  margin-bottom: 20px;
}

.jsr-forms-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #ff9600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 150, 0, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 150, 0, 0.25);
}

.jsr-forms-title {
  font-size: 28px;
  font-weight: 700;
  color: #0052a1;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.jsr-forms-subtitle {
  font-size: 14px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

/* 1 Row with 3 Equal PDF Form Cards */
.jsr-forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.jsr-form-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.jsr-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0052a1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jsr-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 82, 161, 0.12);
  border-color: #0052a1;
}

.jsr-form-card:hover::before {
  opacity: 1;
}

/* PDF File Icon Container */
.jsr-pdf-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(0, 82, 161, 0.08);
  border: 1px solid rgba(0, 82, 161, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #0052a1;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.jsr-form-card:hover .jsr-pdf-icon-wrapper {
  background: #0052a1;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(0, 82, 161, 0.25);
}

.jsr-pdf-tag {
  font-size: 10px;
  font-weight: 700;
  color: #0052a1;
  background: rgba(0, 82, 161, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.jsr-pdf-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 10px;
  line-height: 1.3;
}

.jsr-pdf-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Action Button */
.jsr-pdf-open-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  background: #0052a1;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 82, 161, 0.25);
}

.jsr-pdf-open-btn:hover {
  background: #ff9600;
  color: #001e2b;
  box-shadow: 0 6px 18px rgba(255, 150, 0, 0.35);
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .jsr-forms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .jsr-forms-title {
    font-size: 24px;
  }
}
/* ===================================== FORMS SECTION END ===================================== */


/* ===================================== CSR SECTION START ===================================== */
#jsr-csr-banner-section {
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 520px;
  max-height: 720px;
  position: relative;
  background-color: #010c17;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.csr-banner-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.csr-banner-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

/* Solid Royal Blue Segmented Capsule Nav (Fixed Viewport Bottom) */
.csr-project-nav-pill {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  background: #0052a1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  max-width: 92%;
  transition: bottom 0.15s ease-out;
}

.csr-proj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.csr-proj-btn:last-child {
  border-right: none;
}

.csr-proj-btn:hover {
  background: #003d78;
  color: #ff9600;
}

@media (max-width: 991px) {
  #jsr-csr-banner-section {
    height: 60vh;
    min-height: 380px;
  }
  .csr-banner-overlay-pills {
    bottom: 20px;
    gap: 10px;
  }
  .csr-hero-pill {
    padding: 9px 22px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  #jsr-csr-banner-section {
    height: 48vh;
    min-height: 280px;
  }
  .csr-banner-overlay-pills {
    bottom: 15px;
    gap: 8px;
  }
  .csr-hero-pill {
    padding: 7px 16px;
    font-size: 12px;
  }
}

#jsr-csr-section {
  padding: 30px 0 35px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.csr-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* Clean Text Content Block (Matching Screenshot 1) */
.csr-text-wrapper {
  margin-bottom: 60px;
}

.csr-main-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.csr-body-text {
  font-size: 15px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 22px;
}

.csr-body-text:last-child {
  margin-bottom: 0;
}

/* Photo Gallery Header & Grid (5 Columns Desktop) */
.csr-gallery-header {
  text-align: center;
  margin-bottom: 35px;
}

.csr-gallery-title {
  font-size: 24px;
  font-weight: 700;
  color: #0052a1;
  letter-spacing: -0.3px;
}

.csr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.csr-gallery-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.csr-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 82, 161, 0.15);
  border-color: #0052a1;
}

.csr-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  background: #e2e8f0;
}

.csr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.csr-gallery-card:hover .csr-img-wrap img {
  transform: scale(1.08);
}

.csr-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.csr-gallery-card:hover .csr-img-overlay {
  opacity: 1;
}

.csr-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff9600;
  color: #001e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 150, 0, 0.4);
}

.csr-card-info {
  padding: 12px 10px;
  text-align: center;
  background: #ffffff;
}

.csr-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Lightbox Popup Modal Styling */
.csr-lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(1, 12, 23, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.csr-lightbox.active {
  display: flex;
  opacity: 1;
}

.csr-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.csr-lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transition: transform 0.3s ease;
}

.csr-lightbox-caption {
  margin-top: 15px;
  text-align: center;
  color: #ffffff;
}

.csr-lightbox-counter {
  font-size: 12px;
  font-weight: 700;
  color: #ff9600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.csr-lightbox-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.csr-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 38px;
  font-weight: 300;
  color: #ffffff;
  cursor: pointer;
  z-index: 100001;
  transition: color 0.2s ease, transform 0.2s ease;
}

.csr-lightbox-close:hover {
  color: #ff9600;
  transform: scale(1.1);
}

.csr-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100001;
  transition: all 0.3s ease;
}

.csr-lightbox-arrow:hover {
  background: #ff9600;
  color: #001e2b;
  border-color: #ff9600;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 150, 0, 0.4);
}

.csr-lightbox-prev {
  left: 30px;
}

.csr-lightbox-next {
  right: 30px;
}

/* Lightbox Media Queries */
@media (max-width: 1199px) {
  .csr-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .csr-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .csr-lightbox-prev { left: 15px; }
  .csr-lightbox-next { right: 15px; }
}

@media (max-width: 650px) {
  .csr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .csr-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .csr-gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================== CSR SECTION END ===================================== */

/* ======================================================================================================
=================================== GALLERY START =======================================================
====================================================================================================== */
/* ===============================
   Responsive City Grid Layout
================================= */

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default: Desktop */
  grid-auto-rows: minmax(120px, 220px);
  gap: 6px;

  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;

  font-family: sans-serif;
  box-sizing: border-box;
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .city-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

/* ===============================
   Grid Items
================================= */

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

/* Image Styling */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* ===============================
   Text Overlay
================================= */

.city-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;

  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);

  text-align: center;
  color: white;
  font-weight: 600;

  font-size: clamp(13px, 2.5vw, 18px);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.9);

  pointer-events: none;
  z-index: 2;
}

/* ===============================
   Sizing Classes
================================= */

/* Large Block (2x2) */
.grid-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* Wide Block (2x1) */
.grid-item.wide {
  grid-column: span 2;
}

/* Reset spans on small screens */
@media (max-width: 768px) {
  .grid-item.big,
  .grid-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ======================================================================================================
=================================== GALLERY END =========================================================
====================================================================================================== */

/* ======================================================================================================
=================================== VIDEOS START ========================================================
====================================================================================================== */

/* --- SECTION LAYOUT --- */
.videopage-section {
    padding: 60px 20px;
    background-color: #f7f9fc;
}

.videopage-header {
    text-align: center;
    margin-bottom: 40px;
}

.videopage-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #0e2a47;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.videopage-divider {
    width: 70px;
    height: 3px;
    background-color: #0052a1;
    margin: 0 auto;
    border-radius: 2px;
}

/* --- GRID CONTAINER (4 Columns for Desktop) --- */
.videopage-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- CARD ITEM STYLES --- */
.videopage-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid #eef2f6;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videopage-frame-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    background: #000;
}

/* Iframe Styling */
.videopage-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.videopage-info {
    padding: 12px 14px 14px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f0f4f8;
}

.videopage-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0e2a47;
    margin: 0;
    line-height: 1.35;
}

/* Hover Effect: Slight lift */
.videopage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Laptop (1200px) -> 3 Columns */
@media (max-width: 1200px) {
    .videopage-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px) -> 2 Columns */
@media (max-width: 768px) {
    .videopage-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile (480px) -> 1 Column */
@media (max-width: 480px) {
    .videopage-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ======================================================================================================
=================================== VIDEOS END ==========================================================
====================================================================================================== */

/* ======================================================================================================
=================================== OUR GLLERY PROJECT VIDEO START ======================================
====================================================================================================== */

.project-video-section {
    padding: 60px 20px;
    background: #f7f9fc;
}

/* FILTER BUTTONS */
.project-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 14px;
    max-width: 1250px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid #0052a1;
    background: #ffffff;
    color: #0052a1;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border-radius: 30px;
    white-space: nowrap; /* Ensures button text stays on 1 line and never breaks into 2 lines */
    box-shadow: 0 2px 6px rgba(0, 82, 161, 0.08);
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0052a1;
    color: #ffffff;
    border-color: #0052a1;
    box-shadow: 0 6px 18px rgba(0, 82, 161, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .project-filter {
        gap: 10px 12px;
        margin-bottom: 30px;
    }
    .filter-btn {
        padding: 9px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .project-filter {
        gap: 8px 10px;
        padding: 0 10px;
    }
    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .project-filter {
        gap: 8px 8px;
        padding: 0 5px;
    }
    .filter-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* SECTION HEADING */
.section-heading {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    color: #0e2a47;
    text-align: center;
    margin: 20px 0 30px;
    display: none;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* CARD */
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* VIDEO */
.video-frame iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
}

.video-thumbnail-link {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumbnail-link:hover .video-thumbnail-img {
    transform: scale(1.04);
    opacity: 0.9;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 38px;
    background: #ff0000;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-thumbnail-link:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #cc0000;
}

/* TEXT */
.video-title {
    text-align: center;
    font-weight: 600;
    color: #0e2a47;
    margin: 14px 12px 6px;
    font-size: 15px;
    line-height: 1.4;
}

.video-subtitle {
    text-align: center;
    font-size: 13px;
    color: #0052a1;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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


/* ======================================================================================================
=================================== OUR GLLERY PROJECT VIDEO END ========================================
====================================================================================================== */

/* ========================== BLOGS PAGE SECTION ================================== */
/* ========================== BLOGS PAGE SECTION ================================== */
#jsrbnp{
    width:100%;
    padding:40px 20px;
    background:#f7f7f9;
}

/*=====================================
            Heading
=====================================*/

#jsrbnp .about-content {
    text-align: center;
    margin: 0 auto 40px auto;
    width: 100%;
}

#jsrbnp .about-title {
    display: inline-block;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    color: #0e2a47;
}

#jsrbnp .about-underline {
    width: 90px;
    height: 4px;
    background: #0052a1;
    margin: 14px auto 0 auto;
    border-radius: 2px;
}

.jsrbnp-grid{
    max-width:1450px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/*=====================================
            Card
=====================================*/

.jsrbnp-card{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:100%;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #eef2f6;
}

.jsrbnp-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

/*=====================================
            Image
=====================================*/

.jsrbnp-image{
    width:100%;
    height:185px;
    overflow:hidden;
    background:#eef2f6;
}

.jsrbnp-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

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

/*=====================================
            Content
=====================================*/

.jsrbnp-content{
    padding:18px 16px;
    display:flex;
    flex-direction:column;
    flex:1;
    justify-content:space-between;
}

.jsrbnp-content h3{
    color:#0e2a47;
    font-size:13.5px;
    font-weight:700;
    line-height:1.45;
    text-align:center;
    text-transform:uppercase;
    margin-bottom:15px;
}

/*=====================================
            Button
=====================================*/

.jsrbnp-btn{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:40px;
    border-radius:6px;
    background:#0052a1 !important;
    color:#ffffff !important;
    text-decoration:none;
    font-size:13.5px;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow:0 4px 12px rgba(0,82,161,0.22);
}

.jsrbnp-btn:hover{
    background:#0e2a47 !important;
    color:#ffffff !important;
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(14,42,71,0.32);
}

/*=====================================
            Large Tablet
=====================================*/

@media(max-width:1199px){

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

}

/*=====================================
            Tablet
=====================================*/

@media(max-width:767px){

    #jsrbnp{
        padding:70px 15px;
    }

    .jsrbnp-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .jsrbnp-image{
        height:220px;
    }

    .jsrbnp-content{
        padding:25px 20px;
    }

    .jsrbnp-content h3{
        font-size:17px;

        min-height:auto;

        display:block;
    }

}

/*=====================================
            Small Mobile
=====================================*/

@media(max-width:480px){

    .jsrbnp-image{
        height:200px;
    }

}


/* ========================== BLOG DETAIL PAGE SECTION ================================== */
#jsrbndetail{
    width:100%;
    padding:40px 20px 60px;
    background:#ffffff;
}

.jsrbndetail-container{
    max-width:920px;
    margin:0 auto;
}

/*========================
        Title
=========================*/

.jsrbndetail-title{
    font-size:34px;
    line-height:1.35;
    font-weight:700;
    color:#0052a1;
    margin-bottom:30px;
    text-align: center;
}

/*========================
        Featured Image
=========================*/

.jsrbndetail-image{
    margin-bottom:40px;
    overflow:hidden;
    border-radius:16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.jsrbndetail-image img{
    width:100%;
    height:auto;
    max-height:480px;
    object-fit:cover;
    display:block;
}

/*========================
        Content
=========================*/

.jsrbndetail-content{
    color:#333333;
}

.jsrbndetail-content p{
    font-size:16.5px;
    line-height:1.8;
    margin-bottom:22px;
    color:#4a5568;
}

/* H2 */

.jsrbndetail-content h2{
    font-size:25px;
    color:#0052a1;
    margin:40px 0 20px;
    font-weight:700;
    line-height:1.4;
    border-left: 4.5px solid #0052a1;
    padding-left: 14px;
}

/* H3 */

.jsrbndetail-content h3{
    font-size:21px;
    color:#0e2a47;
    margin:35px 0 15px;
    font-weight:700;
    line-height:1.4;
}

/* Lists */

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

.jsrbndetail-content ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:12px;
    font-size:16.5px;
    line-height:1.75;
    color:#4a5568;
}

.jsrbndetail-content ul li::before{
    content:"•";
    position:absolute;
    left:2px;
    top:-1px;
    color:#0052a1;
    font-size:22px;
    line-height:1;
    font-weight:bold;
}

.jsrbndetail-content ol{
    margin:0 0 25px 0;
    padding-left:22px;
}

.jsrbndetail-content ol li{
    margin-bottom:14px;
    font-size:16.5px;
    line-height:1.75;
    color:#4a5568;
}

.jsrbndetail-content ol li::marker{
    color:#0052a1;
    font-weight:700;
    font-size:17px;
}

.jsrbndetail-content strong{
    color:#0e2a47;
    font-weight:700;
}

/*========================
        Tablet
=========================*/

@media(max-width:991px){

    .jsrbndetail-title{
        font-size:32px;
    }

    .jsrbndetail-image img{
        height:420px;
    }

    .jsrbndetail-content h2{
        font-size:28px;
    }

    .jsrbndetail-content h3{
        font-size:24px;
    }

}

/*========================
        Mobile
=========================*/

@media(max-width:767px){

    #jsrbndetail{
        padding:60px 15px;
    }

    .jsrbndetail-title{
        font-size:26px; /* Reduced from 30px */
    }

    .jsrbndetail-image{
        border-radius:12px;
    }

    .jsrbndetail-image img{
        height:250px;
    }

    .jsrbndetail-content p,
    .jsrbndetail-content li{
        font-size:16px;
    }

    .jsrbndetail-content h2{
        font-size:24px;
        margin:40px 0 20px;
    }

    .jsrbndetail-content h3{
        font-size:22px;
    }

}