/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer p {
    color: white;
    font-size: 15px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

/* =========================================================
ngrsm 2026 PROFESSIONAL WEBSITE DESIGN
========================================================= */

/* ---------- Global ---------- */

:root {
    --ngrsm-primary: #0b3d5c;
    --ngrsm-secondary: #126782;
    --ngrsm-accent: #d69b3a;
    --ngrsm-dark: #082c42;
    --ngrsm-text: #536471;
    --ngrsm-light: #f4f8fa;
    --ngrsm-white: #ffffff;
    --ngrsm-border: #e4ebef;
}

.ngrsm-section {
    padding: 17px 0;
    position: relative;
    overflow: hidden;
}

    .ngrsm-section p {
        color: var(--ngrsm-text);
        font-size: 16px;
        line-height: 1.9;
        text-align: justify;
    }

/* ---------- Hero ---------- */

.ngrsm-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ngrsm-hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: -64px;
    margin-top: -27px;
}

.ngrsm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(4, 32, 48, 0.92) 0%, rgba(4, 32, 48, 0.72) 40%, rgba(4, 32, 48, 0.15) 100% );
}

.ngrsm-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    text-align: left;
}

    .ngrsm-hero-content h1 {
        color: #ffffff;
        font-size: clamp(60px, 9vw, 130px);
        font-weight: 800;
        letter-spacing: 5px;
        margin: 20px 0;
        line-height: 1;
    }

.ngrsm-hero-badge {
    display: inline-block;
    color: #ffffff;
    border-left: 4px solid var(--ngrsm-accent);
    padding-left: 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
}

.ngrsm-hero-line {
    width: 100px;
    height: 4px;
    background: var(--ngrsm-accent);
    margin-top: 25px;
}

/* ---------- Section Heading ---------- */

.ngrsm-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.ngrsm-section-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--ngrsm-accent);
    letter-spacing: 2px;
    padding-top: 10px;
}

.ngrsm-eyebrow {
    display: block;
    color: var(--ngrsm-secondary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.ngrsm-section-heading h1 {
    color: var(--ngrsm-dark);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
    font-size: 25px;
}

.ngrsm-centered-heading {
    justify-content: center;
    text-align: center;
}

    .ngrsm-centered-heading .ngrsm-section-number {
        display: none;
    }

/* ---------- About ---------- */

.ngrsm-about-section {
    background: #ffffff;
}

.ngrsm-about-card {
    position: relative;
    padding: 20px;
    background: var(--ngrsm-light);
    box-shadow: 0 20px 60px rgba(8, 44, 66, 0.08);
}

.ngrsm-about-card p {
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.ngrsm-about-decoration {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 130px;
    height: 130px;
    border: 2px solid rgba(18, 103, 130, 0.12);
    border-radius: 50%;
}

/* ---------- Theme ---------- */

.ngrsm-theme-section {
    background: linear-gradient( 135deg, #f3f8fa 0%, #ffffff 55%, #edf5f7 100% );
}

.ngrsm-theme-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.ngrsm-theme-title {
    position: relative;
}

.ngrsm-theme-highlight {
    margin-top: 35px;
    padding: 25px;
    background: var(--ngrsm-primary);
    color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(11, 61, 92, 0.2);
}

    .ngrsm-theme-highlight span {
        display: block;
        font-size: 36px;
        font-weight: 800;
        letter-spacing: 5px;
    }

    .ngrsm-theme-highlight small {
        display: block;
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.6;
        opacity: 0.85;
    }

.ngrsm-theme-content {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
    box-shadow: 0 20px 50px rgba(8, 44, 66, 0.06);
}

/* ---------- Sessions ---------- */

.ngrsm-session-section {
    background: #ffffff;
}

.ngrsm-session-card {
    position: relative;
    min-width: 0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
    overflow: hidden;
    transition: 0.3s ease;
    margin-bottom: 9px;
}

    .ngrsm-session-card:hover {
        transform: translateY(-10px);
        border-color: var(--ngrsm-secondary);
        box-shadow: 0 25px 50px rgba(8, 44, 66, 0.14);
    }

    .ngrsm-session-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 0;
        background: #015fc9;
        transition: height 0.35s ease;
    }

    .ngrsm-session-card:hover::before {
        height: 100%;
    }

.ngrsm-session-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #015fc9;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 30px;
}

.ngrsm-session-card-content h2,
.ngrsm-session-card-content h4 {
    color: var(--ngrsm-dark);
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    font-size: 18px;
}

.ngrsm-session-card-content h2,
.ngrsm-session-card-content h4 a{
    color: var(--ngrsm-dark);
}



.ngrsm-card-arrow {
    position: absolute;
    right: 30px;
    bottom: 25px;
    color: #015fc9;
    font-size: 25px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.35s ease;
}

.ngrsm-session-card:hover .ngrsm-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- National Advisors ---------- */

.ngrsm-advisors-section {
    padding: 0px 0;
    background: linear-gradient( 135deg, var(--ngrsm-dark), var(--ngrsm-primary) );
}
.ngrsm-advisor-list{
    color:white;
}

.ngrsm-light-heading h1,
.ngrsm-light-heading .ngrsm-eyebrow {
    color: #ffffff;
}

.ngrsm-light-heading .ngrsm-section-number {
    color: var(--ngrsm-accent);
}

.ngrsm-advisor-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

    .ngrsm-advisor-card p {
        color: rgba(255, 255, 255, 0.88);
        margin: 0;
        font-size: 18px;
        line-height: 1.8;
    }

.ngrsm-advisor-icon,
.ngrsm-person-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #015fc9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ---------- Event Advisors / Organising ---------- */

.ngrsm-team-section {
    background: #f7fafb;
}

.ngrsm-organising-section {
    background: #ffffff;
}

.ngrsm-person-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 40px 45px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(8, 44, 66, 0.06);
    transition: all 0.3s ease;
    height: 230px;
}

    .ngrsm-person-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 55px rgba(8, 44, 66, 0.1);
    }

    .ngrsm-person-card p {
        margin: 0;
        color: var(--ngrsm-text);
        font-size: 18px;
        line-height: 1.8;
    }

/* ---------- Bottom Banner ---------- */

.ngrsm-bottom-banner {
    padding: 55px 0;
    background: var(--ngrsm-primary);
}

.ngrsm-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .ngrsm-bottom-content span {
        color: var(--ngrsm-accent);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
    }

    .ngrsm-bottom-content h2 {
        color: #ffffff;
        font-size: 42px;
        font-weight: 800;
        margin: 8px 0 0;
    }

