:root {
    /* color codes */
    --primary-color: #2A2E6D;
    --secondary-color: #8E8E8E;
    --white-color: #fff;
    --black-color: #000000;

    /* Padding & margin */
    --p-20: 20px;
    --m-20: 20px;
    --p-10: 10px;
    --m-10: 10px;
    --g-10: 10px;
    --g-20: 20px;

    /* Dark mode variables */
    --dark-bg-primary: #1a1a1a;
    --dark-bg-secondary: #2d2d2d;
    --dark-bg-tertiary: #3d3d3d;
    --dark-text-primary: #ffffff;
    --dark-text-secondary: #e0e0e0;
    --dark-text-muted: #b0b0b0;
    --dark-border: #404040;
    --dark-shadow: rgba(0, 0, 0, 0.5);
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --dark-accent: #4a90e2;
    --dark-accent-hover: #357abd;
    --dark-danger: #e74c3c;
    --dark-success: #27ae60;
    --dark-warning: #f39c12;
}

/* Dark mode class */
.dark-mode {
    background-color: var(--dark-bg-primary);
    color: var(--dark-text-primary);
}

.dark-mode * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
    font-size: 16px;
}
body {
    font-size: 1rem;
    font-weight: normal;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
p  { font-size: 1rem; }

/* scroll site css */
body::-webkit-scrollbar-thumb {
    background-color: #2a3158;
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #2c3e70;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px transparent;
    border-radius: 8px;
    background-color: transparent;
}

body::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #2c3e70;
    border: 1px solid transparent;
    border-radius: 30px;
}

*::-webkit-scrollbar-thumb {
    background-color: #2a3158;
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #2c3e70;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px transparent;
    border-radius: 8px;
    background-color: transparent;
}

*::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #d0bb68;
    border: 1px solid transparent;
    border-radius: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* scroll site css */

body {
    max-width: 100%;
    margin: 0 auto;
    background-color: #F5F5F7;
    /* padding: 20px; */
}

/* Dark mode body styles */
.dark-mode body {
    background-color: var(--dark-bg-primary);
    color: var(--dark-text-primary);
}

/* colors ends */

/* container */

.container {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 160px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

a {
    cursor: pointer;
}
#mobile-quick{
    display: none;
}
.desktop-none{
    display: none;
}
@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 540px;
        margin: auto;
    }
    .sthohnsmenu-inner a{
        padding:  12px 10px !important;
            justify-content: flex-start !important;
    }
    .sthohns-menubar{
       top:0px !important;
    }
    .sthohnsmenu-item.single-item{
        justify-content: flex-start !important;
    }
    .sthohns-logo{
        margin-top: 0px !important;
    }
    .dropdown-header{
        display: none !important;
    }
    .aboutus-absolute {
    position: relative !important;
    padding: 0px !important;
    background-color: transparent !important;
}
.about-dropdown-card{
    width: auto !important;
        display: grid !important;
        background-color:transparent !important;
}
.active-link{
    background-color: transparent !important;
}
.aboutus-absolute{
    border:none !important;
    box-shadow: none !important;
}
.desktop-none{
    display: block;
}
.mobile-none{
    display: none;
}
.droplist-sub {
    margin: 30px !important;
    border-left: none !important;
    margin-top: 0px !important;
    height:auto !important;
}
.contact-section .intro-text{
    width: 100% !important;
}
.contact-section h2,.stjohns-corporate-home-awards-container h2,
#news-events .news-common h3,.well-being-header h3{
    font-size: 30px !important;
}
.form-group input[type="tel"] {
  margin-top: 0;
}
 .contact-content {
    flex-direction: column-reverse; /* Reverse order on mobile */
  }
  .sthohnsmenu-list-text-new {
            display: flex;
        font-size: 14px !important;
        justify-content: center;
        align-items: center;
        gap: 3px;
}
.sthohnsmenu-list-item{
    gap: 0 !important;
}
    .top-header {
        gap: 0 !important;
    }
    /* .partner-dropdown-wrapper{
        display: none !important;
    } */
    .gg-search{
            margin-left: 30px !important;
    margin-top: -4px !important;
    }
    .mobile-search-wrapper {
         right: -25px !important;
}
.footer-top {
    padding: 30px 15px;
}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        width: calc(100% - 60px);
    }
      #common-blue-banner .our-story-section {
    padding: 24px 78px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .container {
        width: calc(100% - 4em);
    }
}

.navbar {
    height: 90px;
}

.burger {
    display: none;
}

/* sthohns chevron down icon css */
.sthohns-chevron-dropdown {
    box-sizing: border-box;
    position: relative;
    display: block;
    visibility: hidden;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
}

.sthohns-chevron-dropdown::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px;
}

/* sthohns chevron down icon css */
/* sthohns Search icon css */
.header-container {
    background: #fff;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Dark mode header styles */
.dark-mode .header-container {
    background: var(--dark-bg-secondary);
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    margin: 0 auto;
    padding: 0 0 0 1em;
    border: none;
    outline: 0;
    background:#f9f9f9;
    opacity: 1;
    z-index: 30;
}

/* Dark mode navbar styles */
.dark-mode .navbar {
    background: var(--dark-bg-secondary);
    border-bottom: 1px solid var(--dark-border);
}

.header-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    z-index: 20;
}

