body {
    font-family: 'Open Sans', sans-serif;
    /*Section Fix*/
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}


html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ensures full viewport height */
}



/* Wrap all main content before footer */
.main-content {
    flex: 1; /* pushes footer to bottom when content is short */
}

a {
    text-decoration: none;
}

a:active, a:hover {
    outline: 0;
    text-decoration: none;
}

p {
    font-family: 'Open Sans', sans-serif;
    line-height: 26px;
    color: #555555;
    margin: 0;
    font-size: 16PX;
}
/*.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}*/
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.dbtindia-logo {
  height: 100px;
}

.Akam-logo {
  height: 115px;
}

.logo-indvar {
  height: 88px; 
  margin-top: 15px;
}

.bg-grediunt {
    flex: 1;                /* Grows to fill empty space */
    display: flex;          /* Becomes a container for its children */
    flex-direction: column; /* Stacks children vertically */
    width: 100%;
    background: #f4f9fb !important;
    background-image: linear-gradient(to right bottom, #f4f9fb, #fff, #f4f9fb, #fff, #f4f9fb) !important;
}

.bg-banner-img{
    background-image: url(../img/banner-img.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    max-width: 100%;
}

.overlay-all {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(11, 13, 37, 0.4);
}

.s-header {
    z-index: 500;
    width: 100%;
    height: 96px;
    background-color: transparent;
    position: absolute;
    top: 24px;
}

.header-logo {
    z-index: 501;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 110px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-logo a {
    display: block;
    padding: 0;
    outline: 0;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-nav {
    z-index: 900;
    font-family: "metropolis-regular", sans-serif;
    font-size: 1.3rem;
    line-height: 1.846;
    padding: 3.6rem 3rem 3.6rem 3.6rem;
    height: 100%;
    width: 280px;
    background: #265db9 !important;
    background-image: linear-gradient(to right top ,#6871f4,#6871f4,#6871f48f,#265db9 ,#265db9b0 )!important;
    color: rgba(255, 255, 255, 0.25);
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
}
.header-nav a,
.header-nav a:visited {
    color: rgba(255, 255, 255, 0.5);
}
.header-nav a:hover,
.header-nav a:focus,
.header-nav a:active {
    color: white;
}
.header-nav h3 {

    font-size: 16px;
    line-height: 1.363;
    /*  text-transform: uppercase;*/
    letter-spacing: 0.25rem;
    margin-bottom: 4.8rem;
    margin-top: 0.9rem;
    color: #fff;
}
.header-nav p {
    margin-bottom: 2.7rem;
}

.header-nav__content {

    position: relative;
    left: 50px;
    opacity: 0;
    visibility: hidden;
}

.header-nav__list {
    font-family: "metropolis-regular", sans-serif;
    font-size: 1.6rem;
    margin: 3.6rem 0 3rem 0;
    padding: 0 0 1.8rem 0;
    list-style: none;
    counter-reset: ctr;
}
.header-nav__list li {
    border-top: 1px solid rgba(202, 197, 197, 0.66);
    line-height: 4.8rem;
    position: relative;
}
.header-nav__list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-nav__list a {
    display: block;
    color: #ffffff;
    position: relative;
    text-decoration: none;
    /*  padding-left: 3.5rem;*/
}
/*.header-nav__list a::before {
  content: counter(ctr, decimal-leading-zero) ".";
  counter-increment: ctr;
  font-family: "metropolis-regular", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  left: 3px;
  top: 0;
}*/
.header-nav__list a:hover::before {
    color: #fff;
}

.header-nav__close {
    z-index: 800;
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 30px;
    border-radius: 3px;
    position: absolute;
    top: 36px;
    right: 30px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}
.header-nav__close span::before,
.header-nav__close span::after {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -1px;
}
.header-nav__close span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header-nav__close span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-is-open .header-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    left: 0;
}

.header-menu-toggle {
    position: fixed;
    position: absolute;
    right: 110px;
    top: 42px;
    top: 10px;
    width: 48px;
    height: 45px;
    line-height: 45px;
    font-family: "metropolis-regular", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-toggle.opaque {
    border-radius: 5px;
    background: #265db9 !important;
    background-image: linear-gradient(to right top ,#6871f4,#6871f4,#6871f48f,#265db9 ,#265db9b0 )!important;
}
.header-menu-toggle.opaque::before {
    display: none;
}
.header-menu-toggle:hover,
.header-menu-toggle:focus,
.header-menu-toggle:active {
    color: #fff;
}

.header-menu-icon {
    display: block;
    width: 35px;
    height: 3px;
    margin-top: -1px;
    right: auto;
    bottom: auto;
    background-color: white;
    position: absolute;
    left: 0px;
    top: 50%;

}
.header-menu-icon::before,
.header-menu-icon::after {
    content: "";
    width: 78%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 8px;
    margin: -2px 0px;
}
.header-menu-icon::before {
    top: -9px;
}
.header-menu-icon::after {
    bottom: -9px;
}


/*.menu-text:hover, .menu-text:focus, .menu-text:active {
    color: #fff;
}*/

@media only screen and (max-width: 1600px) {
    .header-logo {
        left: 60px;

    }

    .header-menu-toggle {
        right: 60px;
        padding:20px;
    }
}
@media only screen and (max-width: 800px) {
    .header-logo {
        left: 40px;
    }

    .header-menu-toggle {
        right: 40px;
    }
}
@media only screen and (max-width: 600px) {
    .s-header {
        height: 90px;
        top: 12px;
    }

    .header-logo {
        left: 30px;
    }


    .header-menu-toggle {
        right: 25px;
        top: 30px;
    }
}
@media only screen and (max-width: 500px) {
    .header-menu-toggle::before {
        display: none;
    }
}
@media only screen and (max-width: 400px) {
    .s-header {
        top: 6px;
    }

    .header-logo {
        left: 25px;
        top:60px;
    }


    .header-menu-toggle {
        top: 24px;
        right: 20px;
    }
}

section {
    padding: 70px 0px;
    padding: 200px 0px;
    padding: 275px 0px;
}

.mb-90 {
    /*    padding-bottom: 140px;*/
    padding-bottom: 80px;
    padding-bottom: 0px;
}

.banner-shap-img {
    background-image: url(../img/banner-bottom.png);
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    bottom: 0px;
    /*height: 100px;*/
    height: 160px;
    /*position: absolute;*/
    z-index: 9;
    left: 0;
    right: 0;
}

.about-section {
    /*    background-color: #f8fbff;
          background-image: url(../img/dot-pattern-bkgd.png);
          background-position: bottom right -300px;
          background-size: auto;
          background-repeat: no-repeat;*/
    background-color: #f8fbff;
    /*    background-image: url(../img/blue-side-dots.webp);
        background-position: 100% 80%;
        background-size: initial;
        background-repeat: no-repeat;*/
    background-image: url(../img/mob-grid-bg.png);
    background-repeat: repeat-x;
    background-position: top center;
    /*    padding-top: 6rem;*/
   flex: 1;                /* Grows to fill the .bg-grediunt wrapper */
    width: 100%;
    flex-direction: column;
}

.about_left_text h1 {
    font-size: 43px;
    font-size: 30px;
    font-weight: 700;
    margin-top: 15px;
}

.about_left_text p {
    font-size: 21px;
    margin: 25px 0px;
    line-height: 35px;
}

.login-page {
    display: block;
    width: 100vw;
    height: 100vh;
    font-family: Nunito, sans-serif;
    font-size: 16px;
}


.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 100%; /* Prevent overflow */
    overflow: hidden; /* Hide any accidental overflow */
}

.left-side {
    background-color: #18244a;
    background-image: url(../img/left-side-background.png);
    flex: 0 0 365px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #d5d7db;
    padding-top: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100vh; 
}


.right-side {
    background-color: #f6f8f8;
    background-image: url(../img/background-lines-variant-3.jpg);
    background-size: cover;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /*    max-width: 100%;  Prevent overflow */
}

.sign-in-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 21px 41px;
    display: flex;
    align-items: center;
    color: #18244a;
}

.home-button {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 21px;
    transition: all .1s ease;
    margin-right: auto;
    margin-left: -8px;
    padding: 3px 8px;
    font-weight: 700;
}

.home-button img {
    margin-right: 7px;
}

.login-button {
    height: 42px;
    border-radius: 21px;
    border: solid 1px #4eadf2;
    background-color: transparent;
    font-size: 20px;
    padding: 0 25px;
    cursor: pointer;
    outline: none;
    margin-left: 15px;
}

.sign-in-form {
    margin: 0 auto;
    max-width: 500px; /* Keeps Login page narrow */
    width: 100%;
}

/* 2. Card Selection Form: Overrides the width ONLY for the signup selection screen */
.wide-card-form {
    max-width: 1000px !important; /* Forces this specific form to be wide */
}

/* 3. Ensure the content inside the wide form spans correctly */
.signup-form {
    width: 100%;
}

.researcher-sign-in-form {
    margin: 0 auto;
    /*max-width: 950px;*/
    /*max-width: 850px;*/
    width: 100%;
}

.form-header {
    font-size: 36px;
    width: 500px;
    line-height: 35px;
    margin-bottom: 25px;
}

sign-in-form .subheader {
    margin-bottom: 25px;
}

.input-container {
    position: relative;
    margin-bottom: 25px;
}

.input-container .input-field {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    border-radius: 26px;
    border: solid 1px #d5d7db;
    background-color: #fff;
    font-size: 16px;
    padding: 13px 25px;
    margin-top: 6px;
    outline: none;
}


.sign-in-form .submit-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.submit-container > button {
    width: 157px;
    height: 42px;
    border-radius: 21px;
    background-color: #016997;
    border: none;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 200;
    font-family: Nunito, sans-serif;
    line-height: 40px;
    cursor: pointer;
    outline: none;
}

.register_form select {
    border: none;
    border-radius: 26px;
    padding: 10px;
}

.form-icon {
    font-size: 24px;
}

.map-wrap iframe {
    height: 275px;
    width: 100%;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

/*select {
    border-radius: 26px;
    padding: 5px;
}*/


#footer {
    margin-top: auto;
    background-color: #263862;
    padding-top: 0px;
    padding-bottom: 0px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: #fff;
}

#footer h3 {
    font-size: 13px;
    line-height: 30px;
    color: #fff;
    margin-top: 25px;
}


.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.dark-mode-2 {
    background-color: #454d55 !important;
    color: #fff;
}


.dark1 {
    background-color: #f5f5f5;
}

#wrapper {
    padding-left: 0;    
}

#page-wrapper {
    width: 100%;        
    /*    padding: 0;*/
    padding: 185px 10px;
    /*    background-color: #fff;*/
}

#page-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../img/dash-pattern-bg.png");
    background-position: center center;
    opacity: 0.4;
    z-index: -1;
}