.ngrsm-bottom-line {
    width: 180px;
    height: 3px;
    background: var(--ngrsm-accent);
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {

    .ngrsm-hero-image {
        height: 550px;
    }

    .ngrsm-theme-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ngrsm-section {
        padding: 75px 0;
    }

    .ngrsm-about-card {
        padding: 40px;
    }

    .ngrsm-theme-content {
        padding: 35px;
    }

}

@media (max-width: 767px) {

    .ngrsm-hero-image {
        height: 500px;
    }

    .ngrsm-hero-content {
        text-align: center;
    }

    .ngrsm-hero-badge {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .ngrsm-hero-content h1 {
        font-size: 60px;
        letter-spacing: 3px;
    }

    .ngrsm-hero-line {
        margin: 20px auto 0;
    }

    .ngrsm-section {
        padding: 60px 0;
    }

    .ngrsm-section-heading {
        gap: 15px;
        margin-bottom: 7px;
    }

    .ngrsm-section-number {
        display: none;
    }

    .ngrsm-section-heading h1 {
        font-size: 30px;
    }

    .ngrsm-about-card {
        padding: 30px 25px;
    }

    .ngrsm-section p {
        font-size: 16px;
        line-height: 1.8;
    }

    .ngrsm-theme-highlight {
        margin-top: 25px;
    }

    .ngrsm-theme-content {
        padding: 30px 25px;
    }

    .ngrsm-session-card {
        min-height: 200px;
        padding: 30px;
    }

    .ngrsm-advisor-card,
    .ngrsm-person-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }

    .ngrsm-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

        .ngrsm-bottom-content h2 {
            font-size: 34px;
        }

    .ngrsm-bottom-line {
        width: 100px;
    }

}

/* ---------- Small Mobile ---------- */

@media (max-width: 480px) {

    .ngrsm-hero-image {
        height: 430px;
    }

    .ngrsm-hero-content h1 {
        font-size: 48px;
    }

    .ngrsm-about-card {
        padding: 25px 20px;
    }

    .ngrsm-theme-content {
        padding: 25px 20px;
    }

    .ngrsm-session-card {
        padding: 25px;
    }

   
}




/*//session start//*/

/* =========================================================
   ngrsm 2026
   SESSION PAGE - FIXED PROFESSIONAL DESIGN
   ========================================================= */


/* =========================================================
   MAIN VARIABLES
   ========================================================= */

.ngrsm-session-page {
    --ngrsm-navy: #06344f;
    --ngrsm-dark: #062d45;
    --ngrsm-blue: #0874c9;
    --ngrsm-gold: #d8a033;
    --ngrsm-light: #f6f8fa;
    --ngrsm-border: #e4ebef;
    --ngrsm-text: #62727d;
    --ngrsm-white: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ngrsm-dark);
    box-sizing: border-box;
}


    .ngrsm-session-page *,
    .ngrsm-session-page *::before,
    .ngrsm-session-page *::after {
        box-sizing: border-box;
    }


/* =========================================================
   CONTAINER
   IMPORTANT FIX
   ========================================================= */

.ngrsm-session-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
   ========================================================= */

.ngrsm-session-hero {
    position: relative;
    min-height: 216px;
    display: flex;
    align-items: center;
    background: var(--ngrsm-navy);
    overflow: hidden;
}


    .ngrsm-session-hero::after {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        right: -250px;
        top: -350px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 50%;
    }


    .ngrsm-session-hero .ngrsm-session-container {
        position: relative;
        z-index: 2;
    }


.ngrsm-session-breadcrumb {
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}


.ngrsm-session-hero h1 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0;
}


.ngrsm-session-hero-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 30px;
}


/* =========================================================
   MAIN
   ========================================================= */

.ngrsm-session-main {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   TWO COLUMN LAYOUT
   IMPORTANT FIX
   ========================================================= */

.ngrsm-session-layout {
/*    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 55px;
    align-items: start;*/
}


/* =========================================================
   HEADING
   ========================================================= */

.ngrsm-session-heading {
    margin-bottom: 35px;
}


    .ngrsm-session-heading span {
        display: block;
        color: var(--ngrsm-gold);
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }


    .ngrsm-session-heading h2 {
        max-width: 650px;
        color: var(--ngrsm-dark);
        font-size: 30px;
        line-height: 1.25;
        font-weight: 800;
        margin: 0;
        text-transform: capitalize;
    }


/* =========================================================
   SESSION CARDS
   IMPORTANT FIX
   ========================================================= */

.ngrsm-session-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}


.ngrsm-session-card {
    position: relative;
    min-width: 0;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
    overflow: hidden;
    transition: 0.3s ease;
}


    .ngrsm-session-card:hover {
        transform: translateY(-5px);
        border-color: rgba(8,116,201,0.3);
        box-shadow: 0 15px 35px rgba(6,45,69,0.09);
    }


.ngrsm-session-card-number {
    color: #dce7ed;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 5px;
}


.ngrsm-session-card-label {
    color: var(--ngrsm-blue);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-height: 30px;
}


.ngrsm-session-card h3 {
    color: var(--ngrsm-dark);
    font-size: 17px;
    line-height: 1.35;
    margin: 15px 0 0;
    overflow-wrap: break-word;
}


.ngrsm-session-arrow {
    display: block;
/*    margin-top: auto;
    padding-top: 20px;*/
    color: var(--ngrsm-blue);
/*    font-size: 23px;
    line-height: 1;
    text-decoration: none;*/
}


/* =========================================================
   SUB SESSION INFO
   ========================================================= */

.ngrsm-subsession-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 45px;
    padding: 25px;
    border-left: 3px solid var(--ngrsm-gold);
    background: #fafcfd;
}


.ngrsm-subsession-info-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--ngrsm-navy);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}


.ngrsm-subsession-info h3 {
    color: var(--ngrsm-dark);
    font-size: 25px;
    margin: 0 0 8px;
}


.ngrsm-subsession-info p {
    color: var(--ngrsm-text);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   PROPOSAL SECTION
   ========================================================= */

.ngrsm-proposal-section {
    margin-top: 70px;
}


.ngrsm-proposal-heading {
    margin-bottom: 35px;
}


    .ngrsm-proposal-heading span {
        display: block;
        color: var(--ngrsm-gold);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }


    .ngrsm-proposal-heading h2 {
        max-width: 680px;
        color: var(--ngrsm-dark);
        font-size: 28px;
        line-height: 1.3;
        font-weight: 800;
        margin: 0;
    }


/* =========================================================
   PROPOSAL CARDS
   IMPORTANT FIX
   ========================================================= */

.ngrsm-proposal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}


