

:root {
  --default-font: 'Be Vietnam Pro', sans-serif;
  --heading-font: 'Be Vietnam Pro', sans-serif;
  --nav-font: 'Be Vietnam Pro', sans-serif;
  --body-font-weight: 400;
}



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #F8F9FB; /* Background color for the entire website, including individual sections */
  --default-color: #0a0a0a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0B3558; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0058D3; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0058D3; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0058D3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0058D3;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.header .header-container {
  border-radius: 0;
  padding: 10px 25px;
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Scrolled state styles */
.scrolled .header {
  background-color: rgb(255, 255, 255); /* More transparent white */
  backdrop-filter: blur(10px); /* This creates the blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .logo h1 {
  color: #2d405f;
}

.scrolled .navmenu ul li a,
.scrolled .navmenu ul li a:focus {
  color: #2d405f;
}

.scrolled .navmenu ul li:hover > a,
.scrolled .navmenu .active,
.scrolled .navmenu .active:focus {
  color: var(--accent-color);
}

.scrolled .mobile-nav-toggle {
  color: #2d405f;
}

/* Logo styles */
.header .logo {
  line-height: 1;
  padding-left: 5px;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 44px;
  margin-right: 0px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--default-color);
  transition: color 0.3s;
}

/* Button styles */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  border: none;
  cursor: pointer;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
}


.header .bbtn-getstarted,
.header .bbtn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 12px 20px 8px 20px;
  margin: 0 0 0 0px;
  border-radius: 7px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--nav-font);
}

.header .bbtn-getstarted:hover,
.header .bbtn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}




/* Desktop Navigation */
@media (min-width: 1210px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  /* Dropdown menu */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1210px) {
  .mobile-nav-toggle {
    color: white;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #2d405f;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  
  /* Scrolled state for mobile */
  .scrolled .mobile-nav-toggle {
    color: #2d405f;
  }
  
  .scrolled.mobile-nav-active .mobile-nav-toggle {
    color: #2d405f;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .header {
    padding-top: 0;
  }

  .header .header-container {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 -10px 0 0;
    padding: 6px 15px;
    margin-top: 5px;


  }

  .navmenu {
    order: 3;
  }
}
  .ccustom-section {
    padding: 0px 40px;
    padding-top: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    border-top: 3px solid rgb(7, 7, 77);
    margin-left: -405px;
    padding-bottom: 20px;
  }

 
  /* Mobile view adjustments */
  @media (max-width: 768px) {
   
    .ccustom-section {
      padding: 0px 0px;
      background-color: #ffffff00;
      border-radius: 20px;
      border-top: 3px solid rgba(255, 255, 255, 0);
      margin-left: 0px;
      margin-top: -42px;
    }
  }


  .login-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0a1ca5;
    font-size: 16px;
    margin-right: 8px;
    font-family: sans-serif;
  }

  .login-btn i {
    color: #007bff; /* Bootstrap blue */
    font-size: 20px;
    margin-right: 8px;
  }

  .login-btn:hover {
    text-decoration: underline;
  }

  /* Hide button on screens smaller than 500px */
  @media (max-width: 499px) {
    .login-btn {
      display: none;
    }
  }

  .custom-section {
    padding: 0px 40px;
    padding-top: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    border-top: 3px  solid rgb(7, 7, 77);
    margin-left: -282px;
    padding-bottom: 15px;

  }

  .custom-container {
    max-width: 1000px;
    min-width: 1200px;
    margin: auto;
    
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .custom-column {
    width: 30%;
  }

  .custom-heading {
    font-weight: 600;
    background-color: #f3f4f6;
    color: #374151;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
    margin-left: -5px;
  }

  .custom-heading.custom-active {
    background-color: #e5e7eb;
  }

  .custom-item {
    margin-bottom: 5px;
  }

  .custom-title {
    display: inline-block;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    margin-left: -20px;
  }

  .custom-title:hover {
    text-decoration: underline;
  }

  .custom-item p {
    color: #6b7280;
    font-size: 11px;
    margin: -4px 0 0;
  }

  .custom-see-all {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
  }

  .custom-see-all:hover {
    text-decoration: underline;
  }
  .custom-column img {
  max-width: 300px;
  height: auto;
  border-radius: 10px; /* optional rounded corners */
  display: block;
}

/* Hide image on mobile view */
@media (max-width: 768px) {
  .custom-column img {
    display: none;
  }
  .custom-section {
    padding: 0px 0px;
    background-color: #ffffff00;
    border-radius: 20px;
    border-top: 3px  solid rgba(255, 255, 255, 0);
    margin-left: 0px;
    margin-top: -42px;
  }
  .custom-title {
    margin-top: -25px;
  }
}

  @media (max-width: 910px) {
    .custom-container {
      flex-direction: column;
    }

    .custom-column {
      width: 100%;
    }

    .custom-item p {
      color: #6b7280;
    }
    .custom-item {
    margin-bottom: 5px;
    padding: 10px;
    max-width: 25%;
  }
  }

/*--------------------------------------------------------------
# Hero Section end
--------------------------------------------------------------*/






.demoSplitWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: 107.6vh;
  max-height: 107.6vh;
  overflow: hidden;
}

.demoFormSide{
  flex: 1 1 45%;
  padding: 40px;
  box-sizing: border-box;
}
.demoTestimonialSide {
  flex: 1 1 55%;
  padding: 40px;
  box-sizing: border-box;
}

