
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto", sans-serif;
  --heading-font2: "jost", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

/* 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #E04141;
  /* 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: #000000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #E04141;
  /* 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: #E04141;
  /* 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;
}

/*--------------------------------------------------------------
# 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: #000000;
  font-family: var(--heading-font2);
}



@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 62px;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  font-family: var(--heading-font2);
  font-weight: normal;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-hireWithUs,
.header .btn-hireWithUs:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  font-family: var(--heading-font2);
  font-weight: normal;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted: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 .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .btn-hireWithUs {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
    font-size: 10px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

.btn-hireWithUs,
.btn-hireWithUs:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  font-family: var(--heading-font2);
  font-weight: normal;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 500;
}

.btn-hireWithUs {
  order: 2;
  margin: 0 15px 0 0;
  padding: 6px 15px;
  font-size: 10px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    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);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

/* Navmenu - Mobile */
@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;
    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;
  }

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


/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .unique .unique-card{
    min-height: 43vh;
    /* display: flex;
    flex-wrap: wrap; */
  }
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: normal;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.our-Service .service-card{
  display: flex;
  flex-wrap: wrap;
}

.our-Service .image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.our-Service .image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.our-Service .overlay {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  /* margin: 10px; */
  height: 100%;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #fff;
  color: #000000;
  text-align:start;
  padding: 20px 30px;
  transition: bottom 0.4s ease;

}

.our-Service .our-Service-item .overlay h2 {
  
  color: #000000;
 
  padding: 20px 0 30px 0;
 
  font-family: var(--heading-font);
  font-size: 18px;
  text-align:start;
  font-weight: bold;
  font-family: var(--default-font);

}

.our-Service .image-container:hover .overlay {
  bottom: 0;
}

.our-Service .card {
  background-color: #2a2a2a;
  border: none;
  border-radius: 10px;
}
.our-Service .arrow-icon {
  background-color: #d50000;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.our-Service .custom-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.our-Service .card img {
  border-radius: 10px 10px 0 0;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .our-Service .image-container:hover .overlay {
    bottom: 0;
  }
  .our-Service .overlay {
    
    position: absolute;
    
    left: 0;
    right: 0;
    background: #fff;
    color: #000000;
    text-align:start;
    padding: 20px 30px;
    transition: bottom 0.4s ease;
  
  }

  .our-Service .custom-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
  }
  
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .weServe-img img {
    width: 100%
  }

  .weServe-list {
    justify-items: start;
  }
  .bullet-Points {
    
    margin-top: 80px;
  
    /* background-color: red; */
  }
  .header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 5px 0;
    transition: all 0.5s;
    z-index: 997;
  }

  .hero {
    /* width: 100%; */
    min-height: 100vh;
    position: relative;
    padding: 30px 0 0 0;
    display: flex;
    align-items: center;
    background: url(../img/BackgroundIot.svg) top center no-repeat;
    background: none;
    background-size: cover;
  }
  
  .our-Service .our-Service-item img {
    width: 100%
  }
  
  .our-Service .service-card{
    display:block;
    flex-wrap:nowrap;
  }
  
  .bullet-Points img {
    height:0px !important;
    margin-top: 0px !important;
  
    /* background-color: red; */
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 60px 0;
  scroll-margin-top: 98px; */
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}
.step-item {
  justify-content: center;
  justify-items: center;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 0, 0, 0);
}
.step-item p{
  margin-bottom: 0! important;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.weServe .button1 {
  font-size: 16px;
  font-weight: normal;
  font-family: var(--heading-font);
  color: #000000;
}

.section-title {
  text-align: center;
  padding-bottom: 25px;
  position: relative;
  color: white;
  font-size: 34px;
  font-weight: 300;
  font-family: var(--heading-font2);
}

.section-title2 {
  text-align: start;
  padding-bottom: 25px;
  position: relative;
  color: white;
  font-size: 34px;
  font-weight: 300;
  font-family: var(--heading-font2);
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

.section-title span {
  color: white;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--heading-font2);
}

.section-title2 span {
  color: white;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--heading-font2);
}