@media(min-width:768px) {
    #wrapper {
        /*        padding-left: 290px;*/
        padding-left: 280px;
    }

    #page-wrapper {
        padding: 115px 10px;
    }
}

.top-nav {
    /*    padding: 0 15px;*/
    padding: 0 25px;
}

.top-nav>li {
    display: inline-block;
    float: left;
}

.top-nav>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 20px;
    /*    color: #fff;*/
    color: #131e22;
    font-weight: 500;
    margin-left: 78px;
}

.top-nav>li>a:hover,
.top-nav>li>a:focus,
.top-nav>.open>a,
.top-nav>.open>a:hover,
.top-nav>.open>a:focus {
    color: #131e22;
    background-color: transparent;
}

.top-nav>.open>.dropdown-menu {
    float: left;
    position: absolute;
    margin-top: 0;
    /*border: 1px solid rgba(0,0,0,.15);*/
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.top-nav>.open>.dropdown-menu>li>a {
    white-space: normal;
}

/* Side Navigation */


.side-nav>li>ul {
    padding: 0;
    border-bottom: 1px rgba(0,0,0,.3) solid;
}

.side-nav>li>ul>li>a {
    display: block;
    padding: 10px 15px 10px 26px;
    text-decoration: none;
    /*color: #999;*/
    color: #fff;    
    font-size: 15px;
}

.side-nav>li>ul>li>a:hover {
    color: #fff;
}

.top-nav {
    /*    padding: 0 15px;*/
    padding: 0 25px;
}

.top-nav>li {
    display: inline-block;
    float: left;
}

.top-nav>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 20px;
    /*    color: #fff;*/
    color: #131e22;
    font-weight: 500;
    margin-left: 78px;
}

