header {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.header-ins {
    width: 90%;
    max-width: 1280px;
    min-height: 100px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 180px;
}

#normal .logo .normal_logo {
    display: block;
}

#normal .logo .dark_logo {
    display: none;
}

#dark .logo .normal_logo {
    display: none;
}

#dark .logo .dark_logo {
    display: block;
}

.navigation {
    width: calc(100% - 300px);
    display: flex;
    justify-content: space-between;
}

.left-nav, .right-nav {
    width: auto;
}

.left-nav ul, .right-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: auto;
    align-items: center;
}

.left-nav ul li {
    margin: 0 15px;
}

#normal .left-nav ul li a {
    color: #000;
}

#dark .left-nav ul li a {
    color: #fff;
}

.right-nav ul li {
    margin: 0 15px;
}

.right-nav ul li a {
    padding: 10px 15px;
    border-radius: 10px;
}

#normal .sign-in {
    border: solid 1px #000;
    color: #000;
}

#dark .sign-in {
    border: solid 1px #fff;
    color: #fff;
}

.sign-up {
    background-color: teal;
    color: #fff;
    transition: all 0.3s linear;
}

.sign-up:hover {
    background-color: #042366;
    color: #fff;
}


.hamburger {
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
    display: none;
}


#dark .hamburger span {
    background-color: #fff;
}

#normal .hamburger span {
    background-color: #000;
}

.hamburger span {
    display: block;
    height: 3px;
    margin: 10px 0;
}

.hamburger span:nth-of-type(1) {
    width: 100%;
    transition: all 0.1s linear;
}

.hamburger span:nth-of-type(2) {
    width: 50%;
}

.hamburger span:nth-of-type(3) {
    width:75%;
    transition: all 0.1s linear;
}

.hamburger.active span:nth-of-type(1) {
    transform:translate(0px, 7px) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
    width:0;
    opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
    width: 100%;
    transform: translate(0px, -18px) rotate(45deg);
}



#main_content {
    width: 100%;
    min-height: 100vh;
}


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

.index-hero {
    width: 100%;
    min-height: 80vh;
    background-color: #eee;
}

.hero-ins {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 180px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-ins-left {
    width: 50%;
}

.hero-ins-left h2 {
    font-size: 2.8rem;
    line-height: 1.25;
    color: #042366;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-ins-left h2 span {
    display: block;
}

.hero-ins-left p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    width: 65%;
}

.btn-wrap {
    width: 100%
}

.btn-wrap a {
    width: auto;
    height: 45px;
    padding: 0 25px;
    line-height: 45px;
    display: inline-block;
    border-radius: 10px;
    margin-right: 10px;
}

a.green-btn {
    background-color: teal;
    color: #fff;
}

a.transparent-btn {
    border: solid 1px #042366;
    color:#042366;
}

a.blue-btn {
    background-color: #042366;
    color: #fff;
}

a.white-btn {
    background-color: #fff;
    color: #042366;
}

a.white-transparent-btn {
    background-color: transparent;
    color: #fff;
    border: solid 1px #fff;
}

.hero-ins-right {
    width: 50%;
}

.hero-ins-right img {
    width: 100%;
}

.sect2 {
    width: 100%;
    padding: 80px 0 50px;
}

.sect2-ins {
    width: 60%;
}

.sect2-ins h3 {
    font-size: 2.2rem;
    line-height: 1.25;
    color: teal;
    font-weight: 500;
}


.sect3 {
    width: 100%;
    height: auto;
    padding: 70px 0;
}

.features-wrap {
    width: 100%;
    height: auto;;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    width: calc(50% - 20px);
    height: auto;
    margin-bottom: 40px;
}

.feature h2 {
    font-size: 2.2rem;
    color: #042366;
    line-height: 1.25;
    margin-bottom: 20px;
}

.feature p {
    font-size: 1.1rem;
}

.feature.bordered-box {
    border: solid 1px teal;
    padding: 30px;
    border-radius: 7px;
}