.ngrsm-proposal-card {
    min-width: 0;
    min-height: 260px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
}


.ngrsm-proposal-number {
    color: var(--ngrsm-gold);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
}


.ngrsm-proposal-card h3 {
    color: var(--ngrsm-dark);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 15px;
}


.ngrsm-proposal-card p {
    color: var(--ngrsm-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   CTA
   ========================================================= */

.ngrsm-subsession-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding: 25px;
    background: var(--ngrsm-navy);
}


    .ngrsm-subsession-cta span {
        display: block;
        color: var(--ngrsm-gold);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }


    .ngrsm-subsession-cta h3 {
        color: #ffffff;
        font-size: 21px;
        line-height: 1.3;
        margin: 0;
    }


        .ngrsm-subsession-cta h3 strong {
            color: var(--ngrsm-gold);
        }


    .ngrsm-subsession-cta a {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
        padding: 15px 20px;
        color: #ffffff;
/*        border: 1px solid rgba(255,255,255,0.2);
*/        font-size: 19px;
        font-weight: 700;
        text-decoration: none;
    }


        .ngrsm-subsession-cta a span {
            margin: 0;
            color: var(--ngrsm-gold);
            font-size: 18px;
        }


/* =========================================================
   SIDEBAR
   IMPORTANT FIX
   ========================================================= */

.ngrsm-session-sidebar {
    width: 100%;
}


.ngrsm-sidebar-inner {
    position: sticky;
    top: 30px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
    box-shadow: 0 15px 40px rgba(6,45,69,0.08);
}


.ngrsm-sidebar-label {
    padding: 25px 25px 15px;
    color: var(--ngrsm-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}


.ngrsm-sidebar-links {
    padding: 0 25px;
}


    .ngrsm-sidebar-links a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 17px 0;
        color: var(--ngrsm-dark);
        border-bottom: 1px solid var(--ngrsm-border);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }


        .ngrsm-sidebar-links a:last-child {
            border-bottom: none;
        }


        .ngrsm-sidebar-links a:hover {
            color: var(--ngrsm-blue);
        }


        .ngrsm-sidebar-links a span {
            color: var(--ngrsm-gold);
            font-size: 10px;
            font-weight: 800;
        }


.ngrsm-sidebar-note {
    position: relative;
    margin-top: 10px;
    padding: 25px;
    background: #f4f8fa;
    border-top: 2px solid var(--ngrsm-gold);
}


.ngrsm-sidebar-note-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    top: -13px;
    left: 20px;
    background: var(--ngrsm-gold);
    border-radius: 50%;
}


.ngrsm-sidebar-note h3 {
    color: var(--ngrsm-dark);
    font-size: 17px;
    margin: 0 0 8px;
}


.ngrsm-sidebar-note p {
    color: var(--ngrsm-text);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .ngrsm-session-container {
        /* max-width: 1180px;*/
        max-width: 1500px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .ngrsm-session-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 30px;
    }


    .ngrsm-session-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .ngrsm-proposal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    .ngrsm-session-layout {
        grid-template-columns: 1fr;
    }


    .ngrsm-session-sidebar {
        order: -1;
    }


    .ngrsm-sidebar-inner {
        position: relative;
        top: auto;
    }


    .ngrsm-sidebar-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }


        .ngrsm-sidebar-links a {
            border-bottom: none;
            border: 1px solid var(--ngrsm-border);
            padding: 15px;
        }


    .ngrsm-sidebar-note {
        margin-top: 15px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ngrsm-session-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .ngrsm-session-main {
        padding: 55px 0;
    }


    .ngrsm-session-hero {
        min-height: 300px;
    }


        .ngrsm-session-hero h1 {
            font-size: 40px;
        }


    .ngrsm-session-grid {
        grid-template-columns: 1fr;
    }


    .ngrsm-session-card {
        min-height: 220px;
    }


    .ngrsm-proposal-grid {
        grid-template-columns: 1fr;
    }


    .ngrsm-proposal-card {
        min-height: auto;
    }


    .ngrsm-sidebar-links {
        grid-template-columns: 1fr;
    }


    .ngrsm-subsession-info {
        flex-direction: column;
    }


    .ngrsm-subsession-cta {
        flex-direction: column;
        align-items: flex-start;
    }


        .ngrsm-subsession-cta a {
            width: 100%;
            justify-content: center;
        }
}







/*//sub session start//*/


/* =========================================================
   ngrsm 2026
   CALL FOR SUB-SESSION
   FIXED RESPONSIVE PROFESSIONAL CSS
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

.ngrsm-call-page {
    --ngrsm-navy: #062f4a;
    --ngrsm-blue: #0a6f91;
    --ngrsm-gold: #dca12f;
    --ngrsm-bg: #f5f8fa;
    --ngrsm-border: #dfe7eb;
    --ngrsm-text: #667782;
    --ngrsm-dark: #102f44;
    --ngrsm-white: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ngrsm-dark);
    background: var(--ngrsm-bg);
}


    .ngrsm-call-page *,
    .ngrsm-call-page *::before,
    .ngrsm-call-page *::after {
        box-sizing: border-box;
    }


/* =========================================================
   CONTAINER
   ========================================================= */

.ngrsm-call-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
   ========================================================= */

.ngrsm-call-hero {
    position: relative;
    min-height: 216px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient( 120deg, #062f4a, #0b607b );
}


    .ngrsm-call-hero::before {
        content: "";
        position: absolute;
        width: 560px;
        height: 560px;
        left: -280px;
        top: -80px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50%;
    }


.ngrsm-call-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 80px 0;
}


.ngrsm-call-hero-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 18px;
}


.ngrsm-call-hero h1 {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}


.ngrsm-call-hero-line {
    width: 100%;
    max-width: 850px;
    height: 3px;
    margin: 25px 0 15px;
    background: var(--ngrsm-gold);
}


.ngrsm-call-hero-year {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}


/* =========================================================
   MAIN
   ========================================================= */

.ngrsm-call-main {
    padding: 24px 0 24px;
}



/* =========================================================
   MAIN LAYOUT
   IMPORTANT FIX
   ========================================================= */

.ngrsm-call-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 45px;
    align-items: start;
}


/* =========================================================
   LEFT FORM
   ========================================================= */

.ngrsm-call-form {
    min-width: 0;
    width: 100%;
}


/* =========================================================
   PAGE HEADING
   ========================================================= */