.top-nav>li>a:hover,
.top-nav>li>a:focus,
.top-nav>.open>a,
.top-nav>.open>a:hover,
.top-nav>.open>a:focus {
    color: #131e22;
    background-color: transparent;
}

.top-nav>.open>.dropdown-menu {
    float: left;
    position: absolute;
    margin-top: 0;
    /*border: 1px solid rgba(0,0,0,.15);*/
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.top-nav>.open>.dropdown-menu>li>a {
    white-space: normal;
}

/* Side Navigation */

@media(min-width:768px) {
    .side-nav {
        position: fixed;
        /*        top: 60px;*/
        left: 225px;
        top: 82px;
        /*        width: 290px;*/
        width: 280px;
        margin-left: -225px;
        border: none;
        border-radius: 0;
        /*        border-top: 1px rgba(0,0,0,.5) solid;*/
        overflow-y: auto;
        /*        background-color: #222;*/
        /*background-color: #503D7F;*/
        background: #0f0c29;
        /*background-color: #5A6B7D;*/
        bottom: 0;
        overflow-x: hidden;
        padding-bottom: 40px;
    }

    .side-nav>li>a {
        /*        width: 290px;*/
        width: 350px;
        border-bottom: 0px rgba(0,0,0,.3) solid;
        font-size: 15px;
        margin-top: 12px;
    }

    .side-nav li a:hover,
    .side-nav li a:focus {
        outline: none;
        /*        background-color: #1a242f !important;*/
        /*       background-color: #3f6791 !important;*/
        color: #fff;
    }
}

.side-nav>li>ul {
    padding: 0;
    border-bottom: 1px rgba(0,0,0,.3) solid;
}

.side-nav>li>ul>li>a {
    display: block;
    padding: 10px 15px 10px 26px;
    text-decoration: none;
    /*color: #999;*/
    color: #fff;    
    font-size: 15px;
}

.side-nav>li>ul>li>a:hover {
    color: #fff;
}

.side-bar-icon {
    font-size: 24px;
    margin-right: 10px;
}

.navbar-inverse {
    /*    background-color: #343a40;
        border-color: #343a40;*/
    /*background-color: #fff;/*
        border-color: #fff;*/
    /*background: #EDEDED;*/
    background: linear-gradient(0deg,#be2a2a -86.4%,#ef7f1a 94.15%);
    border-bottom: 1px solid #D9DEE4;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}
.navbar-inverse .navbar-brand {
    color: #fff;
    /*    background-color: #454d55;*/
    /*background-color: #503D7F;*/
/*background: linear-gradient(0deg,#be2a2a -86.4%,#ef7f1a 94.15%);*/

}
.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover {
    color: #fff;
    /*    background-color: #454d55;*/
    /*background-color: #503D7F;*/
}
.navbar-brand {
    float: left;
    /*    height: 60px;*/
    height: 82px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}
.navbar .nav > li > a > .label {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    right: 6px;
    font-size: 10px;
    font-weight: normal;
    min-width: 15px;
    min-height: 15px;
    line-height: 1.0em;
    text-align: center;
    padding: 2px;
}

.navbar .nav > li > a:hover > .label {
    top: 10px;
}

.navbar-brand {

    /*padding: 33px 95px;*/
    padding: 33px 125px;
}
.navbar-inverse .navbar-nav>li>a {
    /*    color: #ced4da;*/
    color: #fff;
}
.content-header {
    /*    border-bottom: 1px solid #707070;*/
    margin-bottom: 1em;
}
.content-header {
    padding: 15px 0.5rem;
}
.dark {
    background-color: #454d55;
    color: #fff;
}
.dark-2 {
    background-color: #454d55;
    color: #212529;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
#page-wrapper>.content {
    padding: 0 0.5rem;
}

.dark-mode .card-primary.card-outline {
    border-top: 3px solid #3f6791;
}
.dark-mode .card {
    background-color: #343a40;
    color: #fff;
}

/*.card-primary.card-outline {
    border-top: 3px solid #007bff;
}

.hr-bg{
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    background-color: #212529;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}
.dark-mode .main-footer {
    background-color: #343a40;
    border-color: #4b545c;
}
.main-footer {
    background-color: #212529;
    border-top: 1px solid #dee2e6;
    color: #869099;
    padding: 1rem;
}
.bg-gradient-primary {
    background: #3f6791 linear-gradient(180deg,#5c7ea2,#3f6791) repeat-x!important;
    color: #fff;
}

.contact-info p {
    font-size: 18px;
    /*    font-weight: 400;*/
    margin: 0;
    line-height: 35px;
}

.m_card {
    text-align: center;
    margin-top: 20px;
    transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    box-shadow: 0px 0px 70px #bbbaba69;
    border-radius: 5px;
}
.m_card_head {
    padding: 30px 0px;
    background: #999999;
    position: relative;
}
.m_card_head h3 {
    text-transform: uppercase;
    color: #fff;
    /* font-size: 24px; */
    font-size: 20px;
}

.m_card_body {
    background: #f4f5f9;
    padding: 80px 0px 30px 0px;
}


.icon-box {
    /*text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    width: 100%;*/

   text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .125);
    position: relative;  /* Keeps the absolute background inside this box */
    overflow: hidden; 
}
.icon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/sign-up-background.jpg) no-repeat center center / cover;
    opacity: 0.25;
    z-index: 0;
}