.navbar .sthohnsmenu-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.sthohnsmenu-inner a {
    font-size: 20px;
    font-weight: 500;
    padding: 40px 12px;
    text-decoration: none;
        display: flex;
    align-items: center;
    justify-content: center;
}

.sthohns-logo {
      width: 380px;
    height: 166px;
    object-fit: contain;
    object-position: center;
    max-width: 300px;
    margin-top: -65px;
}
/* .sthohns-logo {
    width: 400px;
    top: -35px;
    height: 114px;
    position: absolute;
    object-fit: contain;
    object-position: center;
    max-width: 300px;
} */
.sthohnsmenu-item {
    position: relative;
    display: flex;
    gap: 15px;
      justify-content: center;
    align-items: center;
}

.sthohnsmenu-list-item a {
    width: fit-content;
    padding-inline: 10px 10px;
}

.sthohnsmenu-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.sthohnsmenu-item.accordian-main .sthohnsmenu-list-item {
    padding-block: 10px;
}

.service-inner.dropdown2 .sthohnsmenu-list-item {
    padding-block: 0px;
}

.service-inner.dropdown2 .sthohnsmenu-list-item {
    padding-block: 0px;
}

.service-inner.dropdown2 .sthohnsmenu-list-item:hover .sthohnsmenu-dropdown-links,
.service-inner.dropdown2 .sthohnsmenu-list-item:hover {
    background: #f5f5f5;
}

.sthohnsmenu-item:hover .sthohnsmenu-list-text {
    transition: all 0.3s ease;
}

.sthohnsmenu-item:hover .sthohns-chevron-dropdown {
    transform: rotate(180deg);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.sthohnsmenu-dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0%);
    z-index: 10;
}

/* Dark mode dropdown styles */
.dark-mode .sthohnsmenu-dropdown {
    background-color: var(--dark-bg-secondary);
    box-shadow: 0 2px 4px var(--dark-shadow);
    border: 1px solid var(--dark-border);
}

.sthohnsmenu-item:hover .sthohnsmenu-dropdown {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
    width: max-content;
    border-radius: 6px;
}

.sthohnsmenu-dropdown-links {
    font-size: 16px;
    background: #fff;
    color: #000;
    padding-inline: 10px 20px;
    padding-block: 8px;
    line-height: 25px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
    border-radius: 0px;
    border-bottom: 1px solid #D0BB68;
}

/* Dark mode dropdown links styles */
.dark-mode .sthohnsmenu-dropdown-links {
    background: var(--dark-bg-secondary);
    color: var(--dark-text-primary);
    border-bottom: 1px solid var(--dark-border);
}

.dark-mode .sthohnsmenu-dropdown-links:hover {
    background: var(--dark-bg-tertiary);
}

.sthohnsmenu-dropdown-links:last-child {
  border-bottom: none;
}

.sthohnsmenu-dropdown-links:hover {
    background: #ECEEFF;
}

.sthohnsmenu-list-text {
    color: #000;
    font-size: 16px;
    position: relative;
    margin: 0 !important;
}

/* Dark mode menu text styles */
.dark-mode .sthohnsmenu-list-text {
    color: var(--dark-text-primary);
}

.active-link {
    /* border-bottom: 2px solid #000; */
    /* Highlight color */
    /* padding-bottom: 22px; */
    background-color: #E4EFFF;
    transition: border-bottom 0.3s ease-in-out;
}

/* Dark mode active link styles */
.dark-mode .active-link {
    background-color: var(--dark-accent);
    color: var(--dark-text-primary);
}

.active-link svg{
     transform: rotate(180deg);
}

#services_dropdown {
    width: 240px;
}

#aboutus_dropdown {
    width: 180px;
}

#insights_dropdown {
    width: 160px;
}

#careers_dropdown {
    width: 210px;
}