.ngrsm-call-heading {
    margin-bottom: 35px;
}


    .ngrsm-call-heading > span {
        display: block;
        color: var(--ngrsm-gold);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }


    .ngrsm-call-heading h2 {
        color: var(--ngrsm-dark);
        font-size: 34px;
        line-height: 1.2;
        font-weight: 800;
        margin: 0 0 10px;
    }


    .ngrsm-call-heading p {
        color: var(--ngrsm-text);
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }


/* =========================================================
   FORM SECTIONS
   ========================================================= */

.ngrsm-form-section {
    width: 100%;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
}


.ngrsm-form-section-heading {
    padding: 25px 28px;
    border-bottom: 1px solid var(--ngrsm-border);
}


.ngrsm-form-section-heading span {
    display: block;
    color: var(--ngrsm-gold);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}


    .ngrsm-form-section-heading h3 {
        color: var(--ngrsm-dark);
        font-size: 22px;
        line-height: 1.25;
        font-weight: 800;
        margin: 0;
    }


/* =========================================================
   FORM ROW
   ========================================================= */

.ngrsm-form-row {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
}


.ngrsm-form-row label,
.ngrsm-form-field label {
    color: var(--ngrsm-dark);
    font-size: 15px;
    font-weight: 700;
}

    .ngrsm-form-row sup,
    .ngrsm-form-field sup,
    .ngrsm-eligibility sup {
        color: #d62828;
    }


/* =========================================================
   FORM GRID
   ========================================================= */

.ngrsm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 28px;
}


.ngrsm-form-field {
    min-width: 0;
}


    .ngrsm-form-field label {
        display: block;
        margin-bottom: 9px;
        font-size: 18px;
    }


    .ngrsm-form-field input,
    .ngrsm-form-field textarea,
    .ngrsm-form-row select {
        width: 100%;
        min-width: 0;
        padding: 12px 14px;
        color: var(--ngrsm-dark);
        background: #ffffff;
        border: 1px solid #d9e2e7;
        border-radius: 2px;
        font-family: inherit;
        font-size: 12px;
        outline: none;
        transition: 0.2s ease;
    }


    .ngrsm-form-field textarea {
        min-height: 120px;
        resize: vertical;
    }


        .ngrsm-form-field input:focus,
        .ngrsm-form-field textarea:focus,
        .ngrsm-form-row select:focus {
            border-color: var(--ngrsm-blue);
            box-shadow: 0 0 0 3px rgba(10,111,145,0.08);
        }


    .ngrsm-form-field small {
        display: block;
        color: var(--ngrsm-text);
        font-size: 10px;
        line-height: 1.5;
        margin-top: 7px;
    }


.ngrsm-full-width {
    grid-column: 1 / -1;
}


/* =========================================================
   ELIGIBILITY
   ========================================================= */

.ngrsm-eligibility {
    border-top: 1px solid var(--ngrsm-border);
}


    .ngrsm-eligibility > label:first-child {
        display: block;
        padding: 20px 28px 10px;
        color: var(--ngrsm-dark);
        font-size: 12px;
        font-weight: 700;
    }


.ngrsm-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 28px;
    border-top: 1px solid var(--ngrsm-border);
    color: var(--ngrsm-text);
    font-size: 12px;
    cursor: pointer;
}


    .ngrsm-radio-option input {
        width: 15px;
        height: 15px;
        accent-color: var(--ngrsm-blue);
    }


/* =========================================================
   SUBMISSION TABLE
   ========================================================= */

.ngrsm-submission-description {
    color: var(--ngrsm-text);
    font-size: 12px;
    line-height: 1.6;
    padding: 20px 28px;
    margin: 0;
    border-bottom: 1px solid var(--ngrsm-border);
}


.ngrsm-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.ngrsm-submission-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    table-layout: fixed;
}


    .ngrsm-submission-table th,
    .ngrsm-submission-table td {
        border: 1px solid var(--ngrsm-border);
        padding: 10px;
        text-align: left;
        vertical-align: middle;
    }


    .ngrsm-submission-table th {
        color: var(--ngrsm-dark);
        background: #f5f8fa;
        font-size: 13px;
        font-weight: 700;
    }


    .ngrsm-submission-table td {
        color: var(--ngrsm-text);
        font-size: 11px;
    }


        .ngrsm-submission-table th:first-child,
        .ngrsm-submission-table td:first-child {
            width: 45px;
            text-align: center;
        }


    .ngrsm-submission-table th:nth-child(2) {
        width: 17%;
    }


    .ngrsm-submission-table th:nth-child(3) {
        width: 22%;
    }


    .ngrsm-submission-table th:nth-child(4) {
        width: 22%;
    }


    .ngrsm-submission-table th:nth-child(5) {
        width: 30%;
    }


    .ngrsm-submission-table input {
        width: 100%;
        min-width: 0;
        padding: 8px;
        border: 1px solid #e0e7eb;
        font-family: inherit;
        font-size: 13px;
        outline: none;
    }


        .ngrsm-submission-table input:focus {
            border-color: var(--ngrsm-blue);
        }


/* =========================================================
   NOTE
   ========================================================= */

.ngrsm-call-note {
    position: relative;
    padding: 30px;
    background: #fffaf0;
    border-left: 3px solid var(--ngrsm-gold);
}


.ngrsm-call-note-shape {
    width: 80%;
    height: 8px;
    margin-bottom: 20px;
    background: var(--ngrsm-gold);
    border-radius: 50%;
}


.ngrsm-call-note h4 {
    color: var(--ngrsm-dark);
    font-size: 16px;
    margin: 0 0 8px;
}