.section-para {
  color: #FFFFFF;
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: normal !important;
}
.section-para2 {
  color: rgb(171, 171, 171);
  padding: 0;
  padding-bottom: 60px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: normal !important;
}
.bullet-Points {
  position: absolute;
  display: flex;
  margin-top: 80px;

  /* background-color: red; */
}

.bullet-Points img {
  height: 478.64px;
  margin-top: 80px;

  /* background-color: red; */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  /* width: 100%; */
  min-height: 100vh;
  position: relative;
  padding: 80px 62px 0px 62px;
  display: flex;
  align-items: center;
  background: url(../img/BackgroundIot.svg) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 57px;
  font-weight: normal;
  line-height: 57px;
  font-weight: 400;
}

.hero p {
  color: black;
  font-family: var(--heading-font2);
  margin-top: 40px ;
  font-size: 23px;
  font-weight: 500;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .hero {
    /* width: 100%; */
    /* min-height: 100vh; */
    position: relative;
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
    background: url(../img/BackgroundIot.svg) top center no-repeat;
    background-size: cover;
  }
  .hero-img{
    margin-bottom: 40px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# How We Serve Section
--------------------------------------------------------------*/
.how-We-Do {
  /* width: 100%;
  min-height: 100vh; */
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/SecondBG.webp) top center no-repeat;
  background-size: cover;
}

.how-We-Do .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.how-We-Do .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.how-We-Do .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.how-We-Do .content p {
  margin: 15px 0 30px 0;
  font-size: 14px;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Intelligent Connectivity
--------------------------------------------------------------*/
.intelligent-Connectivity {
  /* width: 100%; */
  
  position: relative;
  
  display: flex;
  align-items: center;
  background: url(../img/Intelligent-Connectivity-BG.webp) top center no-repeat;
  background-size: cover;
}

.intelligent-ConnectivityFirstLine {
  font-family: var(--heading-font2);
  font-size: 34px;
  font-weight:300 !important;
  margin: 0 !important;
  /* line-height: 56px; */
}

.intelligent-ConnectivitySecondLine {
  font-size: 34px;
  font-family: var(--heading-font2);
  
  /* line-height: 56px; */
}
.intelligent-Connectivity-content p{
  color: #000;
}

.intelligent-Connectivity .intelligent-Connectivity-para h2 {
  color: black;
  font-family: var(--heading-font2);
  margin-top: 40px ;
  font-size: 23px;
  font-weight: 500;
}

.intelligent-Connectivity .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.intelligent-Connectivity .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.intelligent-Connectivity .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.intelligent-Connectivity .btn-get-started:hover i {
  transform: translateX(5px);
}



.intelligent-Connectivity h1 {
  font-weight: 400;
}



.intelligent-Connectivity .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/*--------------------------------------------------------------
# Intelligent Cards
--------------------------------------------------------------*/
.intelligentCard-Cards {
  margin-bottom: 5em;
}

.intelligentCard-service-tab-box {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.47);
  backdrop-filter: blur(6px);
  padding: 50px;
  max-width: 1000px;
  margin: 2.5em auto;
}

.intelligentCard-service-tab-box h4{
  color: #0F1E0D;
}

.intelligentCard-service-stack-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intelligentCard-service-stack-tiles {
  border-radius: 20px;
  border: 1px solid #000;
  padding: 25px;
  max-width: 410px;
  margin: 10px;
  min-height: 240px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: relative;
}

.intelligentCard-FirstLine {
  color: #000000;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
}

.intelligentCard-SecondLine {
  color: #000000;
  font-family: var(--default-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.intelligentCard-service-stack-tiles p{
  margin-bottom: 0 !important;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}


/*--------------------------------------------------------------
# our-Service Section
--------------------------------------------------------------*/
.our-Service {
  /* width: 100%; */
  /* min-height: 100vh; */
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/ThirdBG.webp) top center no-repeat;
  background-size: cover;
}

.our-Service .our-Service-item {
  /* background-color: var(--surface-color); */
  border-radius: 17px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  align-content: flex-end;
}

.our-Service .our-Service-item i {
  color: var(--accent-color);
  font-size: 56px;
  line-height: 0;
  margin-right: 20px;
}

.our-Service h1 {
  color: white;
  font-size: 34px;
  font-weight: 200;
  font-family: var(--heading-font2);
}


.our-Service .our-Service-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.our-Service .our-Service-item h2 {
  color: white;
  padding: 20px 30px;
  /* padding: 0;
  margin: 0; */
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: bold;
  font-family: var(--default-font);
}

.our-Service .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.our-Service .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.our-Service .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.our-Service .btn-get-started:hover i {
  transform: translateX(5px);
}


.our-Service .extra {
  display: none;
  color: #FFFFFF;
}
.our-Service .dots {
 
  color: white;
}
.our-Service p {
  font-family: var(--default-font);
  font-weight: normal !important;
  display: inline;
}
.our-Service input[type="checkbox"] {
  
  display: block;
  appearance: none;
}
.our-Service label {
  font-family: var(--default-font);
  position: relative;
  padding-bottom: 1em;
  font-weight:bold;
  color: var(--accent-color);
  cursor: pointer;
  border-radius: 0.5em;
}
.our-Service label:before {
  content: "Read More";
}
.our-Service input[type="checkbox"]:checked ~ label:before {
  content: "Read Less";
}
.our-Service .dots:has(~ input[type="checkbox"]:checked) {
  display: none;
}
.our-Service .extra:has(~ input[type="checkbox"]:checked) {
  display: inline;
}

/*--------------------------------------------------------------
# Unique Section
--------------------------------------------------------------*/
.unique {
  /* width: 100%; */
  /* min-height: 100vh; */
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/FourthBG.webp) top center no-repeat;
  background-size: cover;
}
.unique .unique-card-row{
  justify-content: end;
  align-items: flex-start;
}
.unique .unique-item {
  border-radius: 17px;
  background-color: black;
  
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.unique .unique-item i {
  color: var(--accent-color);
  font-size: 56px;
  line-height: 0;
  margin-right: 20px;

}

.unique .unique-item h2 {
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding-top: 25px;
  min-height: 68px;
  /* padding-bottom: 8px; */

}

.unique span {
  color: black;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--heading-font2);
}

.unique h1 {
  color: white;
  font-size: 34px;
  font-weight: 200;
  font-family: var(--heading-font2);
}
.unique .unique-Title{
  text-align: center;
  padding-bottom: 25px;
  position: relative;
  color: black;
  font-size: 34px;
  font-weight: 300;
  font-family: var(--heading-font2);
}

.unique .unique-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.unique .unique-item p {
  padding: 0;
  margin: 0;
  color: white;
  font-size: 14px;
  font-family: var(--heading-font2);

}

.unique .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.unique .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.unique .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.unique .btn-get-started:hover i {
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# weServe Section
--------------------------------------------------------------*/
.weServe {
  /* width: 100%; */
  /* min-height: 100vh; */
  position: relative;
  padding: 80px 0 80px 0;
  display: flex;
  align-items: center;
  background: url(../img/FifthBG.webp) top center no-repeat;
  background-size: cover;
}

.weServe .weServe-item {
  border-radius: 17px;
  background-color:rgba(0, 0, 0, 0);
 

}

.weServe .weServe-item i {
  color: var(--accent-color);
  font-size: 56px;
  line-height: 0;
  /* margin-right: 20px; */

}

.weServe .weServe-item h2 {
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 8px;

}

.weServe .weServe-item ul li{
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.weServe span {
  color: white;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--heading-font2);
}

.weServe h1 {
  color: white;
  font-size: 34px;
  font-weight: 200;
  font-family: var(--heading-font2);
}
.weServe .weServe-Title{
  text-align: center;
  padding-bottom: 25px;
  position: relative;
  color: white;
  font-size: 34px;
  font-weight: 300;
  font-family: var(--heading-font2);
}

.weServe .weServe-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.weServe .weServe-item p {
  padding: 0;
  margin: 0;
  color: white;
  font-size: 14px;
  font-family: var(--heading-font2);

}

.weServe .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.weServe .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.weServe .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.weServe .btn-get-started:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Offerings Section
--------------------------------------------------------------*/

.offering {
  padding: 0;
  background: #fff;
  text-align: center;
  
  position: relative;
  background: url(../img/offeringBG.webp) top center no-repeat;
  background-size: cover;
  z-index: 2;
 
}

.offering h2{
  font-family: Urbanist;
  font-weight: 500;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 1.12px;
  text-align: center;
  color:#1D1616;
}

.offering-service-tab-box h4{
  color: #0F1E0D;
}
.offering-item-list a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
}


.offering-item-list {
  margin: 0 auto;
  padding: 0;
  
 
}

.offering-item-list li {
  float: none;
  display: inline-block;
}

.offering-tile {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.67);
  backdrop-filter: blur(5.400000095367432px);
  max-width: 216px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: start;
  position: relative;
  height: 157px;
  min-width: 216px;
  transition: 0.1s ease-in;
}