.icon-box h4 {
    font-weight: 700;
    color: #000;
    padding: 8px 5px 0;
    margin: 10px -34px;
    margin: 10px 0;
    height: 35px;
    display: block;
    /*text-align: center;*/
    font-size: 15px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-family: "Raleway", sans-serif;
}

.icon-box:hover {
    /*transform: scale(1.08);*/
   transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4); /* brighter glow */
}

.icon-box img,
.icon-box h4,
.icon-box span,
.icon-box a {
    position: relative;
    z-index: 1;
}

.counter {
    font-size: 19px;
    margin-top: 10px;
    font-weight: 700;
    color: #000;
}

.variant-icon {
    font-size: 70px;
    margin-top: -70px;
}


.breadcrumb {
    padding: 8px 0;
    margin-bottom: 0px;
    list-style: none;
    background-color: #ffffff;
    border-radius: 4px;
}
.breadcrumb-item.active {
    color: #524d7d;
    font-weight: 500;
}
.breadcrumb-item a {
    color: #031e23;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #333;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: #f5f5f5;
}

.dropdown .user-profile {
    width: 52px;
    height: 52px;
    font-size: 24px;
    background: #ebeff3;
    color: #524d7d;
    line-height: 52px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .18);
    box-shadow: 0 0 10px rgba(0, 0, 0, .18);
    margin-right: 10px;
}

