
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary-color: #035195;
    --secondary-color: #314259;
    --background-color: #ffffff;
    --highlight-color: #f26c4f;
    --highlight-bg-color: #ffffff;
    --transition-ease: 0.3s ease-in-out;
  }
  
  
  html,body {
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    background-color: var(--background-color);
    color: var(--secondary-color);
    line-height: 1.6;
  }
  
  * {
    margin: 0px;
    padding: 0px;
   
  
  }
  
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    color: #314259;
  
  
   }
   
   P{
    text-align: justify;
  
   }
  a{
    font-style: none;
    text-decoration: none;
  }
  
  
  
  
  /*--------------------------------------------------------------
  #wHATSAPP button
  --------------------------------------------------------------*/
  .Whatsapp {
    position: fixed;
    right: 15px;
    bottom:80px;
    font-size:50px;
    z-index: 996;
  
  }
  
  
  .Whatsapp {
    color:#7173e7;
  }
  
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #5f61f2;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #5f61f2;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    background-color: #f1f1f1;
    padding:0;
    
    
  
  }
  
  
  #header .logo img {
   width:65px;
   height:65px;
   padding:5PX;
    
  }
  
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  
  .navbar {
    padding: 0;
    font-family: "Outfit", sans-serif;
    background-color: #ffffff; /* Optional background for navbar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 18px;
    color: #314259;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .navbar a .fa-solid {
    font-size: larger;
    margin-left: 8px;
    transition: color 0.3s ease;
  }
  
  /* .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #0073ff;
  } */
  
  .navbar a:hover .fa-solid {
    color: gray;
  }
  
  .navbar .getstarted {
    padding: 6px 25px;
    margin-left: 30px;
    border-radius: 50px;
    color: #314259;
    border: 2px solid #314259;
    transition: all 0.3s ease;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus {
    background-color: #314259;
    color: #fff;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 2px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, top 0.3s ease;
    border-radius: 6px;
    transform: translateX(0%);
  }
  /* 
  .navbar .dropdown ul {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
  } */
  
  .navbar .dropdown ul {
    min-width: 220px; /* Adjust based on content */
  }
  
  .navbar .dropdown ul li {
    min-width: 220px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    color: #314259;
    text-transform: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  /* .navbar .dropdown ul a:hover,
  .navbar .dropdown ul li:hover > a {
    background-color: #00ff2a;
    color: #ffffff;
  } */
  
  .navbar .dropdown ul a i {
    font-size: 14px;
    margin-left: 10px;
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 0px);
    opacity: 0;
    background-color: #f1f1f1; 
    visibility: hidden;
    transition: opacity 0.2s ease, left 0.3s ease;
  }
  
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul a {
    font-size: 14px;
    padding: 8px 16px;
    color: #000;
  
  }
  
  .navbar .dropdown .dropdown ul a:hover {
    background-color:#ffffff;
    color: #000000;
  }
  
  .navbar .dropdown ul  :hover{
    background-color: #f1f1f1;
    color: #000;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #434175;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width:1024px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }






  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(48, 47, 84, 0.9);
    transition: 0.3s;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #434175;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #0e0ea7;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #5a5af3;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  

  
  /*--------------------------------------------------------------
  # Desktop Navigation 
  --------------------------------------------------------------*/
  @media (min-width: 1124px) {

    .navbar {
      padding: 0;
      position: relative;
    }
  
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navbar li {
      position: relative;
    }
  
    .navbar>ul>li {
      white-space: nowrap;
    }
  
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      padding:14px;
      font-family: var(--font-secondary);
      font-size: 14px;
      font-weight: 400;
      color: rgba(var(--color-secondary-dark-rgb), 0.7);
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
  
    .navbar>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--color-primary);
      visibility: hidden;
      transition: all 0.3s ease-in-out 0s;
      transform: scaleX(0);
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
      visibility: visible;
      transform: scaleX(0.7);
    }
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      color: var(--color-primary);
    }
  
    .navbar .dropdown a:hover:before,
    .navbar .dropdown:hover>a:before,
    .navbar .dropdown .active:before {
      visibility: hidden;
    }
  
    .navbar .dropdown a:hover,
    .navbar .dropdown .active,
    .navbar .dropdown .active:focus,
    .navbar .dropdown:hover>a {
      color: var(--color-white);
    }
  
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 0 ;;
      top: 100%;
      margin: 0;
      padding: 0 0 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
  
    .navbar .dropdown ul li {
      min-width: 220px;
    }
  
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 400;
    }
  
    .navbar .dropdown ul a i {
      font-size: 12px;
    }
  
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
      color: var(--color-white);
      background: var(--color-primary);
    }
  
    .navbar .dropdown:hover>ul {
      opacity: 1;
      visibility: visible;
    }
  
    .navbar .megamenu {
      position: static;
    }
  
    .navbar .megamenu ul {
      right: 0;
      padding: 10px;
      display: flex;
    }
  
    .navbar .megamenu ul li {
      flex: 1;
    }
  
    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover>a {
      color: rgba(var(--color-white-rgb), 0.5);
      background: none;
    }
  
    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
      color: var(--color-white);
      background: var(--color-primary);
    }
  
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  .offcanvas {
    background-color: #f26c4f;
    height:60%;
  } 
  
  .offcanvas-body .navbar-nav {
    display: flex;
    align-items:start;
    color: #ffffff;
   text-align: left;
  
  
  }
  
  .offcanvas-body .navbar-nav a{
    padding:5px;
    font-size:20px;
    color: #ffffff;
  
  } 
  .offcanvas-body .navbar-nav .social-links {
    display:flex;
  }
  
  
  .offcanvas-body ul button{
    color: #314259;
    background-color: #f1f1f1;
    border: none ;
    text-align: center;
    border-radius:5px;
    padding:6px;
    width:350px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  
  .offcanvas-body  .social-links a i{
    font-size:16px;
    background: #53251b;
    color: #e6c9c3;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 10px 10px 0px;
    
  }
  
  .offcanvas-body .social-links a i:hover {
    background: #5a5af3;
    color: #fff;
    text-decoration: none;
  }
  
  .offcanvas-title{
    color: #fff;
  }
  .offcanvas-header {
    background-color: #f5613f;
  }
  
  .offcanvas .offcanvas-body  .dropdown{
    display: none;
  }
  
  
  
  @media (max-width:800px) {
  
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  
  
    .offcanvas .offcanvas-body  .dropdown{
      display: flex;
     
    }
  }
  
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/



  #hero {
    width: 100%;
    height: 80%;
    margin-top:4rem;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #5a5ce6, #4d4ebd);
    text-align: justify;
    font-family: "Outfit", sans-serif;
  }
  
  
  #hero-heading {
    font-family: 'Outfit',ans-serif;
    width: 100vw;
    font-size:65px;
    font-weight:bold;
    text-align: left;
    color: #f3ff92;
    text-transform: uppercase;
    line-height:80%;
    height:200px; /* Restrict to one line height */
  
  }
  
  #hero .LLP {
  width:11rem;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  }
  
  #hero h1 {
    margin: 0;
    width: 100%;
  }
  #hero p {
    color: #ffffff;
    text-align: justify;
    font-size:16px;
    /* margin-top: 15px; */
  
  }
  
  
  #hero a {
    color: #314259;
    text-align: center;
    font-size: 15px;
  font-weight: 600;
  }
  
  
  
  /* hero heading changing animation */
  .hero-heading {
    text-transform: uppercase;
    overflow: hidden; /* Prevent overflow */
    position: relative;
  }
  
  
  .hero-heading span {
    display: block;
    position: absolute;
    top: 100%; /* Start within the container */
    left: 0;
    width: 100%;
    opacity: 0; /* Start invisible */
    transform: translateY(100%); /* Positioned below the container */
    transition: transform 0.6s ease, opacity 0.2s ease; /* Smooth transition */
  }
  
  .hero-heading span.active {
    transform: translateY(-100%);/* Move blow the container */
    opacity: 1;/* Fully visible */
  }
  
  .hero-heading span.inactive {
    transform: translateY(0);/* Move into view */
    opacity: 0;/* Fade out */
  }
  
  #hero .hero-img {
  width: 40%;
  }
  
  #hero .hero-img img{
   width: 600px;
    height:400px;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    margin-left: 6rem;
  }
  
  
  
  @media (max-width: 1440px){
    #hero-heading {
      height:200px; /* Restrict to one line height */
      
    }
      #hero-heading{
      font-size:22px;
    }
    
  }
  @media (max-width: 1024px){
  
     #hero-heading {
      font-size: px;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 900px){
    #hero-heading {
      font-size: 2.5rem;
      line-height: 1.2; /* Restrict to one line height */
      margin-bottom: 1rem;
    }
    /* .hero-img img{
      display: none;
      
    } */
   
  }
  @media (max-width: 990px){
    /* .hero-img img{
      display: none;
  
    } */
  }
  
  @media (max-width:800px){
    #hero-heading {
      height:215px; /* Restrict to one line height */
    }
    #hero-heading{
      font-size:18px;
     
    }
    .hero-img img{
      display: none;
    }
   
   
   @media (max-width: 768px){
     .hero-heading {
       height:80px; /* Restrict to one line height */
       line-height:60%;
       font-size:20px;
     }
     #hero #hero-heading{
      height:100px;
     }
   
     .hero-img img{
       display: none;
     }
     #hero-heading span{
       font-size:65px;
     }
     #hero .LLP {
       width:11rem;
       display: flex;
       justify-content: center;
       }
   
   }
  
  }
  
  @media (max-width:500px){
    #hero-heading {
      height:220px; /* Restrict to one line height */
      font-size:10px;
      /* margin-bottom: 50px; */
    }
    #hero-heading span{
      font-size:55px;
      /* margin-bottom: 10px; */
    }
  
    .hero-img img{
      display: none;
    }
    
    #hero .LLP {
      /* width:11rem;
      display: flex;
      justify-content: center; */
      /* display: none; */
      }
  
  
  }
  
  @media (max-width: 320px){
    #hero-heading span{
      font-size:50px;
    }
  
    #hero-heading {
      height:200px; /* Restrict to one line height */
      font-size:8px;
      /* margin-bottom: 50px; */
    }
    #hero h1 {
   
    }
    /* #hero-heading{
      margin-bottom: 10px;
    } */
  }
  
   #CTA{
    width:200PX;
    height:50PX;
    border-radius:10PX;
    color: #ffffff;
    background: #f26c4f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
  
  }
  
  .CTA1{
    width:200PX;
    height:50PX;
    border-radius:10PX;
    color: #ffffff;
    background: #f26c4f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
  }
  
  
  /* Contact Pop-up Styles */
  :root {
    --popup-bg: #6988fe;
    --popup-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --phone-color: #ff5733;
    --whatsapp-color: #25d366;
    --close-color: #ff0000;
    --text-color: #fff;
    --animation-timing: 0.3s;
    --overlay-bg: rgba(0, 0, 0, 0.5);
  }
  
  /* Overlay Background */
  .contact-background {
    position: fixed;
    inset: 0;
    background-color: var(--overlay-bg);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    transition: opacity var(--animation-timing) ease,
                visibility var(--animation-timing) ease;
  }
  
  .contact-background.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Pop-up Container */
  .contact-pop {
    position: fixed;
    z-index: 2001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background-color: var(--popup-bg);
    backdrop-filter: blur(8px);
    width: min(90%, 22rem);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--popup-shadow);
    text-align: center;
    opacity: 0;
    transition: transform var(--animation-timing) ease-out,
                opacity var(--animation-timing) ease-out;
  }
  
  .active .contact-pop {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  
  /* Typography */
  .contact-pop h1 {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  .contact-pop p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 65ch;
    margin-inline: auto;
  }
  
  /* Button Container */
  .contact-btns {
    display: grid;
    gap: 0.75rem;
    width: 100%;
  }
  
  /* Button Styles */
  .contact-btn {
    background-color: transparent;
    color: var(--text-color);
    padding: 0.75rem 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: transform var(--animation-timing) ease,
                background-color var(--animation-timing) ease,
                opacity var(--animation-timing) ease;
  }
  
  .phone-call {
    background-color: var(--phone-color);
  }
  
  .contact-whatsapp {
    background-color: var(--whatsapp-color);
  }
  
  .contact-close-btn {
    background-color: var(--close-color);
  }
  
  /* Interactive States */
  .contact-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }
  
  .contact-btn:active {
    transform: translateY(1px);
  }
  
  .contact-btn:focus-visible {
    outline: 2px solid var(--text-color);
    outline-offset: 2px;
  }
  
  /* Utility Classes */
  .no-scroll {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px); /* Prevents layout shift */
  }
  
  /* Media Queries */
  @media (prefers-reduced-motion: reduce) {
    .contact-pop,
    .contact-background,
    .contact-btn {
      transition: none;
    }
  }
  
  @media (min-width: 768px) {
    .contact-pop {
      padding: 2rem;
    }
    
    .contact-btns {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }
  
  
  
  #hero .hero-img {
    display: flex;
    justify-content: baseline;
    align-items: center;
  
  }
  
  
  @media (max-width: 1440px) {
    #hero h1 {
      margin: 0 0 10px 0;
      font-family: 'Outfit',sans-serif;
      font-size:60px;
      font-weight:bold;
      color: #f3ff92;
      text-transform: uppercase;
      line-height:1;
    
    }
  }
  
  
  @media (max-width: 768px) {
    #hero h1 {
      margin: 0 0 10px 0;
      font-family: 'Outfit',sans-serif;
      font-size:34px;
      font-weight:bold;
      color: #f3ff92;
      text-transform: uppercase;
      line-height:1;
    
    }
  }
  
  @media (max-width: 400px){
    #hero h1{
      font-size:25px;
    }
    
  }
  /* Carousel item clint section */
  
  @keyframes slide {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  .logos-1{
    background-color: #f6f5f8;
  }
  
  
  
  .logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  
  }
  
  .logos:after {
    right: 0;
    background: #ffffff;
    color: #314259;
  }
  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
    
  }
  
  .logos-slide button {
   border-radius:50px;
   width:250px;
   height:35px;
   margin-left:50px;
  
  border: none;
   outline:none;
   background-color: #ffffff;
  }
  
  
  .logos-slide button a{
  color: #314259;
  font-size:18px;
  font-weight:500;
  font-family:"Outfit", sans-serif;
  text-transform: capitalize;
  display: flex;
      justify-content: space-between;
      align-items: center;
      justify-content: center;
  
  }
  
  
  /* Get Started Section
  --------------------------------*/
  
  
  #get-started .feature-block {
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  */
    padding: 10px ;
  }
  
  #get-started .feature-block img {
    height:110px;
    width:110px;
  padding:10px;
  transition: all 0.5s ease-in-out 0s;
  
  }
    
  #get-started .feature-block img:hover{
    transform: translateY(-10px)
  }
  
  
  #get-started .feature-block h4 a {
   font-size:14px;
  color: #314259;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  }
  
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
   padding:30PX;
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #f7fbfe;
  }
  
  .section-title {
    text-align: center;
    padding:20px;
  }
  
  
  /* Get Started Section
  --------------------------------*/
  #about {
    padding: 80px 0;
    width: 100%;
  background-color: #f1f1f1;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  
  
  .about-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* 
  .about-content {
    padding: 40px;
    border-radius: 20px;
  } */
  
  .about-title {
    font-family: "Outfit", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    position: relative;
    padding-bottom: 15px;
  }
  
  
  .about-content p {
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
  }
  
  .stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: #636e72;
  }
  
  @media (max-width: 992px) {
    .about-content {
      margin-top: 40px;
      padding: 30px;
    }
    
    .about-title {
      font-size: 2rem;
    }
    
    .stats-container {
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .stat-item {
      flex: 1 1 calc(50% - 20px);
    }
  }
  
  @media (max-width: 576px) {
    #about {
      padding: 40px 0;
    }
    
    .about-title {
      font-size: 1.8rem;
    }
    
    .about-content p {
      font-size: 1rem;
    }
    
    .stat-item {
      flex: 1 1 100%;
    }
  }
  
  
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height:40vh;
    
  }
  
  .services .icon-box::before {
    content: "";
    position: absolute;
    background: #5f61f2;
    right: -60px;
    bottom: -40px;
    width:50px;
    height: 50px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .services .icon-box:hover::before {
    background: #5f61f2;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  .services .icon-box:hover::before img {
    background: #5f61f2;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(134deg) brightness(98%) contrast(104%);
    
  }
  
  .services .icon {
    margin: 0 auto 20px auto;
    padding-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
  }
  
  .services .icon img {
    width:50px;
    height:50px;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color: #111;
  }
  
  .services .description {
    font-size: 15px;;
    text-align:left;
    width:100%;
  }
  
  .services .icon-box:hover .title,
  .services .icon-box:hover .description {
    color: #fff;
  }
  
  .services .icon-box:hover .icon {
    background: #fff;
  }
  
  .services .icon-box:hover .icon i {
    color: #3498db;
  }
  
  
   /******* BRAND ****** //////// */
  
  #brand1{
    position: relative;
    top:-40px;
    display: flex;
    justify-content: space-between;
  }
  #brand img{
    width:80PX;
    height:80PX;
  }
  
  .content{
    font-size:30PX;
  }
  
  
  @media screen and (max-width: 768px) {
   
    .services .icon-box {
      padding: 30px;
      background: #fff;
      box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    }
    
  }
  
    @media screen and (min-width:900px) {
   
  
      .services .icon-box {
        padding: 20px;
        position: relative;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        z-index: 0;
        height:42vh;
        
      }
    }
  
  
      @media screen and (min-width:1200px) {
  
        .services .icon-box {
          padding: 20px;
          position: relative;
          overflow: hidden;
          background: #fff;
          box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
          transition: all 0.3s ease-in-out;
          border-radius: 8px;
          z-index: 1;
          height:40vh;
          
        }
  
  
  }
  
  
  
  
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features {
    background-color: #fafafa;
  
  }
  .features .icon-box { 
    display: flex;
    padding:20px;
    align-items: center;
    text-align: center;
    border-radius:15px;
    background: #ffffff;
    transition: ease-in-out 0.3s;
  
  }
  
  .features .icon-box i {
  font-size: 40px;
  }
  .features .icon-box .icon {
    width:80px;
    height:80px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius:50px ;
    }
  
  
  .features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding:5px;
    line-height: 1;
    font-size:16px;
  }
  
  .features .icon-box h3 {
    color: #222222;
    transition: ease-in-out 0.3s;
  }
  
  .features .icon-box h3 :hover {
    color: #3498db;
  }
  
  .features .icon-box:hover {
    background: #eef7fc;
  }
  
  
  
  
  /*--------------------------------------------------------------
  # Frequently Asked Questions Section
  --------------------------------------------------------------*/
  .faq{
    background-color:#ffffff;
    padding-bottom:100PX;
  }
  .faq .content h3 {
    font-weight: 400;
    font-size: 34px;
  }
  
  .faq .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
  }
  
  .faq .content p {
    font-size: 15px;
    color: #6c757d;
  }
  
  .faq .accordion-item {
    border: 0;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .faq .accordion-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .accordion-collapse {
    border: 0;
  }
  
  .faq .accordion-button {
    padding: 20px 50px 20px 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    color:#000000;
    text-align: left;
    box-shadow: none;
    border-radius: 10px;
    background-color:#f1f1f1;
  }
  
  .faq .accordion-button .num {
    padding-right: 10px;
    font-size: 20px;
    line-height: 0;
    color:#000000;
  }
  
  .faq .accordion-button:not(.collapsed) {
    color:#000000;
    border-bottom: 0;
    box-shadow: none;
    background-color:#FFFF;
    border-radius:25PX;
  }
  
  .faq .accordion-button:after {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .faq .accordion-body {
    padding: 0 40px 30px 45px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
  }
  
  
  @media (max-width:500px) {
  
    .faq{
      background-color:#fafafa;
    }
    .faq .content h3 {
      font-weight: 400;
      font-size: 34px;
    }
    
    .faq .content h4 {
      font-size: 20px;
      font-weight: 700;
      margin-top: 5px;
    }
    
    .faq .content p {
      font-size: 15px;
      color: #6c757d;
    }
    
    .faq .accordion-item {
      border: 0;
      margin-bottom: 20px;
      box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
      border-radius: 10px;
    }
    
    .faq .accordion-item:last-child {
      margin-bottom: 0;
    }
    
    .faq .accordion-collapse {
      border: 0;
    }
    
    .faq .accordion-button {
      padding: 20px 50px 20px 20px;
      font-weight: 600;
      border: 0;
      font-size: 18px;
      line-height: 24px;
      color:#000000;
      text-align: left;
    background-color:#f1f1f1;
      box-shadow: none;
      border-radius: 10px;
    }
    
    .faq .accordion-button .num {
      padding-right: 10px;
      font-size: 20px;
      line-height: 0;
      color:#000000;
    }
    
    .faq .accordion-button:not(.collapsed) {
      color:#000000;
      border-bottom: 0;
      box-shadow: none;
    }
    
    .faq .accordion-button:after {
      position: absolute;
      right: 20px;
      top: 20px;
    }
    
    .faq .accordion-body {
      padding: 0 40px 30px 45px;
      border: 0;
      border-radius: 10px;
      background: #fff;
      box-shadow: none;
    }
    
    .features .icon-box i {
      font-size: 30px;
      }
  
  }
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials {
    background-color:#ffffff;
  }
   .section-header .Review  {
    background-color:#ff542d;
    padding:15PX;
    color: #FFFF ;
    border-radius:5PX;
    border: none;
  }
  
  
  .testimonials .testimonial-wrap {
    padding-left: 10px;
  }
  
  .testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 10px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #fff;
    width:300px;
    height:350px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
   background-color:#FAFAFA;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
  }
  
  .testimonials .testimonial-item .stars {
    margin: 10px 0;
  
  }
  
  .testimonials .testimonial-item .stars i {
    color: #ff542d;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: #009d8b;
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
    font-size:16px;
  
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5f61f2;
  }
  
  @media (max-width: 767px) {
    .testimonials .testimonial-wrap {
      padding-left: 0;
    }
  
    .testimonials .testimonial-item {
      padding: 30px;
      margin: 15px;
    }
  
    .testimonials .testimonial-item .testimonial-img {
      position: sticky;
      left: auto;
    }
  }
  
  /*--------------------------------------------------------------
  # Clients  logos scroll
  --------------------------------------------------------------*/
  
  #clients img {
    width:100px;
    height:100px;
    margin-left:150px;
  }
  
  
  #clients :hover {
    animation-play-state: paused;
  }
  
  #clients {
    display: inline-block;
    animation: 10s clientsSlide infinite linear;
    
  }
  
  
  @keyframes clientsSlide {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  
  #footer .footer-top {
    padding: 50px 0 50px 0;
    background: #2a2a2a;
  }
  .footer-links  img{
    padding-bottom:10px;
    width:150px;
    height:50px;
  
  }
  
  
  .footer-links h4 {
    color: #ffffff;
    text-align: justify;
    padding : 16px 0px 16px 0px;
    font-size:16px;
    text-transform: uppercase;
  }
  
  .footer-links p {
    color: #ffffff;
    text-align: left;
    font-size:14px;
    padding-top:6px;
  }
  
  
  
  .footer-links li a {
    color: #ffffff;
    text-align: justify;
      font-size:14px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .line{
    height: 1px;
    margin: 0px;
    padding:0px;
  }
  
  .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    padding-top:40px;
  }
  .credits {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  }
  .credits a {
    padding:5px;
    color: #ffffff;
  }
  
  @media (max-width:500px) {
    #footer .container  {
      width: unset;
     
    }
    
    #footer .footer-top h4 {
      font-size:13px;
      font-weight: bold;
      color: #ffffff;
      position: relative;
      padding-bottom: 12px;
    }
  }
  @media (max-width:1440px) {
  
    #logo-footer a img{
      height: 150px;
      position: relative;
      left:-12px;
     
    }
  
  
  }
  @media (max-width:1200px) {
  
    
    #footer .footer-top .footer-contact p {
      font-size: 12px;
      font-family: "outfit", sans-serif;
      color: #777777;
    }
    
    #footer .footer-top h4 {
      font-size:13px;
      font-weight: bold;
      color: #ffffff;
      position: relative;
      padding-bottom: 12px;
    }
  }
  @media (max-width:1440px) {
  
    #logo-footer a img{
      height: 150px;
      position: relative;
      left:-12px;
     
    }
  
  
  }
  
  /* Service Page_ Every service  page  */
  
  #A1
  {
    margin-top:80PX;  
    font-family: "Comfortaa", serif;
    padding:25PX;
  
  }
  
  #A1 h2{
    font-size:50PX;
    color: #0d83fd;
    font-family: "Comfortaa", serif;
  
  }
  
  #A1 img{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  
  }
  
  
  
  #A1  .Scroll_Button  {
    font-size:18PX;
    font-family: "Comfortaa", serif;
    border: none;
    margin-top:20PX;
    padding:8PX;
    width:100%;
    border-radius:20PX;
    background-color: #e4e4e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
  
  }
  .Scroll_Button a {
    color: #314259;
    text-transform: uppercase;
    border-radius:15PX;
    padding:5px;
    font-family: "Comfortaa", serif;
    background-color: transparent;
    position: sticky;
    top: 5.5rem;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: fadeIn 1s ease;
  }
  .Scroll_Button a:hover {
    background-color: #0d83fd;
    color: #fff;
  }
  
  @media (max-width:800px) {
  
    #A1
    {
      margin-top:40PX;  
      font-family: "Comfortaa", serif;
      padding:25PX;
    
    }
    
  
  
    #A1 h2{
      font-size:25PX;
      color: #007bff;
      font-family: "Comfortaa", serif;
    
    }
  
    #A1 .Scroll_Button  {
      width:100%;
      padding:4PX;
  
    }
  
    #A1 IMG {
      margin-top:10PX;
     height:100%;
     width: 100%;
    }
  
  }
  
  @media (max-width:1024px) {
  
    #A1 h2{
      font-size:50PX;
      color: #0d83fd;
      font-family: "Comfortaa", serif;
    
    }
    .Registration P {
      font-size:14PX;
    }
  
  
    #A1  .Scroll_Button  {
  
      margin-top:10PX;
      padding:4PX;
      font-size:13PX;
  
    }
    .Scroll_Button a {
      color: #314259;
      border-radius:15PX;
      padding:6px;
      font-family: "Comfortaa", serif;
    
    }
  
  
  }
  
  
  
  /* Requirement Document Section */
  
   #Requirement{
    background-color: #f1f1f1;
    margin:0px;
    font-family: "Comfortaa", serif;
    font-style: normal;
    padding:40PX 0PX 40PX 0PX;
  
  }
  
  #Requirement h3{
    background-color: #f1f1f1;
    margin:0px;
    font-family: "Comfortaa", serif;
    padding:5PX;
  
  }
  
  #Requirement ul{
    margin:0px;
    padding:0px;
  
  }
  
  #Requirement ul li{
    list-style: none;
    padding-top:20px;
  
  }
  
  #Requirement ul li a{
   color: #314259;
   padding:10px;
   font-size:20px;
   font-family: "Comfortaa", serif;
  
  }
  
  #Requirement ul li i{
    color: #0d83fd;
  font-size:20px;
   }
  
  
   /* Benefits Section */
  
   #Benefits {
  background-color: #ffffff;
  padding:60PX 0PX 50PX 0PX;
  
  
   }
   #Benefits h3{
    font-family: "Comfortaa", serif;
    
     }
  
     #Benefits P
     {    
      font-family: "OUTFIT", serif;
      
       }
    
  
  /* Expert Section */
  .expert {
    background-color: #6c63ff;
    color: #fff;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1.2s ease;
    padding-top:50PX;
    font-family: "Comfortaa", serif;
  
  }
  
  .expert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    animation: slideInLeft 1s ease-out;
    padding:10PX;
  }
  
  .expert-content P {
    padding:10PX;
    color: #FFFF;
    font-family: "Comfortaa", serif;
  
  }
  
  .expert-content H2 {
    padding:10PX;
    color: #FFFF;
    font-family: "Comfortaa", serif;
  
  
  }
  
  .expert-img img {
    width:37rem;
    margin-right: 12rem;
    margin-top: 2rem;
  
  }
  
  .expert-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .expert-content p {
    margin-bottom: 1.5rem;
  }
  
  @media (max-width:1024px) {
  
    .expert-img img {
      width:33rem;
      margin-right: 12rem;
      /* margin-top: 1rem; */
    }
  }
  
  @media (max-width:768px) {
    .expert-img img{
      display: none !important;
    
    }
  }
  
  
  @media (max-width:500px) {
    .expert-content H2 {
      padding:10PX;
      color: #FFFF;
      font-family: "Comfortaa", serif;
      font-size:22PX;
    
    }
  
    .expert-content P{
      color: #FFFF;
      font-family: "Comfortaa", serif;
      font-size:14PX;
    
    }
  
    .expert #CTA {
      width:200PX;
      font-size:16PX;
    }
  
    #Requirement h3{
      background-color: #f1f1f1;
      margin:0px;
      font-family: "Comfortaa", serif;
      padding:5PX;
    
    }
  
    #A1 h2{
      font-size:30PX;
      color: #007bff;
      font-family: "Comfortaa", serif;
    
    }
    #A1 h2 P{
      font-size:20PX;
      color: #007bff;
      font-family: "Comfortaa", serif;
    
    }
  
  }


  /* Contact Form  */
  /* Background overlay */