.offering-tile:hover {
  background: #f4a4a4;
}

.offering-tile .service-ico {
  width: 60px;
}

.offering-tile h6 {
  color: #000;
  font-family: Urbanist;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.48px;
}

.offering-tile .service-ico {
  width: 60px;
}


.offering-tile span {
  display: inline-block;
  transition: 0.1s ease-in;
}

.tile-arrow-top {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 24px;
  color: white;
  transition: transform 0.3s ease, top 0.3s ease, right 0.3s ease;
}

.offering-tile:hover .tile-arrow-top {
  top: 0px;
  right: 11px;
  transform: translate(5px, -5px);
}




/*--------------------------------------------------------------
# weServe Section
--------------------------------------------------------------*/
.withUs {
  /* width: 100%;
  min-height: 100vh; */
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/ScheduleWithUsBG.webp) top center no-repeat;
  background-size: cover;
}

.withUs .withUs-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);

}

.withUs .withUs-item i {
  color: var(--accent-color);
  font-size: 56px;
  line-height: 0;
  margin-right: 20px;

}

.withUs .withUs-title h2{
  color: black;
  font-size: 36px;

  font-weight: normal;

  font-family: var(--heading-font2);

}

.withUs .withUs-title p {
  color: black;
  font-size: 16px;
  padding-top: 6px;
  padding-bottom: 20px;
  font-weight: normal;

  font-family: var(--heading-font);

}