.sthohnsmenu-list-text.contactWithUs {
    background: #d0bb6800;
    color: #000;
    border: solid 1px #000;
    padding: 8px 30px;
    font-size: 14px;
    margin: 0 4px;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
}
.sthohnsmenu-list-text.contactWithUs:hover {
    background: #fff;
    color: #000;
    border: solid 1px #fff;
}
/* quick */
/* Your existing style */
    .sthohnsmenu-list-text.partner-with-us {
        border-right: 1px solid transparent;
      background: linear-gradient(to right, #D0BB68 98%, #FFFFFF 100%);
      color: #000000;
      padding: 8px 10px;
      font-size: 18px;
      margin: auto;
      border-right:none !important;
      border: 1px solid #23559B;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border-top-left-radius: 30px;
      border-bottom-left-radius: 30px;
      transition: all 0.3s ease;
      cursor: pointer;
      width: fit-content;
    }
    .partner-dropdown-wrapper {
      position: relative;
      display: inline-block;
    }

 .partner-dropdown {
    /* display: none; */
    height: 100%;
    /* overflow-y: auto; */
    position: relative;
    top: 0;
    right: 0;
    background: #fff;
    padding: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fffae8;
}

    .partner-dropdown.show {
      display: block;
    }

    .partner-dropdown h4 {
      margin: 0 0 0px;
      text-transform: uppercase;
      padding: 15px 30px;
      font-size: 18px;
      font-weight: bold;
      background-color:#FFF3C2;
      color: #000000;
    }
    .pad-a{
        padding: 0px 30px;
    }
    .partner-dropdown a {
      display: block;
      font-size: 18px;
      color: #000000;
      background-color: #FFFAE8;
      padding: 15px 0px;
      border-bottom: 1px solid #d0bb68;
      text-decoration: none;
    }
    .login-stjohns{
         display: inline-block !important;
      font-size: 18px;
      text-align: center;
      margin: 30px 0;
      background-color: #2a2e6d !important;
      color: #fff !important;
      padding: 10px 20px !important;
          border-radius: 30px;
      position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
    .partner-dropdown a:hover {
      background-color: #f0f0f0;
    }

    .partner-dropdown-wrapper svg {
        width: 25px;
       height: 25px;
      fill: #000000;
      margin-left: 6px;
    }
    
    /* quick */
.learninghub-sub {
    display: none;
}

/* burger menu css */
.navbar .burger {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: 0;
    opacity: 0;
    visibility: hidden;
    background: 0 0;
    transform: rotate(0);
    transition: 0.35s ease-in-out;
}

.navbar .burger-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    border: none;
    outline: 0;
    opacity: 1;
    border-radius: 0.25rem;
    background: #2A2E6D;
    transform: rotate(0);
    transition: 0.25s ease-in-out;
}

.navbar .burger-line:nth-child(1) {
    top: 0;
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
    top: 0.5rem;
}

.navbar .burger-line:nth-child(4) {
    top: 1rem;
}

.navbar .burger.is-active .burger-line:nth-child(1),
.navbar .burger.is-active .burger-line:nth-child(4) {
    top: 1.25rem;
    width: 0%;
    left: 50%;
}

.navbar .burger.is-active .burger-line:nth-child(2) {
    transform: rotate(45deg);
}

.navbar .burger.is-active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
}

.-hidden {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: top 0.3s;
    position: fixed !important;
}

.navbar-fixed-top {
    position: fixed !important;
    height: 70px;
    top: 0;
    width: 100%;
    position: fixed;
    background: #ffffff;
    z-index: 9999;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
    box-shadow: 0 0 10px #ccc;
}

/* burger menu css */

@media only screen and (min-width: 1200px) and (max-width: 1350px) {}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .navbar .sthohnsmenu-inner {
        gap: 15px;
    }

    .sthohnsmenu-list-text {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 0 15px 2em;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .navbar .sthohnsmenu-inner {
        gap: 10px;
    }

    .sthohnsmenu-list-text {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 2em;
    }

}



@media only screen and (min-width: 1100px) and (max-width: 1300px) {
    .navbar .sthohnsmenu-inner {
        gap: 20px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .navbar {
        padding: 15px 2em;
    }

    .header-main {
        flex-wrap: wrap;
        transition: 0.5s ease all;
    }

    .navbar-fixed-top {
        height: auto;
    }

    .navbar .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .navbar .sthohns-menubar {
        width: 100%;
        max-height: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        position: relative;
        z-index: 20;
    }

    .navbar .sthohns-menubar.is-active {
        opacity: 1;
        display: block;
        max-height: auto;
        height: auto;
        visibility: visible;
        transition: all 0.35s ease;
    }

    .sthohnsmenu-dropdown {
        left: 40px;
        z-index: 10;
    }
}

@media only screen and (max-width: 768px) {
    .navbar {
        padding: 15px 2em;
    }

    .header-main {
        flex-wrap: wrap;
        transition: 0.5s ease all;
    }

    .navbar-fixed-top {
        height: auto;
    }

    .navbar .sthohns-menubar {
        width: 100%;
        max-height: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        position: relative;
        z-index: 20;
    }

    .navbar .sthohns-menubar.is-active {
        opacity: 1;
        display: block;
        max-height: auto;
        height: auto;
        visibility: visible;
        transition: all 0.35s ease;
    }

    .sthohnsmenu-dropdown {
        left: 40px;
        z-index: 10;
    }
    #mobile-quick{
        display: block;
    }
    .sthohnsmenu-item {
        padding-inline: 8px !important;
    }
    .top-header {
        padding: 0 0px 0px 30px !important;
    }
    .sthohnsmenu-item {
        padding-inline: 0px !important;
    }
     /* quickmobile */
 #mobile-quick .partner-with-us {
      background: #D0BB68;
      color: #000000;
      padding: 14px 10px;
      font-size: 18px;
      margin: auto;
      border: 1px solid #23559B;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
      transition: all 0.3s ease;
      cursor: pointer;
      width: fit-content;
    }
    #mobile-quick .partner-dropdown-wrapper {
      position: relative;
      display: inline-block;
    }

    #mobile-quick .partner-dropdown {
        display: none;
            height: 85vh;
    overflow-y: scroll;
    position: absolute;
    top: 110%;
    left: 54px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    padding: 0;
    z-index: 1000;
    min-width: 360px;
    background-color: #FFFAE8;
    transition: left 0.6s ease-in-out; 
    }

    #mobile-quick .partner-dropdown.show {
      display: block;
      top:48px !important;
     height: 100vh;
       left: calc(100% - 360px); /* 👈 slide into view */
       transition: left 0.6s ease-in-out; 
    }

    #mobile-quick .partner-dropdown h4 {
      margin: 0 0 0px;
      text-transform: uppercase;
      padding: 15px 30px;
      font-size: 18px;
      font-weight: bold;
      background-color:#FFF3C2;
      color: #000000;
    }
    #mobile-quick .pad-a{
        padding: 0px 30px;
    }
    #mobile-quick .partner-dropdown a {
        width: 100%;
      display: block;
      font-size: 18px;
      color: #000000;
      background-color: #FFFAE8;
      padding: 15px 0px;
      border-bottom: 1px solid #d0bb68;
      text-decoration: none;
    }
    #mobile-quick .login-stjohns{
         display: inline-block !important;
      font-size: 18px;
      text-align: center;
      margin: 30px 0;
      background-color: #2a2e6d !important;
      color: #fff !important;
      padding: 10px 20px !important;
          border-radius: 30px;
      position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
    #mobile-quick .partner-dropdown a:hover {
      background-color: #f0f0f0;
    }

    #mobile-quick .partner-dropdown-wrapper svg {
        width: 25px;
       height: 25px;
      fill: #000000;
      margin-left: 0px;
    }
    #mobile-quick  .partner-with-us.show-active{
    background: #d0bb68 !important;
    }
    .sthohnsmenu-item.single-item{
                border-bottom:1px solid transparent !important;
    }
    .dropdown-list li a{
                        border-bottom:1px solid #d0bb68 !important;
                        margin: 0px 30px;

    }
        .navbar .sthohns-menubar {
        width: 55% !important;
        left: 345px;
    }
