:root {
  --default-font: 'DM Sans';
  --heading-font: 'DM Sans';
  --nav-font: 'DM Sans';
}

/* Global Colors */
:root { 
  --background-color: #ffffff; /* Background color*/
  --default-color: #444444; /* Default color */
  --heading-color: #ffffff; /* Color for headings, subheadings and title*/
  --accent-color: #0285FE; /* Accent color*/
  --surface-color: #ffffff; /*surface color*/
  --contrast-color: #ffffff; /* Contrast color */
}

/* Nav Menu Colors*/
:root {
  --nav-color: #ffffff;  /* default color*/
  --nav-hover-color: #0285FE; /* main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /*background color for dropdown items  */
  --nav-dropdown-color: #444444; /* navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0285FE; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

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);
}
p {
   color: var(--heading-color);
   margin-top: 1rem;
}
::marker {
    color: #0285FE;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
   margin-right: 15px !important;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .cta-btn, .header .cta-btn:focus {
    color: var(--contrast-color);
    font-size: 16px;
    border: 1px solid var(--accent-color);
    padding: 5px 20px;
    margin: 0;
    margin: 10px 0px;
    border-radius: 50px;
    transition: 0.3s;
}
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(40, 40, 40, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    font-size: 16px;
    padding: 0 5px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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;
  }

  .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);
  }
  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: left;
  padding-top: 40px;
  position: relative;
}
.copyright ul li {
    display: inline-block !important;
}
.copyright p {
    margin: 0px!important;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    display: block;
     list-style: none;
    font-size: 18px;
     margin-bottom: 12px;
    font-weight: 400;
}
.footer ul li a {
    color: #fff!important;
}
.quick {
    padding-left: 12%;
}
.footer-brand img {
    width: 41%;
    max-height: 36px;
}
        
        .footer-brand span {
            color: #0d6efd;
        }
        
        .footer-text {
            color: #fff;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #0d6efd;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #0d6efd;
            transform: translateX(5px);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            color: #adb5bd;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: #0d6efd;
            margin-right: 10px;
            font-size: 18px;
            margin-top: 3px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #2c3034;
            color: #fff;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background-color: #0d6efd;
            transform: translateY(-3px);
        }
        
        .copyright {
               margin-top: 40px;
    padding: 20px 0px;
    background: #4d4d4d;
    border-top: 1px solid #2c3034;
    color: #6c757d;
    text-align: center;
        }
        
        @media (max-width: 768px) {
            .footer {
                text-align: center;
            }
            
            .footer-heading:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-info li {
                justify-content: center;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 57px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 400;
}

.hero p {
  color:#fff;
  margin: 10px 0 20px 0;
  font-size: 16px;
  font-weight: 400;
}

 .btn-primary {
      background-color:#0285FE;
      border: none;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background-color: #0285FE;
    }

    .btn-outline-light {
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 500;
    }
.hero h2 span {
      color: #0dcaf0;  
 }
 .hero h2 b {
      color: #0285FE;  
 }
 .scroll-down {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 2rem;
      color: #fff;
      z-index: 3;
      animation: bounce 2s infinite;
      cursor: pointer;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40% {
        transform: translateX(-50%) translateY(-10px);
      }
      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
  .header .cta-btn {
        order: 0!important;
        margin: 3px!important;
        padding: 5px 15px!important;
    }
 .mobile-nav-active .navmenu>ul {
        display: block !important;
    }
}

.call-to-action {
  padding: 50px 0;
  position: relative;
  clip-path: inset(0);
  text-align: center;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: #00407c70;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}
.features-section {
    padding: 50px 0px;
    text-align: center;
    background: #000;
}

    .features-section h2 {
     font-size: 42px;
    font-weight: 500;
      margin-bottom: 15px;
    }

    .features-section p.lead {
         font-size: 16px;
    color: #fff;
      margin-bottom: 50px;
    }

    .feature-card {
      background: #93939385;
      border: none;
      text-align: left;
      border-radius: 15px;
      padding: 30px 20px;
      color: #fff;
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
    font-size: 24px;
    line-height: 50px;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(to right, #02D1FE, #6EB5C5);
    margin-bottom: 15px;
}
.cta-card .feature-icon {
    margin: 0 auto;
}

    .feature-card h5 {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .cta-card {
    background: #93939385;
    border-radius: 15px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 80%;
    margin-top: 40px;
 }

    .cta-card h5 {
      margin-bottom: 15px;
      font-size: 1.4rem;
    }
     .trust-section { 
      background: #000;
     }
 .trust-heading {
      position: relative;
      padding: 40px 20px;
      border-radius: 15px;
      background: #000;
      overflow: hidden;
    }
   .trust-content {
    position: relative;
    z-index: 2;
    padding: 30px 15px;
    background: #647f7f1a;
    box-shadow: rgb(125 157 157 / 0%) 0px 1px 0px, rgb(22 25 25 / 26%) 0px 0px 8px;
  }

    .trust-section h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

    .trust-section p {
      color:#fff;
      font-size: 16px;
    }

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    min-height: 275px;
    width: 100%;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.trust-card img {
  width: 80px;
  opacity: 0.9;
}

.trust-card h5 {
    font-size: 20px;
    padding: 10px;
    font-weight: 500;
}

.trust-card p {
  font-size: 16px;
  color: #fff;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.1); /* hover effect */
  transform: translateY(-5px);
}
    .faq-section {
  padding: 40px 20px;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Images */
.faq-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.faq-images img.img3 {
    position: relative;
    margin-top: -215px;
}

.faq-images img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.faq-images img:nth-child(1) {
  grid-column: span 1;
}

.faq-content h2 {
   font-size: 42px;
    margin-bottom: 20px;
}

.faq-item {
    padding: 15px 18px;
    border-top: 0.5px solid #fff;
    border-bottom: 0.5px solid #fff;
    transition: 0.3s;
}

.faq-item h3 {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin: 0;
  font-size: 20px;
}

.faq-item p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.faq-item.active p {
  display: block;
}

.faq-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.faq-btn:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-images {
    grid-template-columns: 1fr;
  }
}

.ellipse-bg {
       position: absolute;
    margin-top: 5%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(2 133 254 / 38%), rgb(2 133 254 / 53%), #02FFF0 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}
.faq-content {
    z-index: 2;
}
.ellipse-bgtwo {
    position: absolute;
    width: 50%;
    right: 0px;
    height: 80%;
    background: radial-gradient(circle at center, rgb(2 133 254 / 38%), rgb(2 133 254 / 53%), #02FFF0 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}
.ellipse-bgthree {
    position: absolute;
    width: 20%;
    left:-20px;
    height: 100%;
    background: radial-gradient(circle at center, rgb(2 133 254 / 38%), rgb(2 133 254 / 53%), #02FFF0 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 4;
}
 .about-header {
      background: linear-gradient(rgba(11,15,22,0.7), rgba(11,15,22,0.7)), url('../img/aboutb.jpg') center/cover;
      padding: 200px 0;
      text-align: center;
    }
   .about-header.call {
      background: linear-gradient(rgba(11,15,22,0.7), rgba(11,15,22,0.7)), url('../img/contactb.jpg') center/cover;
      padding: 200px 0;
      text-align: center;
    }
    .about-header h1 {
          color: #0285FE;
    font-size: 42px;
    font-weight: bold;
    }
    .about-header p {
          color: #fff;
    max-width: 700px;
    margin: 15px auto 0;
    }
    .mission .section-title {
          color: #0dcaf0;
    padding: 0px;
    font-size: 42px;
    margin-bottom: 20px;
    }
    .mission {
    background: #000;
 }
  .mission p {
   color: #fff;
 }
    .card {
          background-color: #93939385;
    border: none;
    border-radius: 12px;
    min-height: 235px;
    transition: 0.3s;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0px 6px 20px rgba(0,199,183,0.2);
    }
    .card i {
          font-size: 24px;
    line-height: 50px;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(to right, #02D1FE, #6EB5C5);
    margin-bottom: 15px;
    }
    .contact-section {
      background: #000;
    }
     .contact-info h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #1ecbe1;
    }
    .contact-info p {
      margin: 0;
      color: #bbb;
    }
    .contact-card {
          background: #93939385;
    width: 60%;
    margin: 0 auto !important;
    border: none;
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    transition: 0.3s;
    }
    .contact-card:hover {
      background: #93939385;
      transform: translateY(-5px);
    }
    .form-control, .btn {
      border-radius: 8px;
    }
    .btn-custom {
      background: #1ecbe1;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 20px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background: #17aabf;
    }
 @media only screen and (max-width: 768px) and (min-width:0px) {
  .trust-card {
   width: 100%!important;
}
 #loginModal .modal-dialog {
    margin-top: 0px!important;
}
.faq-images img.img3 {
    margin-top: 0px!important;
}
.cta-card {
    width: 100%!important;
}
.hero .d-flex {
    display: block!important;
}
.hero .btn-primary {
   margin-bottom: 15px!important;
  }
.header .cta-btn {
       width: 40%!important;
    }
}      

 #loginModal {
    overflow: hidden;
  }
  #loginModal .tab-content {
    overflow-y: scroll;
    height: 300px;
    padding: 5px;
}
   #loginModal .modal-content {
    border-radius: 15px;
    padding: 20px;
    max-width: 40rem;
    background:cadetblue;
    width: auto;
    height: auto;
    max-height: 100%;
}
 #loginModal .modal-dialog {
    margin-top: 100px;
}
     #loginModal .nav-tabs {
      border-bottom: none;
    }
     #loginModal .nav-tabs .nav-link {
      border: none;
      text-decoration: underline;
      color: #fff;
      font-weight: 500;
    }
    #loginModal .nav-tabs .nav-link.active {
      font-weight: bold;
      text-decoration:none;
      border-bottom: 2px solid black;
      color: black;
    }
    #loginModal .btn-black {
      background-color: black;
      color: white;
      border-radius: 5px;
      width: 100%;
    }
    #loginModal .btn-black:hover {
      background-color: #333;
      color: white;
    }
     #loginModal .btn-outline-dark {
      width: 100%;
      margin-top: 10px;
    }
     #loginModal .small-text {
      font-size: 0.85rem;
      color: #fff;
    }
    #loginModal a{
      color: #000;
    }
    #loginModal h5 {
    color: #000;
}