:root {
  --default-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --heading-font: "Exo 2",  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: #005ebd; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f7821a; /* 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: #312f2f; /* 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: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #f7821a; /* 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: #f7821a; /* 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: #2a2727;
}

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

/* Style for the navigation menu */

/* #navmenu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffc451; 
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
} */

#navmenu ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* .nav-active-text {
  border-bottom: 2px solid #ffc451; 
  padding-bottom: 4px; 
} */

.text-uppercase{
  font-size: 18px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.banner-img {
  width: 100%;
  /*height: 100vh;*/
  /*object-fit: fill;*/
  margin-top: 50px;
}

.banner-img{
  /* filter:contrast(60%); */
  /* height: 650px !important; */
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 10px 0; */
  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: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.carousel-control-prev-icon{
  /* border-radius: 50%; */
  /* background-color: blue; */
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}


/* .carousel-item {
  position: relative; 
} */

/* .text-overlay1 {
  position: absolute;
  top: 41%; 
  left: 45%; 
  font-weight: 700;
  transform: translate(-77%, -50%);
  color: #f7821a; 
  letter-spacing: 5px;
  text-transform: capitalize;
  font-size: 22px; 
  font-family: 'Exo 2', sans-serif;
  text-align: center; 
  z-index: 2;
  opacity: 0; 
  animation: slideInLeft 1s forwards; 
} */

/* .text-overlay {
  position: absolute;
  top: 54%; 
  left: 45%; 
  font-family: "Exo 2", serif;
  font-weight: 700;
  transform: translate(-69%, -50%);
  color: white; 
  font-size: 70px; 
  text-align: left; 
  z-index: 2;
  opacity: 0; 
  animation: slideInLeft 1s 0.5s forwards; 
} */

/* Keyframes for left-to-right sliding */
/* @keyframes slideInLeft {
  0% {
    transform: translate(-80%); 
    opacity: 0;
  }
  100% {
    transform: translateX(20); 
    opacity: 1;
  }
} */

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

.logo-img{
  height: 85px;
  width:130px;
}

.top-header-info i{
    color: #1862ad;
    font-size:16px;
}


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

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

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 768px) {
  .mail-info{
      display:none;
  }
  .mobile-info{
    display: inline-block;
    margin-top: 20px;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  /* background: linear-gradient(to right, #fff 20%,rgba(0, 0, 0, 0.01) 40%, rgba(0, 0, 0, 0.01) 40%) ; */
  box-shadow: 0px 0px 1.1px #000;
  /* padding: 10px; */
  background-color: #fff; 
  /* box-shadow: 1px 2px 4px #6e6e6e; */

}

@media screen and (max-width: 480px) {
  .index-page .header {
    /* background: linear-gradient(to right, #fff 30%,rgba(0, 0, 0, 0.01) 70%) ; */
  }
  
  .carousel-control-next-icon, .carousel-control-prev-icon {
      margin-top:70px !important;
  }
  
  .mobile-card-gap{
      margin-top:50px;
  }
  
}

/* Index Page Header on Scroll
------------------------------*/

.index-page.scrolled .header {
  background-color: #fff !important;
  /* background-color: rgba(0, 0, 0, 0.4) !important;  */
 
}

.index-page.scrolled .scroll-text{
   color:#000 !important;
   /* color: #fff !important; */
}

/*--------------------------------------------------------------
# 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: #000;
    /* color: gray; */
    padding: 4px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .carousel-control-prev {
    margin-left: -50px;
  }
  
  .carousel-control-next {
    margin-right: -50px;
  }

  /* .carousel-control-prev-icon {
    border-radius: 50%;
    background-color: #555555;
} */

/* .carousel-control-next-icon {
  border-radius: 50%;
  background-color: #555555;
} */

  .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 {
    background-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: #f4801a;
    font-size: 40px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .scroll-active .mobile-nav-toggle {
    color: #f4801a ;
}

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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;
    margin-top: 84px;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    height: 250px !important;
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: #fff;
  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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
    
  }
  .logo-img{
    /*height: 75px;*/
    width:110px;
  }
}

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

@media (max-width: 1199px) {

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



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 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: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

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

  .hero p {
    font-size: 18px;
  }
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  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: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/*------------------- read button -------------------------*/

.read_more{
  color:#fff;
  background-color:#f7821a;
  width: 120px;
  border: 1px solid #f7821a;
  border-radius: 20px;
}

.read_more:hover{
  color:#ff7700;
  background-color: #fff;
  border: 1px solid #ff7700;
}

.heading_underline1{
  width: 70px;
  border-radius: 8px;
  height: 4px;
  background-color:#ff7700 ;
  margin: 0 auto;
  margin-top: -2px;
  }

  .head-text{
    font-size:40px;
    text-align:center;
    color:#4e4e4e;
        font-weight: 700;
    }
   
    .head-text1{
    color:#f7821a;
    }
    
    @media screen and (max-width: 480px) {
       .head-text{
        font-size:24px;
        }  
    }




/*----------------------------- our service-------------------------------------------- */
    .our-services{
        background-image: url(../img/pattern-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: scroll;
        background-position: 50% 50%;
        box-shadow: 0 0 0 0 #FFFFFF;
        position: relative;
    }
  
      .industry-card {
        position: relative;
        overflow: hidden;
        border: none;
        border-radius: 6px;
        border:1px solid #d8dadb;
      }
  
      .industry-card img {
        width: 100%;
        height: 290px;
        object-fit: cover;
        border-radius: 0px;
        transition: transform 0.3s ease;
        object-fit: fill;
      }
  
      .card-overlay {
        position: absolute;
        bottom: 0px;
        left: 10%;
        width: 80%;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        text-align: center;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 1.1rem;
        border: 2px solid #fff;
        border-radius: 8px;
      }
  
      .card-overlay:hover {
        background: #fff;
        color: #000;
        border: 2px solid #000;
      }
  
      .industry-card:hover img {
        transform: scale(1.1); /* Zoom in the image */
      }
      
      .industry-card:hover {
        /* filter: grayscale(0.50); */
        transform: scale(1.05); 
      }
  
      .industry-card:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        /* background: rgba(255, 0, 0, 0.5); */
        z-index: 1;
      }
  
      .industry-card .card-overlay {
        z-index: 2;
      }

      /* multiimages slider  our client */



      @media (min-width: 768px) {
        .container {
            width: 750px;
        }
    }

    @media (min-width: 992px) {
        .container {
            width: 970px;
        }
    }

    @media (min-width: 1200px) {
        .container {
            width: 1170px;
        }
    }

    #featureContainer .carousel-inner .carousel-item.active,
    #featureContainer .carousel-inner .carousel-item-next,
    #featureContainer .carousel-inner .carousel-item-prev {
        display: flex;
    }

    /* medium and up screens */
    @media (min-width: 768px) {
        #featureContainer .carousel-inner .carousel-item-end.active,
        #featureContainer .carousel-inner .carousel-item-next {
            transform: translateX(25%);
        }

        #featureContainer .carousel-inner .carousel-item-start.active, 
        #featureContainer .carousel-inner .carousel-item-prev {
            transform: translateX(-25%);
        }

        #featureContainer .card img {
            width: 100%;
            object-fit: contain;
            aspect-ratio: 3 / 2;
            padding: 10px 20px;
        }

        #featureContainer .carousel-item {
            justify-content: space-between;
        }
    }

    @media (max-width: 767px) {
        #featureContainer .card img {
            aspect-ratio: 3 / 2;
        object-fit: contain;
        width: 500px;
            padding-left: 55px;
            padding-right: 55px;
        }
    }

    #featureContainer .carousel-inner .carousel-item-end,
    #featureContainer .carousel-inner .carousel-item-start { 
        transform: translateX(0);
    }

    #featureContainer .card {
        border: 0;
    }

    #featureContainer .card {
        position: relative;
    }

    #featureContainer .card .card-img-overlays {
        position: absolute;
        bottom: 15%;
        left: 10%;
    }

    #featureContainer a {
        text-decoration: none;
    }

    #featureContainer .indicator {
        padding: 3px 6px 3px 6px;
    }

    #featureContainer .indicator:hover {
        background-color: #f4801a;
        border: 1px solid #f4801a;
        transition: 200ms;
    }

    #featureContainer .indicator:hover {
        color: white;
        transition: 200ms;
    }

    #featureContainer .indicator {
        color: lightgray;
    }

    .carousel-controls-left,
    .carousel-controls-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        font-size: 2rem;
        color: white;
    }

    .carousel-controls-left {
        left: -10px;
    }

    .carousel-controls-right {
        right: -10px;
    }

    .carousel-controls a:hover {
        color: #f4801a;
        transition: 200ms;
    }

    .custom-card {
      border: 2px solid black; 
      border-radius: 8px;
      padding: 10px; 
    }
    
    .custom-card .card-img {
      border-radius: 4px; 
      /* box-shadow: 0px 0px 1px black; */
      border: 1px solid #f4801a;
    }
    
    .custom-card img {
      max-width: 100%; 
      height: auto;
    }
    