.navbar .sthohnsmenu-inner {
        overflow-y: scroll;
        height: 442px;
    }
/* mobile ends */
}

@media only screen and (max-width: 767px) {
    .service-inner.dropdown2:hover .speciality-dropdown {
        left: 40px;
        top: 40px;
    }
    .navbar .sthohnsmenu-inner {
        overflow-y: scroll;
        height: 442px;
    }
            .navbar .sthohns-menubar{
       width: 90% !important;
            left: 50px;

}
  #common-blue-banner .our-story-section {
    padding: 24px 78px;
  }
}

@media only screen and (max-width: 550px) {
    .navbar {
        padding: 0px 1em;
    }

    .sthohnsmenu-dropdown-links {
        font-size: 14px;
    }

    #services_dropdown {
        width: 180px;
    }

    #aboutus_dropdown {
        width: 180px;
    }

    #insights_dropdown {
        width: 160px;
    }

    #careers_dropdown {
        width: 180px;
    }

    .dropdown2 .speciality-dropdown {
        width: 180px;
    }

    .sthohns-logo {
        max-width: 210px;
            height: 88px !important;

    }
    .mobile-search-circle {
    width: 50px !important;
    height: 50px !important;
}
}
@media only screen and (max-width: 375px) {
    .navbar {
        padding: 15px 1em;
    }

    .dropdown2 .speciality-dropdown {
        width: 180px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  #common-blue-banner .our-story-section {
    padding: 24px 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
   
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .navbar {
        padding: 4px 0em !important;
    }

    .sthohnsmenu-list-text {
        font-size: 13px;
    }

    .navbar .sthohnsmenu-inner {
        gap: 12px;
    }
    .sthohnsmenu-list-text.contactWithUs {
        padding: 8px 20px;
    }
    .sthohnsmenu-inner a{
        font-size: 16px;
            padding: 30px 5px
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {


}

@media only screen and (max-width: 768px) {
.sthohnsmenu-inner a{
        padding: 20px 12px;
}
/* for dropdown burger */
.sthohnsmenu-inner a{
        padding:  12px 10px !important;
            justify-content: flex-start !important;
    }
    .sthohns-menubar{
       top:0px !important;
    }
    .sthohnsmenu-item.single-item{
        justify-content: flex-start !important;
    }
    .sthohns-logo{
        margin-top: 0px !important;
    }
    .dropdown-header{
        display: none !important;
    }
    .aboutus-absolute {
    position: relative !important;
    padding: 0px !important;
    background-color: transparent !important;
}
.about-dropdown-card{
    width: auto !important;
        display: grid !important;
        background-color:transparent !important;
}
.active-link{
    background-color: transparent !important;
}
.aboutus-absolute{
    border:none !important;
    box-shadow: none !important;
}
 #mobile-quick .partner-with-us.active-link svg {
      fill: #fff;
    }
}

@media only screen and (max-width: 767px) {
.body-content.shift-left {
    transform: translateX(-300px) !important;
}
.sidebar {
    width: 300px !important;
}
}

@media only screen and (max-width: 550px) {

}

@media only screen and (max-width: 375px) {
    .list-links-items {
        padding-inline: 0em 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {}

.top-header {
    padding: 0px 10px;
    background: linear-gradient(to right,#f9f9f9 0,#f9f9f9 350px,rgba(35,85,155,.4) 470px,#23559b 929px,#23559b 100%);
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    gap: 10px;
    font-size: 12px;
}

/* Dark mode top header styles */
.dark-mode .top-header {
    background: linear-gradient(to right, var(--dark-bg-secondary) 0, var(--dark-bg-secondary) 350px, rgba(74, 144, 226, 0.4) 470px, var(--dark-accent) 929px, var(--dark-accent) 100%);
    color: var(--dark-text-primary);
    border-bottom: 1px solid var(--dark-border);
}

.top-header .emergency-contact {
    margin-right: 20px;
}

.top-header .accessibility-language {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Main Navigation Styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e70;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e70;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Active link styling */
.nav-links a.active {
    color: #3498db;
    font-weight: bold;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
    animation: underline 0.3s ease forwards;
}

@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-courses {
    background-color: #2c3e70;
    color: white;
}

.btn-appointments {
    background-color: #f1c40f;
    color: #23559B;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    z-index: 1000;
    max-width: 100%;
}

/* Placeholder content to demonstrate scrolling */
.content {
    padding-top: 200px;
    text-align: center;
}

.nav-link.active {
    color: #f00;
    /* Example: change the color of the active link to red */
    font-weight: bold;
}

/* .top-header {
    display: flex;
    align-items: center;
    background-color: #2A3158;
    padding: 0px 66px;
} */

/* Button styles */
.top-header button {
    margin-right: 0;
    padding: 0px 12px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    display: block;
    align-items: center;
    color: #23559B;
}

/* Accessibility and Language buttons */
.accessibility-btn,
.language-btn {
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
}

/* Emergency Button */
.emergency-btn {
    background-color: white;
    color: #b81d13;
    font-weight: bold;
    animation: emergencyPulse 3s infinite alternate;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #b81d13;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

/* Dark mode emergency button */
.dark-mode .emergency-btn {
    background-color: var(--dark-bg-secondary);
    color: var(--dark-danger);
    border: 2px solid var(--dark-danger);
}

/* Dark mode button styles */
.dark-mode .btn {
    background-color: var(--dark-bg-tertiary);
    color: var(--dark-text-primary);
    border: 1px solid var(--dark-border);
}

.dark-mode .btn-courses {
    background-color: var(--dark-accent);
    color: var(--dark-text-primary);
}

.dark-mode .btn-appointments {
    background-color: var(--dark-warning);
    color: var(--dark-text-primary);
}

/* Emergency Button Icon */
.phone-icon {
    font-size: 20px;
}

/* Phone Number */
.phone-number {
    margin-left: 5px;
    font-weight: normal;
    animation: phonePulse 3s infinite alternate;
}

/* Button Animation */
@keyframes emergencyPulse {
    0% {
        background-color: white;
        color: #b81d13;
    }

    100% {
        background-color: #b81d13;
        color: white;
    }
}

.phone-icon {
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        color: #b81d13;
    }

    100% {
        color: white;
    }
}

/* Phone Number Animation (Subtle Change) */
@keyframes phonePulse {
    0% {
        color: #b81d13;
    }

    100% {
        color: white;
    }
}

.font-indicator {
    margin: 0 5px;
}

/* Format each dropdown item as a row with space between */
.sthohnsmenu-dropdown-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
}

.appointment svg {
    width: 18px;
    height: 18px;
    padding-right: 5px;
}

.appointment {
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 25px;
    border: none;
    color: #fff;
    margin: 0;
    cursor: pointer;
    transition: .5s ease-in-out;
    font-size: 14px;
    padding: 0;
}

.appointment svg path {
    fill: #fff;
}

.phone-icon {
    font-size: 20px;
    animation: iconPulse 3s infinite alternate;
}

.emergency-btn svg path {
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        fill: #b81d13;
    }

    100% {
        fill: white;
    }
}

/* Footer Container */
.footer-container {
    width: 100%;
    border-top: 1px solid #000;
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}
.search-container {
    position: relative;
    display: flex;
    align-items: center;
        z-index: 20; /* higher than overlay */
}

/* Dark mode search container */
.dark-mode .search-container {
    background-color: var(--dark-bg-secondary);
}

.search-icon {
    background-color: #2A2E6D;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

/* Dark mode search icon */
.dark-mode .search-icon {
    background-color: var(--dark-accent);
    color: var(--dark-text-primary);
}

.search-input {
    position: absolute;
          border: 1px solid #23559b;
        right: 12px;
    top: 42px;
    width: 0;
    font-size: 22px;
    padding: 18px 16px;
    border-radius: 8px;
    outline: none;
    transition: width 0.3s ease-in-out;
    opacity: 0;
        z-index: 21;
}

/* Dark mode search input */
.dark-mode .search-input {
    background-color: var(--dark-bg-secondary);
    color: var(--dark-text-primary);
    border: 1px solid var(--dark-border);
}

.dark-mode .search-input::placeholder {
    color: var(--dark-text-muted);
}

.search-container.active .search-input {
    width: 500px;
    opacity: 1;
}
.close-icon {
  position: absolute;
      border: 1px solid #23559b;
      border-radius: 50%;
    right: 3px;
background-color: #23559b;
    color: #fff;
    top: 28px;
    transform: translateY(10%);
  cursor: pointer;
  display: none;
      z-index: 21;
}

.search-container.active .close-icon {
  display: inline-flex;
}
.gg-search {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 100%;
    margin-left: -4px;
    margin-top: -4px;
    color: #23559B;
    cursor: pointer;
}
.search-circle{
    background-color: #DDE5F9;
    width: 40px;
    height: 40px;
    border: 1px solid #23559B;
        display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.gg-search::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-radius: 3px;
    width: 2px;
    height: 8px;
    background: currentColor;
    transform: rotate(-45deg);
    top: 10px;
    left: 12px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / 30%); /* semi-transparent black */
    z-index: 10;
    display: none;
}

.search-container.active + .overlay {
    display: block;
}
/* mobilesearch */
.mobile-search-wrapper {
    position: relative;
    z-index: 30;
        right: -25px;
        display: none;
}

.mobile-search-circle {
    background-color: #DDE5F9;
    width: 36px;
    height: 36px;
    border: 1px solid #23559B;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.gg-search-mobile {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(1);
    width: 16px;
    height: 16px;
    border: 2px solid #23559B;
    border-radius: 100%;
    color: #23559B;
}
.gg-search-mobile::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 3px;
    width: 2px;
    height: 8px;
    background: currentColor;
    transform: rotate(-45deg);
    top: 10px;
    left: 12px;
}

.mobile-search-container {
    position: absolute;
    top: 50px;
    right: 12px;
    width: 0;
    opacity: 0;
    transition: width 0.3s ease-in-out;
    z-index: 31;
}

.mobile-search-input {
   width: 100%;
    min-width: 270px;
    font-size: 18px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #23559b;
    outline: 0;
    right: 0px;
    background-color: #fff;
    position: absolute;
}

.mobile-close-icon {
    position: absolute;
        top: -12px;
    right: -10px;
    cursor: pointer;
    display: none;
    z-index: 32;
    border: 1px solid #23559b;
    border-radius: 50%;
    background-color: #23559b;
    color: #fff;
    transform: translateY(10%);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
}

.mobile-search-wrapper.active .mobile-search-container {
    width: 100%;
    opacity: 1;
}

.mobile-search-wrapper.active .mobile-close-icon {
    display: inline-flex;
}

.mobile-search-wrapper.active .mobile-overlay {
    display: block;
}

/* governance */
#toggle-content {
  transition: all 0.3s ease;
}
.arrow-icon {
  transition: transform 0.3s ease;
}

.arrow-icon.rotated {
  transform: rotate(90deg);
}


@media screen and (max-width: 991px) {
    .navbar .sthohns-menubar {
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #f5f5f5 !important;
    }

    .sthohnsmenu-inner {
        padding: 32px 32px !important;
    }

    .disable-scroll {
        overflow: hidden;
    }

    .sthohns-menubar.show-detail {
        display: block;
        transform: translateY(0);
    }

    .sthohns-menubar {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .active-link {
        padding-bottom: 10px !important;
    }

    .search-input {
        position: relative;
        bottom: 0px;
    }
}

.section-title {
    font-size: 32px;
    line-height: 35px;
    color: #2a2e6d;
  margin: 25px 0px 40px 0px;
}

.no-scroll {
    overflow: hidden;
}
.mobile-design {
    display: none;
}
@media screen and (max-width:992px) {
    
    .navbar .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .top-header {
        display: flex !important;
    }
.top-header {
    padding: 0 30px;
    background: linear-gradient(to right, #f9f9f9 0, #f9f9f9 50px, rgba(35, 85, 155, .4) 112px, #23559b 157px, #23559b 100%);
    }
    .navbar .sthohnsmenu-inner {
        display: block;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0px;
        padding: 1rem 0;
        background-color: #fffae8;
    }

    .sthohnsmenu-item.single-item {
        padding-block: 12px;
        margin: 0;
        border-bottom: 1px solid #d0bb68;
    }
    .mobile-design {
        display: none !important;
        flex-direction: row !important;
        position: relative !important;
        justify-content: flex-start !important;
        gap: 25px !important;
        align-items: center !important;
        margin-bottom: 10px;
    }
}

.sthohnsmenu-list-text-new  {
    font-size: 18px;
    color: #ffffff;
}

.top-header.hidden {
    display: none !important;
}

.hidden {
    display: none;
}
.dropdown {
    width: max-content;
    position: absolute;
    border-radius: 6px;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    background: #f5f5f5;
}
.sthohnsmenu-dropdown-links-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #000;
    padding-inline: 10px 20px;
    padding-block: 8px;
    line-height: 25px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
}
.sthohnsmenu-dropdown-links-new:hover {
    background-color: #ECEEFF;
}

.accessibility-menu {
    width: 320px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
}

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

.menu-label {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.font-controls {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.font-btn {
    background-color: transparent;
    border: none;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 0 !important;
}

.font-indicator {
    font-size: 24px;
    font-weight: bold;
    color: #23559B;
    margin: 0 8px;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    height: 20px;
    width: 32px;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    border:2px solid #23559B;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: #23559B;
    transition: .4s;
    border-radius: 50%;
    top:2px;
}

input:checked + .slider {
    background-color: #23559B;
}

input:checked + .slider:before {
    transform: translateX(10px);
    background-color: #ccc;
}
.grey-scale svg {
    font-size: 16px;
}
/* floating btn  */

.stjohns-floating-btn {
    position: fixed;
    top: 50%;
    right: 12px;
  }

  .stjohns-floating-btn .stjohns-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background:linear-gradient(180deg,rgba(208, 187, 104, 1) 0%, rgb(255, 255, 255) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 300ms ease;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 0px 10px 6px rgb(208 187 104 / 71%);
  }

/* Dark mode floating button */
.dark-mode .stjohns-floating-btn .stjohns-main-btn {
    background: linear-gradient(180deg, var(--dark-accent) 0%, var(--dark-bg-secondary) 100%);
    box-shadow: 0px 0px 10px 6px rgba(74, 144, 226, 0.5);
}

  .stjohns-floating-btn.stjohns-active .stjohns-main-btn {
    background: #2A2E6D;
    box-shadow:   0px 0px 10px 6px #2A2E6D;
  }

/* Dark mode active floating button */
.dark-mode .stjohns-floating-btn.stjohns-active .stjohns-main-btn {
    background: var(--dark-accent);
    box-shadow: 0px 0px 10px 6px var(--dark-accent);
}

  .stjohns-floating-btn .stjohns-main-btn svg {
    width: 30px;
    display: flex;
    transition: all 300ms ease;
  }
  
  .stjohns-floating-btn.stjohns-active .stjohns-main-btn svg {
    filter: brightness(0) invert(1);
  }
  
  .stjohns-main-btn p {
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    transition: all 300ms ease;
    color: #000;
  }
  
  .stjohns-floating-btn.stjohns-active .stjohns-main-btn p {
    color: white;
  }

  .stjohns-floating-btn .stjohns-options {
    position: absolute;
    transform: translate(30px, 30px) scale(0);
    opacity: 0;
    transition: all 300ms ease;
    right: 10px;
    top: 0;
  }

  .stjohns-floating-btn.stjohns-active .stjohns-options {
    transform: translate(5px, 5px) scale(1);
    opacity: 1;
  }

  .stjohns-floating-btn .stjohns-option {
    background: white;
    padding: 8px 12px;
    border-radius: 8px 0px 0px 8px;
    box-shadow: 0 6px 4px -2px #2A2E6D;
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 160px;
    height: 41px;
    align-items: center;
    transition: all 300ms ease;
  }

/* Dark mode floating button options */
.dark-mode .stjohns-floating-btn .stjohns-option {
    background: var(--dark-bg-secondary);
    box-shadow: 0 6px 4px -2px var(--dark-shadow);
    border: 1px solid var(--dark-border);
}

  .stjohns-floating-btn .stjohns-option a {
    text-decoration: none;
    color: #000;
    user-select: none;
    font-weight: 300;
    font-size: 12px;
  }

/* Dark mode floating button option links */
.dark-mode .stjohns-floating-btn .stjohns-option a {
    color: var(--dark-text-primary);
}

  .stjohns-floating-btn .stjohns-option:nth-child(1) {
    transform: translate(-200px, -70px) rotate(0);
  }

  .stjohns-floating-btn .stjohns-option:nth-child(2) {
    transform: translate(-232px, 0px) rotate(0);
  }

  .stjohns-floating-btn .stjohns-option:nth-child(3) {
    transform: translate(-200px, 70px) rotate(0);
  }
  
  .stjohns-option svg {
    height: 18px;
  }
  
  .stjohns-option svg path {
    fill: #2A2E6D;
  }


  /* new css */
/* footer call icon css */
 footer {
      background-color: #f0f6ff;
    }

/* Dark mode footer */
.dark-mode footer {
    background-color: var(--dark-bg-secondary);
    border-top: 1px solid var(--dark-border);
}

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 30px 50px;
      flex-wrap: wrap;
      gap: 20px;
    }

/* Dark mode footer top */
.dark-mode .footer-top {
    background-color: var(--dark-bg-secondary);
}

    .footer-logo {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      max-width: 300px;
    }

    .footer-logo img {
      width: 278px;
      height: auto;
    }

    .logo-text h2 {
      font-size: 24px;
      margin: 0;
      color: #1d4a94;
    }

/* Dark mode logo text */
.dark-mode .logo-text h2 {
    color: var(--dark-accent);
}

    .logo-text p {
      margin: 5px 0 0;
      font-size: 14px;
      color: #000;
      line-height: 1.4;
    }

/* Dark mode logo text paragraph */
.dark-mode .logo-text p {
    color: var(--dark-text-secondary);
}

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 25px 30px;
      align-items: center;
      justify-content: center;
      text-align: start;
    }

    .footer-links a {
      color: #000;
      text-decoration: none;
      font-size: 14px;
      position: relative;
      padding: 0 25px;
    }

/* Dark mode footer links */
.dark-mode .footer-links a {
    color: var(--dark-text-primary);
}

    /* Gold separator except after each row's last item */
    .footer-links a:not(:nth-child(3n))::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 16px;
      border-right: 2px solid #d4b34a;
    }

/* Dark mode footer separators */
.dark-mode .footer-links a:not(:nth-child(3n))::after {
    border-right: 2px solid var(--dark-accent);
}

    .footer-social {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .footer-social a {
      color: white;
      background-color: #1d4a94;
      border-radius: 50%;
        width: 35px;
    height: 35px;
    padding: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 14px;
    }

/* Dark mode footer social */
.dark-mode .footer-social a {
    background-color: var(--dark-accent);
    color: var(--dark-text-primary);
}

    .footer-bottom {
            margin-bottom: 50px;
      background-color: #1d4a94;
      color: white;
      text-align: center;
      padding: 12px 20px;
      font-size: 14px;
    }

/* Dark mode footer bottom */
.dark-mode .footer-bottom {
    background-color: var(--dark-accent);
    color: var(--dark-text-primary);
}

    .footer-bottom span {
      color: #d4b34a;
      margin: 0 10px;
    }

/* Dark mode footer bottom span */
.dark-mode .footer-bottom span {
    color: var(--dark-warning);
}
    
/* footer css ends */
 @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
.mobile-search-wrapper {
    display: block;
   right: -120px;
}
.sthohns-logo{
    margin-top: -10px;
        height: 100px;
}
      .footer-links {
        gap: 10px 20px;
      }
      .footer-top{
        padding: 30px 20px;
      }
    }
    /* quick links */
.partner-dropdown .dropdown-footer {
  text-align: center;
  margin-top: 10px;
}

.partner-dropdown .login-button {
  background-color: #23559b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}
/* Active state styles when dropdown is shown */
.sthohnsmenu-list-text.partner-with-us.show-active {
    background: #23559b !important;
    color: #fff !important;
    border: solid 1px #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1) !important;
}
.sthohnsmenu-list-text.partner-with-us.show-active svg{
    fill: #fff;
}
/* quick */
  /* new ends */
  /* aboutus */
#aboutus-drop,#patientcare-drop,#education-drop{
    position: relative;
    display: block;
}
.aboutus-absolute {
    position: absolute;
    background: white;
    padding: 10px;
    background-color: #E4EFFF;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}
.about-dropdown-card {
    background: white;
    border-radius: 4px;
    background-color: #E4EFFF;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    width: 670px;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
        display: flex
}

.dropdown-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    color: #333;
}
.dropdown-header span{
        position: absolute;
    padding-left: 8px;
    margin-left: 15px;
    bottom: 50px;
    border-left: 3px solid #23559B;
    color:#ffffff;
}
.dropdown-icon {
    margin-right: 10px;
      width: 228px;
    height: 228px;
}

.dropdown-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.dropdown-list li a {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 8px 16px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
    justify-content: flex-start;
    display: flex;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.dropdown-list li a:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width:0;
    /* background: linear-gradient(to right,#23559B, #D0BB68); */
    background-color:#23559B ;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.dropdown-list li a:hover {
  color: #fff; /* White text on hover */
}
.dropdown-list li a:hover:before {
    width: 100%;
}
.droplist-sub {
    border-left: 1px solid #d0bb68;
    margin-top: 66px;
        height: 50%;
}
/* ///about us */
#page-open {
      display: flex;
      position: relative;
      overflow: hidden;
    }

    .sidebar {
      position: absolute;
      right: -378px;
      top: 0;
      width: 378px;
      overflow-y: scroll;
      height: 100%;      
      background: #fffae8;
      transition: right 0.3s ease;
    z-index: 9999;
      padding: 0px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }

    .body-content {
      transition: transform 0.3s ease;
      /* padding: 20px; */
      width: 100%;
    }

    .sidebar.active {
      right: 0;
    }

    .body-content.shift-left {
      transform: translateX(-378px);
    }
      #partnerToggle {
      padding: 10px 20px;
      margin-bottom: 20px;
      /* color: #fff; */
      border: none;
      cursor: pointer;
      float: right;
    }