.feature.bordered-box h3 {
    color: teal;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature.bordered-box p {
    font-size: 1rem;
    color: #333;
}

.feature.bordered-box .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}

.sect4 {
    width: 100%;
    height: auto;
    padding: 50px 0;
}

.blue-box {
    width: 100%;
    height: auto;
    padding: 50px 50px;
    background-color: #042366;
    background-image: url('../images/logo-mark.png'), url('../images/Ellipse2.png');
    background-position: right, calc(100% - 80px) center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
}

.blue-box-left {
    width: 43%;
}

.blue-box-left h3 {
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.bold-text {
    font-weight: 700 !important;
}

.blue-box-right {
    width: 40%;
}

.sect5 {
    padding: 50px 0;
    width: 100%;
    height: auto;
}

.partners-wrap {
    width: 80%;
    height: auto;
    margin: 0 auto;
}

.partners-wrap h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: #333;
}

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

.part-itm {
    width: auto;
    height: 40px;
}

.part-itm img {
    max-height: 100%;
    filter:grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all 0.3s linear;
}

.part-itm:hover img {
    filter: none;
    transform: translateY(-10px);
}

.testimonials {
    background-color: teal;
    min-height: 50vh;
    border-radius: 20px;
    padding: 50px;
    background-image: url('../images/mask-group.png');
    background-repeat: no-repeat;
    background-size: 50%;
}