.demoFormSide {
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demoTestimonialSide {
  background-image: linear-gradient(45deg, #145af9 0%, #000000 60%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonialCard img {
  max-width: 75%;
  height: auto;
  margin-top: 40px;
  object-fit: contain;
  margin-left: 100px;
}

.sec1a2b3c {
  width: 100%;
  display: flex;
  justify-content: center;
}

.boxWrap445566 {
  width: 100%;
  max-width: 720px;
  padding: 40px;
  margin-top: 50px;
  text-align: center;
}

.imgWrap4d5e6f {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-top: -20px;

}

.imgWrap4d5e6f img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.imgDividerHex {
  width: 30px;
  height: 2px;
  background-color: #ccc;
  border-radius: 1px;
}

.h1aabbcc {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0;
  color: #00384f;
}

.p778899 {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.form9a8b7c {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.grp5d6e7f {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ctrl123abc {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lblabc123 {
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}

.inpt456def,
.sel789abc {
  padding: 7px 10px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.inpt456def:focus,
.sel789abc:focus {
  border-color: #00b2e2;
  box-shadow: 0 0 0 3px rgba(0, 178, 226, 0.2);
  outline: none;
}

.error998877 {
  border-color: red !important;
}

.txtErrore5e5e5 {
  color: red;
  font-size: 0.85rem;
  margin-top: 4px;
}

.btn00ffee {
  background-color: #131f50;
  color: white;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 178, 226, 0.3);
}

.btn00ffee:hover {
  background-color: #009ac2;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 178, 226, 0.4);
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .h1aabbcc {
    font-size: 1.5rem;
  }

  .p778899 {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .demoSplitWrapper {
    flex-direction: column;
  }

  .demoFormSide,
  .demoTestimonialSide {
    flex: none;
    width: 100%;
    padding: 30px 20px;
  }

  .testimonialCard img {
    margin-left: 0;
    max-width: 100%;
  }

  .boxWrap445566 {
    padding: 20px;
    margin-top: 120px;
  }
}

@media (max-width: 640px) {
  .grp5d6e7f {
    flex-direction: column;
    gap: 10px;
  }

  .ctrl123abc {
    flex: 1 1 100%;
  }

  .btn00ffee {
    font-size: 0.95rem;
    padding: 12px;
  }

  .imgWrap4d5e6f{
    margin-top: 40px;

  }


  .imgWrap4d5e6f img {
    
    width: 48px;
    height: 48px;
  }

  .h1aabbcc {
    font-size: 1.3rem;
  }
}




@media (max-width: 480px) {
  .boxWrap445566 {
    margin-top: 80px;
    padding: 16px;
  }

  .form9a8b7c {
    gap: 12px;
  }

  .grp5d6e7f {
    gap: 8px;
  }

  .lblabc123 {
    font-size: 0.95rem;
  }

  .inpt456def,
  .sel789abc {
    font-size: 0.95rem;
    padding: 6px 9px;
  }

  .btn00ffee {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .testimonialCard img {
    max-width: 90%;
    margin-top: 20px;
  }

  .demoFormSide,
  .demoTestimonialSide {
    padding: 20px 16px;
  }
}

@media (max-width: 360px) {
  .h1aabbcc {
    font-size: 1.15rem;
  }

  .p778899 {
    font-size: 0.85rem;
  }

  .btn00ffee {
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  .inpt456def,
  .sel789abc {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  .lblabc123 {
    font-size: 0.85rem;
  }
}




/* ADDITIONAL RESPONSIVE FIXES FOR FULL MOBILE USABILITY */

/* Allow vertical scrolling on mobile */


@media (max-width: 900px) {
  .demoSplitWrapper {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }

  .demoFormSide,
  .demoTestimonialSide {
    flex: none;
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }

  .testimonialCard img {
    margin-left: 0;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 20px;
  }

  .boxWrap445566 {
    padding: 20px;
    margin-top: 80px;
  }
}

@media (max-width: 640px) {
  .grp5d6e7f {
    flex-direction: column;
    gap: 10px;
  }

  .ctrl123abc {
    flex: 1 1 100%;
  }

  .btn00ffee {
    font-size: 0.95rem;
    padding: 12px;
  }

  .imgWrap4d5e6f{
    margin-top: 40px;
  }

  .imgWrap4d5e6f img {
    width: 48px;
    height: 48px;
  }

  .h1aabbcc {
    margin-top: 70px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .boxWrap445566 {
    margin-top: 60px;
    padding: 16px;
  }

  .form9a8b7c {
    gap: 12px;
  }

  .grp5d6e7f {
    gap: 8px;
  }

  .lblabc123 {
    font-size: 0.95rem;
  }

  .inpt456def,
  .sel789abc {
    font-size: 0.95rem;
    padding: 6px 9px;
  }

  .btn00ffee {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .testimonialCard img {
    max-width: 90%;
    margin-top: 20px;
  }

  .demoFormSide,
  .demoTestimonialSide {
    padding: 20px 16px;
  }
}

@media (max-width: 360px) {
  .h1aabbcc {
    font-size: 1.15rem;
  }

  .p778899 {
    font-size: 0.85rem;
  }

  .btn00ffee {
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  .inpt456def,
  .sel789abc {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  .lblabc123 {
    font-size: 0.85rem;
  }
}