.ngrsm-call-note p {
    color: var(--ngrsm-text);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.ngrsm-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding: 15px 25px;
    color: #ffffff;
    background: #015fc9;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}


    .ngrsm-submit-button span {
        color: var(--ngrsm-gold);
        font-size: 18px;
    }


    .ngrsm-submit-button:hover {
        background: #0b3d5c;
    }


/* =========================================================
   SIDEBAR
   ========================================================= */

.ngrsm-call-sidebar {
    min-width: 0;
}


.ngrsm-call-sidebar-box {
    position: sticky;
    top: 30px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid var(--ngrsm-border);
    box-shadow: 0 15px 40px rgba(6,47,74,0.08);
}


.ngrsm-sidebar-label {
    display: block;
    color: var(--ngrsm-gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}


.ngrsm-call-sidebar-box h3 {
    color: var(--ngrsm-dark);
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 18px;
}


.ngrsm-sidebar-important {
    display: block;
    padding: 10px 0;
    color: var(--ngrsm-gold);
    border-top: 1px solid var(--ngrsm-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.ngrsm-date-list {
    border-bottom: 1px solid var(--ngrsm-border);
}


    .ngrsm-date-list div {
        padding: 9px 0;
        border-bottom: 1px solid var(--ngrsm-border);
        font-size: 13px;
        line-height: 1.5;
    }


        .ngrsm-date-list div:last-child {
            border-bottom: none;
        }


    .ngrsm-date-list span {
        color: var(--ngrsm-text);
    }


    .ngrsm-date-list strong {
        color: var(--ngrsm-dark);
        font-weight: 700;
    }


.ngrsm-call-sidebar-box p {
    color: var(--ngrsm-text);
    font-size: 13px;
    line-height: 1.65;
    margin: 5px 0 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .ngrsm-call-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 30px;
    }


    .ngrsm-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 780px) {

    .ngrsm-call-layout {
        grid-template-columns: 1fr;
    }


    .ngrsm-call-sidebar {
        order: -1;
    }


    .ngrsm-call-sidebar-box {
        position: relative;
        top: auto;
    }


    .ngrsm-form-grid {
        grid-template-columns: 1fr;
    }


    .ngrsm-full-width {
        grid-column: auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ngrsm-call-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .ngrsm-call-hero {
        min-height: 300px;
    }


    .ngrsm-call-hero-content {
        padding: 60px 0;
    }


    .ngrsm-call-hero h1 {
        font-size: 38px;
    }


    .ngrsm-call-main {
        padding: 24px 0 24px;
    }


    .ngrsm-call-heading h2 {
        font-size: 28px;
    }


    .ngrsm-form-section-heading {
        padding: 22px 20px;
    }


    .ngrsm-form-grid {
        padding: 22px 20px;
    }


    .ngrsm-form-row {
        padding: 20px;
    }


    .ngrsm-submission-description {
        padding: 18px 20px;
    }


    .ngrsm-call-note {
        padding: 25px 20px;
    }


    .ngrsm-submit-button {
        width: 100%;
    }
}






/*//abstract submission start//*/

/* =========================================================
   ngrsm 2026
   ABSTRACT SUBMISSION PAGE
   COMPLETE RESPONSIVE DESIGN
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

.ngrsm-abstract-page {
    --ngrsm-navy: #062f4a;
    --ngrsm-blue: #0b6d88;
    --ngrsm-gold: #dca12f;
    --ngrsm-dark: #102d43;
    --ngrsm-text: #657681;
    --ngrsm-bg: #f4f8fa;
    --ngrsm-border: #dfe7eb;
    --ngrsm-white: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--ngrsm-bg);
    color: var(--ngrsm-dark);
    font-family: Arial, Helvetica, sans-serif;
}


    .ngrsm-abstract-page *,
    .ngrsm-abstract-page *::before,
    .ngrsm-abstract-page *::after {
        box-sizing: border-box;
    }


/* =========================================================
   CONTAINER
   ========================================================= */

.ngrsm-abstract-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
   ========================================================= */

.ngrsm-abstract-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 225px;
    overflow: hidden;
    background: linear-gradient( 120deg, #063653 0%, #0c6c86 100% );
}


    .ngrsm-abstract-hero::before {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        left: -240px;
        top: -75px;
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 50%;
    }


.ngrsm-abstract-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    padding: 60px 0;
}


.ngrsm-abstract-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.50);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


    .ngrsm-abstract-breadcrumb span {
        color: var(--ngrsm-gold);
    }


.ngrsm-abstract-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.1;
    font-weight: 800;
}


.ngrsm-abstract-hero-line {
    width: 100%;
    height: 3px;
    margin: 20px 0 14px;
    background: var(--ngrsm-gold);
}


.ngrsm-abstract-hero p {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
}


/* =========================================================
   MAIN
   ========================================================= */

.ngrsm-abstract-main {
    padding: 55px 0 100px;
}


/* =========================================================
   TWO COLUMN LAYOUT
   FIXES MAIN FORM + SIDEBAR ALIGNMENT
   ========================================================= */

.ngrsm-abstract-layout {
  /*  display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 28px;*/
}


/* =========================================================
   MAIN FORM
   ========================================================= */

.ngrsm-abstract-form {
    min-width: 0;
    background: var(--ngrsm-white);
    border: 1px solid var(--ngrsm-border);
    box-shadow: 0 12px 35px rgba(6,47,74,0.06);
}


/* =========================================================
   FORM HEADER
   ========================================================= */

.ngrsm-form-header {
    padding: 28px 30px 25px;
    border-bottom: 1px solid var(--ngrsm-border);
}


.ngrsm-section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--ngrsm-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}


.ngrsm-form-header h2 {
    margin: 0 0 8px;
    color: var(--ngrsm-dark);
    font-size: 29px;
    line-height: 1.2;
    font-weight: 800;
}


.ngrsm-form-header p {
    margin: 0;
    color: var(--ngrsm-text);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.ngrsm-form-section {
    border-bottom: 1px solid var(--ngrsm-border);
}


.ngrsm-section-heading {
    padding: 0px 25px 10px;
    border-bottom: 1px solid var(--ngrsm-border);
}


    .ngrsm-section-heading h3 {
        margin: 0;
        color: var(--ngrsm-dark);
        font-size: 19px;
        line-height: 1.3;
        font-weight: 800;
    }


/* =========================================================
   FORM GRID
   ========================================================= */

.ngrsm-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 25px;
    padding: 2px 32px;
}


.ngrsm-field {
    min-width: 0;
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}


.ngrsm-field-full {
    grid-column: 1 / -1;
}


.ngrsm-field label {
    color: var(--ngrsm-dark);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}


.ngrsm-field input,
.ngrsm-field textarea {
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--ngrsm-border);
    border-radius: 3px;
    outline: none;
    background: #ffffff;
    color: var(--ngrsm-dark);
    font-family: inherit;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.ngrsm-field input {
    height: 38px;
}


.ngrsm-field textarea {
    min-height: 140px;
    resize: vertical;
}


    .ngrsm-field input::placeholder,
    .ngrsm-field textarea::placeholder {
        color: #a6b4bb;
    }


    .ngrsm-field input:focus,
    .ngrsm-field textarea:focus {
        border-color: var(--ngrsm-blue);
        box-shadow: 0 0 0 3px rgba(11,109,136,0.08);
    }


/* =========================================================
   IMPORTANT NOTE
   ========================================================= */

.ngrsm-important-note {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 30px 25px;
    padding: 14px 18px;
    background: #f1f7f9;
    border-left: 3px solid var(--ngrsm-blue);
}


.ngrsm-note-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ngrsm-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