.withUs span {
  color: white;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--heading-font2);
}

.withUs h1 {
  color: white;
  font-size: 34px;
  font-weight: 200;
  font-family: var(--heading-font2);
}


.withUs .withUs-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.withUs .withUs-item p {
  padding: 0;
  margin: 0;
  color: white;
  font-size: 14px;
  font-family: var(--heading-font2);

}

.withUs .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.withUs .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.withUs .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.withUs .btn-get-started:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.process_card {
  align-items: end;
}

.process_card2 {
  align-items: center;
}

.process_card_title1 {
  font-size: 18px;
  font-weight: bold;
  font-family: var(--default-font);
  text-align: center;
  color: white;
}

.process_card_title2 {
  font-size: 18px;
  font-weight: bold;
  font-family: var(--default-font);
  text-align: center;
  color: white;
}

.process_card_para1 {
  color: white;
  text-align: end;
  font-size: 14px;
}

.process_card_para2 {
  color: white;
  text-align: start;
  font-size: 14px;
}


/*======================================================== Media Query CSS ====================================================*/



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .intelligentCard-service-stack-tiles {
    max-width: max-content;
    min-height: auto;
    min-height: 170px;
  }

  .intelligentCard-service-tab-box {
    padding: 20px 0;
  }
  .intelligentCard-service-stack-cards {
    display: inline-block;
    min-height: 200px;
    
  }
  
  .digital-service-tab-box {
    padding: 20px 0;
  }

  .offering-tile {
    width: 138px;
    padding: 10px;
    min-height: 147px;
    min-width: auto;
  }

  .offering-tile h6 {
    font-size: 14px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  
  .intelligentCard-service-tab-box {
    padding: 50px 10px;
  }

  .intelligentCard-service-stack-cards {
    display: grid;
  }
  
  .digital-service-tab-box {
    padding: 50px 10px;
  }
}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  .intelligentCard-service-stack-cards {
    display: grid;
  }

}