.dropdown .user-name {
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    color: #131e22;
    font-family: 'Inter', sans-serif;
}


.widget-data {
    width: calc(100% - 60px);
    padding: 20px 15px;
}
.widget-icon {
    width: 60px;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    /*    display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*    background: #334148;*/
    color: #fff;
}


@media only screen and (max-width : 320px) {  
    .navbar-inverse .navbar-nav>li>a {
        color: #000000;
    }
    .navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
        color: #000000;
        background-color: transparent;
    }
    .side-nav>li>ul>li>a {
        color: #3F51B5;
    }
    .side-nav>li>ul>li>a:hover {
        color: #3F51B5;
    }
}

@media only screen and (max-width : 480px) {  
    .navbar-inverse .navbar-nav>li>a {
        color: #000000;
    }
    .navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
        color: #000000;
        /*    background-color: transparent;*/
        background-color: #F4797E;
    }
    .side-nav>li>ul>li>a {
        color: #3F51B5;
    }
    .side-nav>li>ul>li>a:hover {
        color: #3F51B5;
    }
}

@media only screen and (max-width : 768px) {  
    .navbar-inverse .navbar-nav>li>a {
        color: #000000;
    }
    .navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
        color: #000000;
        background-color: transparent;
    }
    .side-nav>li>ul>li>a {
        color: #3F51B5;
    }
    .side-nav>li>ul>li>a:hover {
        color: #3F51B5;
    }
}


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

    .dark-mode { 
        padding: 0;
        margin-top: 35px;
    }
}