/* commonbanner */
#common-blue-banner .our-story-section {
  background-color: #23559b;
  padding: 24px 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

/* Dark mode common banner */
.dark-mode #common-blue-banner .our-story-section {
    background-color: var(--dark-accent);
}

#common-blue-banner .title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  flex: 1;
  text-align: left;
  letter-spacing: -0.02em;
}

/* Dark mode banner title */
.dark-mode #common-blue-banner .title {
    color: var(--dark-text-primary);
}

#common-blue-banner .logo-container .logo-icon img {
  background-color: #d0bb68;
  border-radius: 15px;
  padding: 10px;
}

/* Dark mode banner logo */
.dark-mode #common-blue-banner .logo-container .logo-icon img {
    background-color: var(--dark-warning);
}

/* Additional dark mode styles for mobile and responsive elements */
@media screen and (max-width: 992px) {
    .dark-mode .navbar .sthohnsmenu-inner {
        background-color: var(--dark-bg-secondary);
    }
    
    .dark-mode .sthohnsmenu-item.single-item {
        border-bottom: 1px solid var(--dark-border);
    }
    
    .dark-mode .sthohns-menubar {
        background-color: var(--dark-overlay);
    }
}

/* Dark mode scrollbar styles */
.dark-mode *::-webkit-scrollbar-thumb {
    background-color: var(--dark-accent);
}

.dark-mode *::-webkit-scrollbar-track {
    background-color: var(--dark-bg-secondary);
}

.dark-mode *::-webkit-scrollbar {
    background-color: var(--dark-bg-secondary);
}