.ngrsm-important-note strong {
    color: var(--ngrsm-dark);
    font-size: 11px;
}


/* =========================================================
   UPLOAD BOX
   ========================================================= */

.ngrsm-upload-box {
    margin: 25px 30px 30px;
    padding: 0 0 20px;
    background: #f8fafb;
    border: 1px solid var(--ngrsm-border);
}


.ngrsm-upload-icon {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ngrsm-blue);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}


.ngrsm-upload-box > label {
    display: block;
    margin: 18px 18px 7px;
    color: var(--ngrsm-dark);
    font-size: 15px;
    font-weight: 800;
}


.ngrsm-upload-box > p {
    margin: 0 18px 15px;
    color: var(--ngrsm-text);
    font-size: 14px;
    line-height: 1.5;
}


.ngrsm-upload-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 18px;
    padding: 10px 12px;
    border: 1px dashed #cbd8de;
    background: #ffffff;
}


    .ngrsm-upload-row span {
        color: var(--ngrsm-blue);
        font-size: 13px;
        font-weight: 700;
    }


    .ngrsm-upload-row small {
        color: var(--ngrsm-text);
        font-size: 13px;
    }


    .ngrsm-upload-row input[type="file"] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }


/* =========================================================
   ABSTRACT WORD LIMIT
   ========================================================= */

.ngrsm-word-limit {
    display: block;
    margin-top: 6px;
    text-align: right;
    color: #9baab1;
    font-size: 12px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.ngrsm-abstract-sidebar {
    min-width: 0;
}


.ngrsm-sidebar-card {
    position: sticky;
    top: 20px;
    overflow: hidden;
    background: var(--ngrsm-white);
    border: 1px solid var(--ngrsm-border);
    box-shadow: 0 12px 35px rgba(6,47,74,0.07);
    margin-top: 10px;
}


    .ngrsm-sidebar-card > .ngrsm-section-label {
        padding: 20px 20px 0;
    }


    .ngrsm-sidebar-card h3 {
        margin: 0;
        padding: 0 20px 18px;
        color: var(--ngrsm-dark);
        font-size: 21px;
        line-height: 1.25;
        font-weight: 800;
    }


/* =========================================================
   COMING SOON
   ========================================================= */

.ngrsm-coming-soon {
    padding: 20px;
    background: #f3f8fa;
    border-top: 1px solid var(--ngrsm-border);
    border-bottom: 1px solid var(--ngrsm-border);
}


    .ngrsm-coming-soon span {
        width: 100%;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        border-radius: 50%;
        background: var(--ngrsm-gold);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
    }


    .ngrsm-coming-soon strong {
        display: block;
        margin-bottom: 5px;
        color: var(--ngrsm-dark);
        font-size: 15px;
    }


    .ngrsm-coming-soon p {
        margin: 0;
        color: var(--ngrsm-text);
        font-size: 13px;
        line-height: 1.5;
    }


/* =========================================================
   SIDEBAR TITLE
   ========================================================= */

.ngrsm-sidebar-title {
    padding: 15px 20px;
    border-bottom: 2px solid var(--ngrsm-gold);
    color: var(--ngrsm-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================================================
   SIDEBAR LIST
   ========================================================= */

.ngrsm-sidebar-item {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid var(--ngrsm-border);
}


    .ngrsm-sidebar-item span {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        background: #eef6f8;
        color: var(--ngrsm-blue);
        font-size: 13px;
        font-weight: 800;
    }


    .ngrsm-sidebar-item p {
        margin: 0;
        padding: 10px 12px;
        color: var(--ngrsm-text);
        font-size: 13px;
        line-height: 1.4;
    }


/* =========================================================
   IMPORTANT SIDEBAR
   ========================================================= */

.ngrsm-sidebar-important {
    padding: 18px 20px;
    background: #fff8e9;
    border-top: 2px solid #d8a033 !important;
    color: black;
    margin-top: 20px;
}


    .ngrsm-sidebar-important strong {
        display: block;
        margin-bottom: 8px;
        color: var(--ngrsm-dark);
        font-size: 12px;
    }


    .ngrsm-sidebar-important p {
        margin: 5px 0;
        color: var(--ngrsm-text);
        font-size: 12px;
        line-height: 1.5;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .ngrsm-abstract-layout {
        grid-template-columns: minmax(0, 1fr);
    }


    .ngrsm-abstract-sidebar {
        order: -1;
    }


    .ngrsm-sidebar-card {
        position: relative;
        top: auto;
    }


    .ngrsm-sidebar-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .ngrsm-abstract-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .ngrsm-abstract-hero {
        min-height: 280px;
    }


    .ngrsm-abstract-hero-content {
        padding: 45px 0;
    }


    .ngrsm-abstract-hero h1 {
        font-size: 38px;
    }


    .ngrsm-abstract-main {
        padding: 35px 0 70px;
    }


    .ngrsm-form-header,
    .ngrsm-section-heading {
        padding-left: 20px;
        padding-right: 20px;
    }


    .ngrsm-form-fields {
        grid-template-columns: 1fr;
        padding: 20px;
    }


    .ngrsm-field {
        grid-template-columns: 1fr;
        gap: 7px;
    }


    .ngrsm-field-full {
        grid-column: auto;
    }


    .ngrsm-important-note {
        margin-left: 20px;
        margin-right: 20px;
    }


    .ngrsm-upload-box {
        margin-left: 20px;
        margin-right: 20px;
    }


    .ngrsm-sidebar-list {
        grid-template-columns: 1fr;
    }


    .ngrsm-upload-row {
        flex-wrap: wrap;
    }
}






/*//contact start//*/



/* =========================================================
    ngrsm 2026
    CONTACT US PAGE
    PROFESSIONAL RESPONSIVE DESIGN
    ========================================================= */


/* =========================================================
    MAIN WRAPPER
    ========================================================= */

.ngrsm-contact-page {
    --contact-navy: #062f4a;
    --contact-blue: #086b89;
    --contact-gold: #dca12f;
    --contact-bg: #f4f8fa;
    --contact-dark: #102f44;
    --contact-text: #667782;
    --contact-border: #dfe7eb;
    --contact-white: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--contact-bg);
    color: var(--contact-dark);
    font-family: Arial, Helvetica, sans-serif;
}


    .ngrsm-contact-page *,
    .ngrsm-contact-page *::before,
    .ngrsm-contact-page *::after {
        box-sizing: border-box;
    }


/* =========================================================
    CONTAINER
    ========================================================= */

.ngrsm-contact-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
    HERO
    ========================================================= */

.ngrsm-contact-hero {
    position: relative;
    min-height: 237px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient( 120deg, #063653 0%, #0b6985 100% );
}


    /* Decorative circle */

    .ngrsm-contact-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        left: -250px;
        top: -75px;
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 50%;
    }


.ngrsm-contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding-top: 60px;
    padding-bottom: 60px;
}


.ngrsm-contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


    .ngrsm-contact-breadcrumb span {
        color: var(--contact-gold);
    }


.ngrsm-contact-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
}