/*--------------------------- footer ---------------------------------*/


.footer-hover-color:hover{
  color:#f7821a !important;
  border-bottom: 2px solid #f7821a !important;
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    /* background-color: #fbf4ed !important; */
    background-color: #353537 !important;
}
.footer-color-text{
  color:#dfdfdf !important;
}

footer li i{
    color: var(--accent-color);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #007fff;
    border-color: #007fff;
}


/*---------------------------- about-us ------------------------------*/
    .about-bg {
      background-image: url("assets/img/about4.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 50vh;
      display: flex; 
      justify-content: center; 
      align-items: center; 
      padding-top:20vh;
      /* filter: brightness(80%) contrast(100%); */
  }

  /* @media (min-width: 1200px) {
    .navmenu a, .navmenu a:focus {
      color:#fff !important;

    }
  } */

  @media screen and (max-width: 480px) {
  .about-bg {
      height: 30vh;
      padding-top:7vh;
    
  }
}
.about {
  padding: 100px 0 60px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h4 {
  font-weight: 700;
  font-size: 36px;
}

.about .content p {
  font-size: 18px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 30px 20px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*---------------------------- about-page: card on hover ------------------------------*/
.about.about-page .icon-box i {
    background-color: color-mix(in srgb, var(--accent-color), transparent 1%);
    color: var(--contrast-color);
}

.about.about-page .icon-box:hover i {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
  
  .about {
    padding: 20px 0 60px;
  }
}


.about-text{
    color:#fff !important;
    font-size:50px !important;
    font-weight:700 !important;
}

.index-page.scrolled .header {
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  .about-text{
    font-size: 30px !important;
    margin-top: 60px !important;
  }
}

/*-------------------------- service ----------------------------*/

.table-heading{
  font-size: 18px;
  color: #fff !important;
  background-color: #f7821a !important;
  border-color: #f7821a !important;
}

.table-heading1{
  font-size: 16px;
  color: #fff !important;
  background-color: #f7821a !important;
}

.content-size{
  font-size: 15px;
}

.no-gap1 {
  line-height: 1.3; 
  padding: 0;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .content-size{
    font-size: 14px;
  }
  
.table-heading{
  font-size: 14px;
}

  .table-heading1 {
    font-size: 12px;
    color: #fff !important;
    background-color: #f4801a !important;
}

  .banner-img {
    width: 100%;
    height: 35vh;
    object-fit: fill;
}
  .no-gap1 {
    line-height: 1.4; 
    padding: 0;
    vertical-align: middle;
  }

  .table>:not(caption)>*>* {
padding:0.5rem 0.1rem !important;

  }
}


    /* --------------contact us---------------------------- */


.form-bg{
  background-color: #ffc654;
  padding:20px;
  border-radius: 8px;
  /* box-shadow: 0px 0px 8px rgb(182, 182, 182); */
}

@media screen and (max-width: 480px) {
  .form-bg{
    margin-bottom:16px;
  }
  
.service-image-gap{
  margin-top: 0px !important;
}

  .contact-form-icon {
  border: 1px solid #fff !important;
  color: #fff !important;
  background-color:#f4801a;
  font-size: 24px;
  padding: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; 
}


 .custom-card .card-img {
      border-radius: 4px; 
      /* box-shadow: 0px 0px 1px black; */
      border: none;
    }
    


.card-design{
  border: 1px solid #f4801a !important;
  background-color: rgb(248 249 250);
  padding:10px 15px !important;
  width: 100%;
  height: 14rem !important;
  margin-top:16px;
  /* box-shadow:0px 0px 5px #4e4e4e ; */
  border-radius: 8px;
  color: #000;
}

  
}

.form-map{
  border-radius:8px;
  /* box-shadow: 0px 0px 8px rgb(182, 182, 182); */
}

/* .submit-btn{
  border: 1px solid #fff;
  background-color: #fff;
  color: #f4801a;
}

.submit-btn:hover{
  border: 1px solid #fff;
  background-color: green;
  color: #fff;
} */

.contact-form-icon {
  border: 1px solid #f7821a;
  color: #f7821a;
  font-size: 30px;
  padding: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; 
}

.card-design .contact-form-icon {
  border: 1px solid #f7821a;
  background-color: #f7821a; 
  color: white; 
}

.card-design:hover .contact-form-icon {
  border: 1px solid #1661af;
  background-color: #1661af; 
  color: white; 
}

.card-design{
  border: 0.5px solid rgb(211, 210, 210);
  background-color: rgb(248 249 250);
  padding:20px 40px;
  width: 100%;
  height: 15rem;
  margin-top:16px;
  /* box-shadow:0px 0px 5px #4e4e4e ; */
  border-radius: 8px;
  color: #000;
}

/* .card-design:hover{
  background-color: #ffc654;
  border-color:#ffc654;
  border:none;
} */



/* ------------------logo size in mobile---------------------- */

@media screen and (max-width: 480px) {
 .mobile-logo-pleco{
  height: 190px;
  width: 60%;
  margin: 0 auto;
 }
 
 .mobile-logo-vcs{
     width:80%;
     margin: 0 auto;
 }
 
 
 /* ------------------logo size in mobile---------------------- */

@media screen and (max-width: 480px) {

  .mobile-logo-nixi{
    width:80%;
    margin: 0 auto;
  }
  
  

 .mobile-logo-pleco{
  height: 190px;
  width: 60%;
  margin: 0 auto;
 }

 .mobile-logo-vcs{
  width:80%;
  margin: 0 auto;
}

.mobile-logo-kimpexflow{
  width:70%;
  margin: 0 auto;
}

.mobile-logo-ebiz{
  width:85%;
  margin: 0 auto;
}

.mobile-logo-virtuoso{
  width:80%;
  margin: 0 auto;
}

.mobile-logo-aplf{
  width:70%;
  margin: 0 auto;
}

.mobile-logo-gap{
margin-top: -50px !important;
}

.mobile-logo-gap1{
  margin-top: -30px !important;
  }

}



/*-----------------------*/