@media only screen and (min-width: 992px) {
  .intelligentCard-service-stack-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,5fr));
  }

}


@media (min-width: 1200px) {
  

  .process_card {
    align-items: end;
  }

  .process_card2 {
    align-items: start;
  }

  .process_card_title1 {
    color: white;
    text-align: end;
  }

  .process_card_title2 {
    color: white;
    text-align: start;
  }

  .process_card_para1 {
    color: white;
    text-align: end;
  }

  .process_card_para2 {
    color: white;
    text-align: start;
  }
  
}



@media (min-width: 1200px) and (max-width: 1400px){
  .our-Service .our-Service-item .overlay p{
    font-size: 14px;
  }

  .intelligentCard-service-stack-cards {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));

  }
}

@media (min-width: 768px) and (max-width: 1199px){
  .our-Service .our-Service-item .overlay p{
    font-size: 10px;
  }
}

@media (min-width: 416px) and (max-width:767px){
  .our-Service .our-Service-item .overlay h2{
    font-size: 27px;
  }
  .our-Service .our-Service-item .overlay p{
    font-size: 22px;
  }
}

@media (min-width: 370px) and (max-width:416px){
  .our-Service .our-Service-item .overlay h2{
    font-size: 26px;
  }
  .our-Service .our-Service-item .overlay p{
    font-size: 19px;
  }
}

@media (min-width: 330px) and (max-width: 369px){
  .our-Service .our-Service-item .overlay h2{
    font-size: 22px;
  }
  .our-Service .our-Service-item .overlay p{
    font-size: 17px;
  }
}



@media (max-width: 768px) {
  .hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: normal;
    /* line-height: 56px; */
  }
  
  .hero p {
    color: black;
    font-family: var(--heading-font2);
    margin-top: 40px ;
    font-size: 20px;
    font-weight: 400;
  }
  .process_card img {

    width: 150px;
  }

  .process_card {

    margin-bottom: 50px;
  }

  .process_card2 img {

    width: 150px;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 0, 0, 0);
  }

  .timeline::before {
    left: 25px;
  }

  .process_card {
    align-items: center;
  }

  .process_card_title1 {
    color: white;
    text-align: center;
  }

  .process_card_title2 {
    color: white;
    text-align: center;
  }

  .process_card_para1 {
    color: white;
    text-align: center;
  }

  .process_card_para2 {
    color: white;
    text-align: center;
  }
}

.footer-main-title {
  color: black;
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: bold;
}

.footer-title {
  color: black;
  font-family: var(--heading-font);
}

.footer-items p,
a {
  color: black;
  font-family: var(--heading-font);
}
.footer-side {
  padding: 80px 0 60px 0;
}

.list-group-item {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 13px;
  padding-left: 0 !important;
  font-family: var(--heading-font);
}

.banner-section {
  padding: 50px 0;
}

.banner-content {
  text-align: left;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #6c757d;
}

.cta-button {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  font-family: var(--heading-font2);
  font-weight: normal;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #ff3333;
}

.banner-image img {
  max-width: 100%;
  border-radius: 10px;
}