.ngrsm-contact-hero-line {
    width: 100%;
    height: 3px;
    margin-top: 25px;
    margin-bottom: 15px;
    background: var(--contact-gold);
}


.ngrsm-contact-hero p {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
}


/* =========================================================
    MAIN
    ========================================================= */

.ngrsm-contact-main {
    padding-top: 65px;
    padding-bottom: 100px;
}


/* =========================================================
    INTRO
    ========================================================= */

.ngrsm-contact-intro {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}


.ngrsm-contact-label {
    display: block;
    margin-bottom: 10px;
    color: var(--contact-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}


.ngrsm-contact-intro h2 {
    margin: 0 0 10px;
    color: var(--contact-dark);
    font-size: 34px;
    font-weight: 800;
}


.ngrsm-contact-intro > p {
    margin: 0;
    color: var(--contact-text);
    font-size: 13px;
}


.ngrsm-contact-gold-line {
    width: 100%;
    height: 2px;
    margin: 25px auto;
    background: var(--contact-gold);
}


.ngrsm-contact-call-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


    .ngrsm-contact-call-info strong {
        color: var(--contact-dark);
        font-size: 13px;
    }


    .ngrsm-contact-call-info span {
        display: block;
        padding: 12px 20px;
        background: #e6f0f4;
        color: var(--contact-blue);
        font-size: 15px;
        font-weight: 700;
    }


/* =========================================================
    CONTACT GRID
    FIXES UNEVEN LAYOUT
    ========================================================= */

.ngrsm-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
}


/* =========================================================
    CONTACT CARD
    ========================================================= */

.ngrsm-contact-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--contact-white);
    border: 1px solid var(--contact-border);
    box-shadow: 0 12px 35px rgba(6,47,74,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


    .ngrsm-contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(6,47,74,0.11);
    }


/* Number */

.ngrsm-contact-card-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #e5edf1;
    font-size: 18px;
    font-weight: 800;
}


.ngrsm-contact-card-content {
    padding: 30px;
}


/* Small heading */

.ngrsm-card-label {
    display: block;
    margin-bottom: 10px;
    color: var(--contact-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.ngrsm-contact-card h3 {
    min-height: 25px;
    margin: 0 0 22px;
    color: var(--contact-dark);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}


/* =========================================================
    CONTACT ICON
    IMPORTANT:
    NO STRETCHED OVAL
    ========================================================= */

.ngrsm-contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: var(--contact-blue);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}


/* Phone */

.ngrsm-contact-card-content > a:not(.ngrsm-call-link) {
    display: block;
    margin-bottom: 18px;
    color: var(--contact-blue);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}


/* Call link */

.ngrsm-call-link {
    display: inline-block;
    padding-top: 15px;
    border-top: 1px solid var(--contact-border);
    color: var(--contact-text);
    font-size: 14px;
    text-decoration: none;
}


    .ngrsm-call-link:hover {
        color: var(--contact-blue);
    }


/* =========================================================
    EMAIL & HOURS BOXES
    ========================================================= */

.ngrsm-contact-info-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-top: 25px;
    background: var(--contact-white);
    border: 1px solid var(--contact-border);
    box-shadow: 0 12px 35px rgba(6,47,74,0.05);
}


/* Icon */

.ngrsm-info-icon {
    flex: 0 0 100px;
    min-height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}


/* Email gold */

.ngrsm-email-box .ngrsm-info-icon {
    background: var(--contact-gold);
}


/* Hours blue */

.ngrsm-hours-box .ngrsm-info-icon {
    background: var(--contact-blue);
}


.ngrsm-info-content {
    flex: 1;
    min-width: 0;
    padding: 25px 30px;
}


    .ngrsm-info-content h3 {
        margin: 0 0 10px;
        color: var(--contact-dark);
        font-size: 18px;
        line-height: 1.4;
    }


    .ngrsm-info-content a {
        display: block;
        margin-bottom: 10px;
        color: var(--contact-blue);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }


.ngrsm-info-link {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--contact-text) !important;
}


/* =========================================================
    RESPONSIVE - TABLET
    ========================================================= */

@media (max-width: 850px) {

    .ngrsm-contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
    RESPONSIVE - MOBILE
    ========================================================= */

@media (max-width: 600px) {

    .ngrsm-contact-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .ngrsm-contact-hero {
        min-height: 300px;
    }


    .ngrsm-contact-hero-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .ngrsm-contact-hero h1 {
        font-size: 40px;
    }


    .ngrsm-contact-main {
        padding-top: 45px;
        padding-bottom: 70px;
    }


    .ngrsm-contact-intro h2 {
        font-size: 28px;
    }


    .ngrsm-contact-card-content {
        padding: 25px;
    }


    .ngrsm-contact-info-box {
        flex-direction: column;
    }


    .ngrsm-info-icon {
        flex: none;
        min-height: 70px;
    }


    .ngrsm-info-content {
        padding: 22px;
    }
}

/*color individual*/
.bg-greendark {
    background-color: #06344f;
}

@media (min-width: 320px) and (max-width: 767px) {
    .ngrsm-section-heading h3 {
        font-size: 13px;
    }
    .ngrsm-form-header h2 {
        font-size: 20px;
    }
}








/************************************************************************************************************************************/


/* ===========================================================
   GGRSM REGISTRATION PAGE
=========================================================== */


/* ===========================================================
   PAGE
=========================================================== */


.ggrsm-registration-page {
    width: 100%;
}


.ggrsm-container {
    width: 1500px;
    margin: auto;
}


/* ===========================================================
   HEADER
=========================================================== */

.ggrsm-page-header {
    background: #fff;
    border-radius: 12px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 35px;
}


.ggrsm-page-tag {
    display: inline-block;
    background: #e8f2f8;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}


.ggrsm-page-header h1 {
    margin: 18px 0 10px;
    color: var(--dark);
    font-size: 40px;
    font-weight: 700;
}


.ggrsm-page-header p {
    margin: 0;
    color: #6d7986;
    font-size: 15px;
}


/* ===========================================================
   CARD
=========================================================== */

.ggrsm-card {
    background: #f1f1f1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 35px;
}


.ggrsm-card-header {
    background: linear-gradient(90deg,#06344f,#06344f);
    color: #fff;
    padding: 22px 35px;
}


    .ggrsm-card-header span {
        display: block;
        font-size: 12px;
        letter-spacing: 2px;
        opacity: .8;
    }


    .ggrsm-card-header h2 {
        margin: 6px 0 0;
        font-size: 28px;
        color: white;
        text-align:center;
    }


/* ===========================================================
   FORM GRID
=========================================================== */

.ggrsm-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    padding: 40px;
}

/* ===========================================================
   FORM GROUP
=========================================================== */

.ggrsm-form-group {
    display: flex;
    flex-direction: column;
}


    .ggrsm-form-group label {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 10px;
        margin-left: 18px;
    }


        .ggrsm-form-group label span {
            color: #d32f2f;
        }


    .ggrsm-form-group input,
    .ggrsm-form-group select,
    .ggrsm-form-group textarea {
        width: 100%;
        height: 52px;
        padding: 0 18px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
        color: #444;
        font-size: 15px;
        transition: .30s;
        box-sizing: border-box;
        outline: none;
    }


    .ggrsm-form-group textarea {
        height: 140px;
        resize: vertical;
        padding: 15px 18px;
    }


        .ggrsm-form-group input::placeholder,
        .ggrsm-form-group textarea::placeholder {
            color: #9aa5b1;
        }


        .ggrsm-form-group input:focus,
        .ggrsm-form-group select:focus,
        .ggrsm-form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(11,92,120,.10);
        }


    .ggrsm-form-group select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        padding-right: 50px;
    }