.testimonial-title {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.testimonial-title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.testimonial-content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.testimonial-itm {
    width: 30%;
    min-height: 280px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-bottom: 30px;
}

.testimonial-itm p {
    color: #fff;
    line-height: 1.3;
}

.testimonial-itm p.name {
    font-weight: 800;
}

.testimonial-itm p.position {
    font-size: 0.9rem;
}



.gradient-bg1 {
    background: linear-gradient(135deg, #008080 20%, #032366);
}

.gradient-bg2 {
    background: linear-gradient(45deg, #008080 50%, #032366);
}

.gradient-bg3 {
    background: linear-gradient(225deg, #032366 20%, #008080);
}

.gradient-bg4 {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 20%, rgba(0, 35, 102, 0.2));
}

.gray-bg {
    background-color: #fafafc;
}

.green-bg {
    background-color: rgba(0, 128, 128, 0.1);
}


.alt-hero {
    width: 100%;
    min-height: 60vh;
}

.alt-hero-ins {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 180px 0 80px;
}

.alt-hero-ins h1 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.alt-hero-ins h2 {
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 400 !important;
    width: 90%;
}

.alt-hero-ins h2 span {
    font-weight: 700 !important;
}

.about-sect2 {
    width: 100%;
    height: auto;
    padding: 100px 0 50px;
}

.abt-sect2-ins {
    width: 100%;
    height: auto;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sect2-ins-img {
    width: 46%;
    height: auto;
}

.sect2-ins-txt {
    width: 46%;
    height: auto;
}

.sect2-ins-txt h3 {
    font-size: 2.75rem;
}

.white-txt {
    color: #fff;
}

.green-txt {
    color: #008080;
}

.blue-txt {
    color: #032366;
}

.about-sect3 {
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.section-header {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.section-header h3 {
    width: auto;
    font-size: 2.75rem;
}

.section-header p {
    width: 50%;
}

.about-team {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.team-itm {
    width: 30%;
    margin: 20px 3% 20px 0;
    min-height: 400px;
    border: solid 1px #ccc;
    border-radius: 7px;
    padding: 20px;
    background-color: #fff;
}

.team-itm-img {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 7px;
    overflow: hidden;
    background-color: #eee;
    margin-bottom: 20px;
    position: relative;
}

.team-itm-img img {
    position: absolute;
    width: 100%;
}

.team-itm-cont {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.team-itm-cont h4 {
    margin-bottom: 10px;
    line-height: 1;
    color: #008080;
}

.team-itm-cont p {
    margin-bottom: 0;
}

.team-itm-cont .lab {
    font-size: 1.8rem;
    color: transparent;
    -webkit-text-stroke: 1px #008080;  
}

.alt-sect2 {
    width: 100%;
    height: auto;
    padding: 100px 0 70px;
}

.why-us-cont h3 {
    font-size: 2.7rem;
    margin-bottom: 30px;
}

.why-us-cont p {
    width: 80%;
}

.why-us-cont img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.why-us-cont ul {
    margin: 0 0 20px 15px;
}

.alt-sect3 {
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.challenges {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.challenge-itm {
    width: calc(50% - 20px);
    min-height: 300px;
    padding: 40px;
    margin-bottom: 40px;
}

.challenge-itm .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.challenge-itm h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.blue-box2 {
    background-color: #032366;
    border-radius: 7px;
}

.flex-align-center {
    display: flex;
    align-items: center;
}



.sect6 {
    width: 100%;
    height: auto;
    padding: 80px 0 70px;
}

.cta {
    width: 100%;
    height: auto;
    text-align: center;
}

.cta h3 {
    font-size: 2.75rem;
}

.cta p {
    width: 60%;
    margin: 15px auto;
}

.faq-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.faq-itm {
    width: calc(50% - 15px);
    min-height: 80px;
    border-radius: 5px;
    background-color: rgba(0, 35, 102, 0.1);
    padding: 15px;
    margin-bottom: 30px;
}

.question {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.question .las {
    font-size: 1.5rem;
    margin-right: 7px;
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.question p {
    font-size: 1.1rem;
    line-height: 25px;
    min-height: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0;
}

.answer {
    width: 100%;
    padding-left: 30px;
}

.answer p {
    font-weight: 400;
    font-size: 1rem;
}


.contact-form {
    width: 100%;
}

.form-itm {
    width: 100%;
    min-height: 60px;
    margin-bottom: 20px;
}

.form-itm label {
    font-size: 1.2rem;
}

.textfield {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: solid 1px #666;
}

.textarea {
    width: 100%;
    min-height: 140px;
    border: solid 1px #666;
    padding: 10px;
}

.contact-info {
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.contact-info h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-info-itm {
    width: 100%;
    min-height: 40px;
    margin-bottom: 25px;
}

.info-tm-label {
    color: #999;
    text-transform: uppercase;
    font-size: 0.9rem;
}

#form_response {
    display: block;
    width: 100%;
    height: auto;
}

#form_response p {
    font-size: 13px;
    line-height: 1.5;
}

#form_response.success_msg {
    padding: 15px;
    border-radius: 5px;
    border: rgba(2, 121, 121, 0.6) solid 1px;
    background-color: rgba(0, 128, 128, 0.25);
    margin-bottom: 20px;
}

#form_response.error_msg {
    padding: 15px;
    border-radius: 5px;
    border: rgba(128, 0, 0, 0.6) solid 1px;
    background-color: rgba(128, 0, 0, 0.2);
    margin-bottom: 20px;
}



footer {
    width: 100%;
    min-height: 300px;
    background-color: #fff;
    padding: 80px 0 50px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100%;
}

p.footer-text {
    width: 80%;
    color: #666;
    font-size: 0.9rem;
}

.footer-sect {
    width: 100%;
}

.footer-sect h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-sect ul {
    list-style-type: none;
    padding-left: 10px;
}

.footer-sect ul li a {
    font-size: 0.9rem;
    color: #666;
}

.social {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.social img {
    height: 20px;
    margin-right: 15px;
}



/* Cookie banner styles */
.cookie-banner {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    z-index: 1000;
  }
  
  .cookie-banner p {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 15px;
  }
  
  .cookie-banner a {
    color: teal; /* Optional: make the link stand out */
  }
  
  .cookie-banner button {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
  }

  button.accept-btn {
    background-color: teal;
    color: #000;
  }

  button.customize-btn {
    background-color: #032366;
    color: #fff;
  }

  /* Cookie Modal Styles */
.cookie-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
  }
  
  .modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 5px;
    color: #000;
  }

  .modal-content h3 {
    margin-bottom: 30px;
  }

  .modal-content label {
    font-size: 1.1rem;
  }

  .modal-content .form-itm {
    height: 30px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }


  /***********************/
  /**** Sign up styles ***/

  .mainAppWrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
  }
  
  .leftSectionWrap {
    width: 33%;
    height: 100vh;
    padding: 70px 50px 70px;
    background: linear-gradient(
      180deg, 
      rgba(0,35,102,1) 20%, 
      rgb(3,42,114)
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
  }
  
  .authLogo {
    width: 200px;
  }
  
  .authLogo img {
    max-width: 100%;
  }
  
  .authBanner {
    width: 100%;
  }
  
  .authText {
    width: 100%;
    text-align: center;
    color: #fff;
  }
  
  
  .authText h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .rightSectionWrap {
    width: 67%;
    min-height: 100vh;
    position: absolute;
    left: 33%
  }
  
  .authRight {
    width: 100%;
    padding: 70px 13.5% 50px;
  }

  .mobile_top {
    display: none;
  }

  .mobile_logo {
    width: 220px;
  }
  
  .pageTitle {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .pageTitle h1 {
    color: teal;
    margin-bottom: 10px;
    font-size: 2.5rem;
  }
  
  .pageTitle p {
    font-size: 1rem;
  }
  
  .signUpForm {
    width: 100%;
  }
  
  .loginForm {
    width: 60%;
    margin: 70px auto 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
  }
  
  form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .formItem {
    min-height: 60px;
    margin-bottom: 20px;
    width: 48%;
  }
  
  .formItem.full_width {
    min-height: 60px;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .loginForm .formItem {
    width: 100%;
  }
  
  .formItem label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #333;
  }
  
  .formItem input {
    width: 100%;
    height: 45px;
    padding: 10px;
    border-radius: 4px;
    border: solid 1px teal;
  }
  
  .formItem select {
    width: 100%;
    height: 45px;
    padding: 10px;
    border-radius: 4px;
    border: solid 1px teal;
  }
  
  .formItem span {
    color: rgb(143, 2, 2);
    font-size: 0.85rem;
  }
  
  .authButton {
    width: 90%;
    height: 55px;
    color: #fff;
    border-radius: 10px;
    background-color: teal;
    margin: 15px auto;
    border: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
  }
  
  .loginForm .authButton {
    width: 100%;
  }
  
  .modal .authButton {
    width: 100%;
  }
  
  .authButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  p.authFormText {
    width: 70%;
    margin: 15px auto;
    font-size: 0.9rem;
    text-align: center;
  }
  
  .authFormText a {
    color: teal;
    text-decoration: none;
  }
  
  .authFormText a:hover {
    text-decoration: underline;
  }
  
  .color_teal {
    color: teal;
  }
  
  .OTPForm {
    width: 100%;
    padding: 40px;
  }
  
  .OTPForm .authButton {
    margin: 15px 0;
    width: 60%;
  }
  
  .otpContainer {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .otpInput {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .otpInput:focus {
    border-color: #007bff;
  }
  
  .errorMessage {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .resendText {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }
  
  .resendText span {
    color: #007bff;
    font-weight: bold;
  }
  
  .formErrorMsg {
    width: 100%;
    height: auto;
  }
  
  .formErrorMsg .error {
    color: red;
    font-size: 12px;
  }
  
  .inputError {
    border-color: red;
  }
  
  .errorMsg {
    color: red;
    font-size: 12px;
    margin-top: 5px;
  }
  
  .passwordWrapper {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .passwordWrapper input {
    flex: 1;
    padding-right: 40px; /* Ensure space for the button */
  }
  
  .togglePassword {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
  }

.countdown-wrap {
    width: 90%;
    margin: 0 auto 50px;
}

.countdown-title {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.countdown-cont {
    width: auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    background: rgba(0,35,102,1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 140px;
    color: white;
}

.number {
    font-size:5rem;
    font-weight: 500;
}

.label {
    font-size: 13px;
    text-transform: uppercase;
}