@media only screen and (max-width: 768px){
    .dark-mode { 
        padding: 0;
        margin-top: -10px;
    }  
}


@media only screen and (max-width: 480px) {
    .dark-mode { 
        padding: 0;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 360px) {
    .dark-mode { 
        padding: 0;
        margin-top: 30px;
    }
}

.search-wrapper {
    flex: 0 0 76px;
    flex: 0 0 60px;
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.search-wrapper input {
    padding-left: 28px;
    font-size: 20px;
    border: none;
    outline: none;
    flex: 1;
    color: #222;
    height: 100%;
}

.search-area {
    display: flex;
    flex-direction: column;
    /*    width: 847px;*/
    width: 100%;
    max-height: 550px;
    border-radius: 38px;
    border: solid 3px #4eadf2;
    background-color: #fff;
    z-index: 2;
    position: relative;
    min-height: 0;

    opacity: 0.8
}

.search-wrapper .home-classify-btn.green {
    width: 54px;
    border-radius: 50%;
    background-color: #1dc299;
}

.search-wrapper .home-classify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    width: 143px;
    height: 54px;
    border-radius: 27px;
    background-color: #016997;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.search-wrapper .home-classify-btn.green > img {
    display: unset;
}

.search-wrapper .home-classify-btn.green > span {
    display: none;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fff;
    opacity: 1;
}


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

.year-input {
    border-right: none;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.month-input {
    border-left: none;
    border-radius: 0 4px 4px 0;
    flex: 1;
}

.items--container {
    display: flex;
    flex-direction: row;
    /*  justify-content: center;*/
    align-items: center;
}

.arrow-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 1rem;
    width: 168px;
    height: 50px;
}

.arrow-list.active .content {
    color: #FFFFFF;
}
.arrow-list.active .content a{
    color: #FFFFFF;
}

.arrow-list.active .arrow {
    background: #d68a3a;
}

.content {
    color: #000000;
    position: absolute;
    z-index: 2;
}


.arrow {
    width: 100%;
    height: 50%;
    background: #FFFFFF;
}

.arrow.top {
    transform: skew(45deg, 0deg);
    border-left: 1px solid #d68a3a;
    border-right: 1px solid #d68a3a;
    border-top: 1px solid #d68a3a;
}

.arrow.bottom {
    transform: skew(-45deg, 0deg);
    border-left: 1px solid #d68a3a;
    border-right: 1px solid #d68a3a;
    border-bottom: 1px solid #d68a3a;
}

.tab-content > .tab-pan {
    display: none;
}
.tab-content > .active {
    display: block;
}

.profile-card {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 10px;
}
.profile-card p{
    line-height: 25px;
}


.instructionBlog {
    padding: 10px;
    /* border-radius: 10px;
    border: 1px solid #62626C; */
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    /* height: 396px; */
    height: auto;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
}

.dash-border {
   /* padding:10px 12px;
    border-left:4px solid #e74c3c;
    background: #ffffff;*/
    border-radius:6px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.card-box {
     /* padding: 50px 30px; */
    /* padding: 0px 10px; */
    /* padding: 23px 30px; */
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #000;
    /*box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);*/
    box-shadow: 7px 7px #0000008a; /* Matched your inline style */
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    margin-bottom: 30px;
   /* z-index: 1;*/
    font-family: sans-serif;
     font-weight: 700;
    display: flex;
    align-items: center; /* Vertically centers image and text */
    justify-content: flex-start;
    padding: 15px; /* Reduced padding slightly to save space */
    border: 1px solid rgba(0, 0, 0, .125);
    min-height: 120px; /* Ensures both cards are same height */
}

.card-box:hover {
    transform: scale(1.08);
}

.card-box img {
    margin-right: 15px; /* Reduced from 20px */
    width: 60px; /* Reduced from 80px to fit better */
    height: auto;
    flex-shrink: 0; /* Prevents image from squashing */
}

.count-box {
    flex: 1;
    text-align: left; /* Ensures text aligns left */
}

.count-box p {
    font-size: 14px; /* Adjust font size if needed */
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.count-box .counter {
    font-size: 24px;
    font-weight: bold;
}
.counter {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 700;
    color: #000;
}

#myTable thead {
  background: #6c757d;
  color: #fff;
}
.cdfd-logo {
    width: 300px;
    margin-top: 0;
    margin-left: -110px;
}

.cdfd-logo-thumb {
    display: block;
    width: 200px;            /* Adjust as needed */
    background-color: #fff;
    border-radius: 15px;
    border: none;            /* remove grey border */
    /*padding: 5px 10px;  */     
    margin: 0 auto;          /* centers the logo */
}


 .main-bg {
    position: relative;
    /* min-height: 100vh; */
    width: 100%;
    /* padding: 30px 0; */
    overflow: hidden;
    z-index: 1;
}

.main-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../img/banner-img.png") no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 1;
    z-index: -1;
}

.full-width-modal .modal-dialog {
    width: 100vw; /*viewport width */
    /*margin: 0;
    padding: 0;*/
}
.full-width-modal .modal-content {
    border-radius: 0;
    width: 100%;
}
.modal-content .container {
     padding: 0;
     width: 100%;
}
.modal-dialog {
     /*max-width: 1200px;*/
     max-width: 900px;
     margin: 30px auto;
}


/* 1. Reset the dropdown container style */
.ui-autocomplete {
    box-sizing: border-box; /* Ensures padding doesn't increase width */
    padding: 0 !important;  /* Remove default jquery padding */
    margin-top: 5px;        /* Small gap between input and dropdown */
    border: none;           /* Remove default border if you want a cleaner look */
    border-radius: 15px;    /* Match your search bar's roundness */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Nice soft shadow */
    background: #fff;
    overflow: hidden;       /* Keeps rounded corners clean */
    z-index: 99999;         /* Ensure it sits on top of everything */
    font-family: 'Segoe UI', sans-serif;
}

/* 2. Style individual rows to fill the space */
.ui-menu-item {
    margin: 50px;
    padding: 0;
    list-style: none;
}

/* 3. The Flexbox layout for your content */
.ac-item {
    display: flex;
    justify-content: space-between; /* Pushes Gene to left, Type to right */
    align-items: center;
    padding: 12px 20px; /* Adds breathing room inside the row */
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

/* 4. Remove border from the last item */
.ui-menu-item:last-child .ac-item {
    border-bottom: none;
}

/* 5. Hover Effect */
.ui-menu-item-wrapper.ui-state-active,
.ac-item:hover {
    background-color: #f4fbf7 !important; /* A very light green to match your theme */
    color: #000;
    border: none;
}

/* 6. Icon Styling (from previous steps) */
.ac-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* Color dots */
.ac-type::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 2px; /* Rotate for diamond, or leave generic */
    transform: rotate(45deg); 
}

.icon-gene { color: #007bff; }
.icon-gene::before { background-color: #007bff; }

.icon-transcript { color: #28a745; }
.icon-transcript::before { background-color: #28a745; }
/* Force text color to black on hover */
.ui-menu-item .ui-menu-item-wrapper.ui-state-active,
.ui-menu-item .ui-menu-item-wrapper:hover,
.ac-item:hover {
    color: #000000 !important; /* Forces text black */
    background-color: #f4fbf7 !important; /* Keep your light green/gray background */
    border: none !important; /* Removes any default borders */
}

/* Ensure the inner text elements also inherit this color */
.ui-state-active .ac-text,
.ui-state-active .ac-type {
    color: #000000 !important;
}


.full-width-modal .modal-dialog {
     width: 100vw; /*viewport width */
     /*margin: 0;
     padding: 0;*/
}
.full-width-modal .modal-content {
	border-radius: 0;
	width: 100%;
}
.modal-content .container {
	padding: 0;
	width: 100%;
}
.modal-dialog {
	max-width: 1200px;
	margin: 30px auto;
}