.full-width {
    grid-column: 1 / -1;
}


/* ===========================================================
   RADIO CARD SECTION
=========================================================== */

.ggrsm-radio-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    padding: 35px;
}


.radio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 10px;
    height: 75px;
    cursor: pointer;
    transition: .30s;
}


    .radio-card:hover {
        border-color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }


    .radio-card input {
        width: 18px;
        height: 18px;
        accent-color: var(--primary);
        cursor: pointer;
    }


    .radio-card span {
        font-size: 15px;
        font-weight: 600;
        color: var(--dark);
    }


/* ===========================================================
   SECTION SPACING
=========================================================== */

.ggrsm-card .ggrsm-form-grid {
    padding-top: 30px;
}

.ggrsm-card:last-child {
    margin-bottom: 0;
}

/* ===========================================================
   UPLOAD SECTION
=========================================================== */

.ggrsm-upload-box {
    padding: 40px;
}


.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 180px;
    border: 2px dashed #b7c8d8;
    border-radius: 12px;
    background: #f9fcfe;
    cursor: pointer;
    transition: .35s;
}

    .upload-label:hover {
        border-color: var(--primary);
        background: #eef7fb;
    }

    .upload-label input {
        display: none;
    }

    .upload-label span {
        color: var(--primary);
        font-size: 18px;
        font-weight: 600;
    }

.ggrsm-upload-box small {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #6d7882;
    font-size: 14px;
}


/* ===========================================================
   DECLARATION
=========================================================== */

.ggrsm-declaration {
    padding: 35px 40px;
}

    .ggrsm-declaration label {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        cursor: pointer;
    }

    .ggrsm-declaration input {
        width: 20px;
        height: 20px;
        accent-color: var(--primary);
        margin-top: 2px;
    }

    .ggrsm-declaration span {
        font-size: 16px;
        line-height: 1.7;
        color: var(--dark);
    }


/* ===========================================================
   SUBMIT BUTTON
=========================================================== */

.ggrsm-submit-area {
    text-align: center;
    margin: 50px 0;
}

.ggrsm-register-btn {
    min-width: 320px;
    height: 60px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg,#0b5c78,#0b3d5c);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(11,92,120,.25);
}

    .ggrsm-register-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(11,92,120,.35);
    }


/* ===========================================================
   SUCCESS POPUP
=========================================================== */

.ggrsm-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.55);
    z-index: 9999;
}

.ggrsm-popup-content {
    width: 460px;
    background: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 45px;
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
    animation: popup .35s ease;
}

.popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #24b36b;
    color: #fff;
    font-size: 42px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ggrsm-popup-content h2 {
    margin: 0;
    color: var(--dark);
}

.ggrsm-popup-content p {
    color: #666;
    margin: 15px 0;
}

.ggrsm-popup-content h3 {
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.ggrsm-popup-content button {
    border: none;
    background: var(--primary);
    color: #fff;
    width: 180px;
    height: 48px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

    .ggrsm-popup-content button:hover {
        background: #08475c;
    }


/* ===========================================================
   ANIMATION
=========================================================== */

@keyframes popup {

    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ===========================================================
   RESPONSIVE
=========================================================== */

@media(max-width:1600px) {

    .ggrsm-container {
        width: 95%;
    }
}

@media(max-width:992px) {

    .ggrsm-form-grid {
        grid-template-columns: 1fr;
    }

    .ggrsm-radio-grid {
        grid-template-columns: 1fr;
    }

    .ggrsm-page-header h1 {
        font-size: 32px;
    }
}

@media(max-width:768px) {

    body {
        padding: 20px 10px;
    }

    .ggrsm-page-header {
        padding: 30px 20px;
    }

    .ggrsm-card-header {
        padding: 18px 20px;
    }

    .ggrsm-form-grid {
        padding: 20px;
        gap: 20px;
    }

    .ggrsm-radio-grid {
        padding: 20px;
    }

    .ggrsm-upload-box {
        padding: 20px;
    }

    .ggrsm-register-btn {
        width: 100%;
        min-width: 100%;
    }

    .ggrsm-popup-content {
        width: 90%;
        padding: 30px;
    }
}


.bg-dark {
    background-color: #0B3D5C !important;
}


.ngrsm-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    color: var(--ngrsm-dark);
    border: 1px solid #d9e2e7;
    border-radius: 2px;
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition: 0.2s ease;
    background-color:white;
}

.ngrsm-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #015fc9, #0b3d5c);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .35s ease;
    box-shadow: 0 0px 0px rgb(1, 95, 201);
}



.ngrsm-pdf-btn:hover {
    background: linear-gradient(135deg, #0b3d5c, #0b3d5c);
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

.ngrsm-pdf-btn:active {
    transform: scale(.97);
}

.ngrsm-pdf-btn::before {
    content: "📄";
    font-size: 18px;
}

.header-logo {
        height: auto;
        width: 90px;
        margin-left: 109px;
}