/* .contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
} */

/* Contact popup box */
.contact-pop {
  background-color: #fff;
  /* padding: 40px 25px; */
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.3s ease;
  text-align:left;
}

/* Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Form heading */
.contact-pop h1 {
  text-align: center;
  font-size: 24px;
  color: #333;
}

/* Paragraph */
.contact-pop p {
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* Form field spacing */
.contact-btns form > div {
}

/* Label styling */
.contact-btns label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

/* Input and textarea styling */
.contact-btns input,
.contact-btns textarea {
  width: 100%;
  padding:8px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.contact-btns input:focus,
.contact-btns textarea:focus {
  border-color: #007bff;
}

/* Submit button */
.contact-btns button {
  width: 100%;
  padding: 6px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btns button:hover {
  background-color: #0056b3;
}

/* Responsive fix for small screens */
@media screen and (max-width: 480px) {
  .contact-pop {
    padding: 20px 15px;
  }

  .contact-pop h2 {
    font-size: 20px;
  }
}


.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-alert.hidden {
  display: none;
}

.custom-alert-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.2);
  text-align: center;
  max-width: 320px;
  font-family: 'Segoe UI', sans-serif;
}

.custom-alert-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.custom-alert-content button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.custom-alert-content button:hover {
  background-color: #0056b3;
}

    /* Loader */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9998;
    }

    .loader.hidden {
      display: none;
    }

    .loader-content {
      background: #ffffff;
      padding: 20px 30px;
      border-radius: 10px;
      font-size: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }