/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #2c5fde;
  --secondary-color: #f65129;
  --section-bg-color: #f9f9f9;
  --custom-btn-bg-color: #00a05d;
  --dark-color: #000000;
  --deep-blue-color: #053197;
  /* --p-color: #161d2d; */
  --p-color: #434446;
  --border-color: #e9eaeb;
  --brand-drk-color: #161d2d;

  --x-color: #000000;
  --youtube-color: red;
  --facebook-color: #1877f2;
  --linkedIn-color: #0077b5;
  --instagram-color: #c13584;
  --pinterest-color: #e60023;
  --google-color: #4285f4;
  --whatsapp-color: #128c7e;

  --service-pg-banner-color: #cdcfd8;

  /* --body-font-family: "League Spartan", sans-serif; */
  --body-font-family: Calibri, "Arial Narrow";
  /* --body-font-family: "Graphik Web", Arial, sans-serif; */
  --font-family: "Be Vietnam Pro";

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --btn-font-size: 16px;
  --copyright-font-size: 14px;
  --menu-footer-font-size: 18px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  padding-top: 70px;
  overflow-x: hidden;
}

/* * {
  outline: 1px solid #f00 !important;
} */

/*---------------------------------------
    TYPOGRAPHY               
  -----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ol li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.tooplate-red {
  color: var(--secondary-color);
}
.tooplate-green {
  color: var(--custom-btn-bg-color);
}

/*---------------------------------------
    SECTION               
  -----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background: var(--section-bg-color);
}

.section-small-title {
  color: var(--custom-btn-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  display: block;
}

.section-overlay {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.custom-block {
  background: var(--primary-color);
  border-top: 20px solid var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}

.featured-custom-block {
  background: var(--border-color);
}

.shop-detail-custom-block {
  background: transparent;
  border-top: 0;
  border-radius: 0;
  padding: 30px;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-link {
  border-color: var(--border-color);
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--copyright-font-size);
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: 0;
  border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}

/*---------------------------------------
    CUSTOM LINK               
  -----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}

/*---------------------------------------
    CUSTOM BADGE               
  -----------------------------------------*/
.custom-badge {
  background: var(--white-color);
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
  padding: 10px 10px 6px 10px;
}

.custom-badge::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 7px solid var(--white-color);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
}

/*---------------------------------------
    CUSTOM BUTTON               
  -----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 15px 20px;
}

.custom-btn:hover {
  background: transparent;
  border-color: var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--secondary-color);
}

/*---------------------------------------
    NAVIGATION              
  -----------------------------------------*/
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.3s;
  /* box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important; */
  box-shadow: none !important;
}

.navbar-brand {
  /* font-size: var(--h4-font-size); */
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  /* border: #000000 1px solid; */
}

.brand-logo-icon {
  width: 14px;
  margin: 0 1px 6.6px 1px;
  font-size: 12px;
  color: #000000;
}

.logo-svg {
  margin: 0 -5.5px 6px -4px;
  padding: 0;
  /* border: #000000 1px solid; */
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px 35px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-bg-color);
  /* font-family: Calibri, "Arial Narrow"; */
  font-size: var(--menu-font-size);
  /* font-size: 18px; */
  font-weight: var(--font-weight-semibold);
  /* font-weight: 500; */
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* .navbar-nav .nav-link.active, 
  .navbar-nav .nav-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
  } */

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #353638;
}

.navItem {
  position: relative;
  padding-bottom: 15px;
}
.navItem::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: 0.2s all;
}

.nav-link:hover .navItem::after {
  transform: scale(1);
}

.navItem2::after {
  transform: scale(1);
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  left: 0;
}

/* ul.dropdown-menu.open {
  display: block;
  border: #000000 1px solid;
  left: 0;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important;
} */

.dropdown-item {
  /* border-bottom: 1px solid var(--border-color); */
  display: block;
  color: var(--p-bg-color);
  font-size: var(--menu-footer-font-size);
  /* font-weight: 700; */
  font-weight: var(--font-weight-normal);
  position: relative;
  color: var(--p-bg-color);
  padding: 5px 20px;
  margin-left: 0px;
}

.dropdown-2-item {
  display: block;
  font-size: var(--menu-footer-font-size);
  font-weight: var(--font-weight-normal);
  padding: 5px 20px;
  position: relative;
  margin-left: 10px;
}

.dropItem {
  margin: 0px auto;
}

.dropdown-menu li:last-child .dropdown-item,
.dropdown-2-item {
  border-bottom: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-2-item:hover {
  /* background: var(--primary-color); */
  /* color: var(--white-color); */
  background: var(--white-color);
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

.dropdown-toggle-2::after {
  content: "\f286";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

.dropdown-sub-parent {
  display: none;
}

.tele-menu {
  padding-left: 25px;
  padding-bottom: 15px;
  padding-top: 15px;
  /* font-size: var(--menu-font-size); */
  font-size: 19px;
  font-weight: var(--font-weight-semibold);
}

.solu-menu {
  /* border: #d11b1b solid 1px; */
  margin-left: 10px;
}

@media screen and (min-width: 992px) {
  .dropdown-toggle::after {
    display: none !important;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
    /* height: 200px; */
  }

  /*---------------------------------
      IT & SUPPORT SERVICES DROPDOWN
  -----------------------------------*/
  .dropdown-menu-2 {
    width: 12.5rem !important;
    margin-left: -15px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
  }

  .dropdown:hover .dropdown-menu-2 {
    display: block;
    padding: 10px;
    /* border: #000000 1px solid; */
  }

  .dropdown-menu-22 {
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-2-item {
    font-size: var(--menu-footer-font-size);
    font-weight: var(--font-weight-normal);
    padding: 5px 0;
  }

  /* ---------------IT Support dropdown END----------------- */

  .dropdown-menu {
    /* box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important; */
    align-items: center;
    padding: 0 28%;
    /* border: #000000 solid 1px; */
  }

  .navbar-nav {
    margin-left: 2.2rem;
    /* border: #000000 1px solid; */
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px 22px;
  }

  /***************************
    SUB-NAV SOLUTIONS
  ****************************/

  .solutions-dropdown {
    display: none;
    /* display: block; */
    position: absolute !important;
    left: 0;
    right: 0;
    /* border: #000000 solid 1px; */
    align-items: center;
    justify-content: center;
    height: 18rem;
    padding-top: 30px;
    background-color: var(--white-color);
    opacity: 0;
    transform: translateY(-10px);
    /* box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important; */
  }

  .solu-menu .dropItem {
    /* border: #000 solid 1px; */
    margin: 0;
  }

  .dropdown-sub-parent {
    display: block;
    position: relative;
    left: 0;
    right: 0;
    top: 35px;
    align-items: center;
    justify-content: center;
    /* margin-top: 10px; */
    /* background-color: var(--white-color); */
    /* border: #000000 solid 1px; */
  }

  .sub-menu-parent {
    /* border: #d11b1b solid 1px; */
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0 21%;
  }

  /* CHECK CODE BEGIN */

  /* CHECK CODE END */

  .category-container {
    /* border: #00a05d solid 1px; */
    width: 18%;
    margin: 15px 10px 0 10px;
  }

  .nav_image {
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
  }

  .nav_image_case {
    height: 100%;
    width: 100%;
    background-color: #f0f1f1;
  }

  .nav-category-link:hover .nav_image {
    transform: scale(1.2);
  }

  .category-name {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding-top: 10px;
    /* border: rgb(233, 165, 64) solid 1px; */
    margin-bottom: 0;
    padding-bottom: 2px;
  }

  .dropdown:hover .solutions-dropdown {
    display: block;
  }

  .solutions-dropdown2 {
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown:hover .IT-services-menu {
    display: flex;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* ============== INDEX PAGE ================= */

/* ------ Banner Section ---- */
.home-banner {
  position: relative;
  background: url("/images/page-contents/Home_page/top-page_background.webp")
    center center/cover no-repeat;
  height: calc(100vh - 70px);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay for readability */
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Text styling */
.banner-headline {
  font-size: 4em;
  font-weight: 600;
  line-height: 1.3;
}

.banner-sub {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
  color: #fff;
}

/* Button */

.home-banner-btn {
  background-color: #053fd1;
  border-radius: 2px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: none;
}

.home-banner-btn:hover {
  background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .banner-headline {
    font-size: 2.2rem;
  }
  .banner-sub {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .banner-headline {
    font-size: 1.9rem;
  }
  .banner-sub {
    font-size: 1rem;
  }
  .btn {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .home-banner {
    height: auto;
    padding: 80px 20px;
  }
  .banner-headline {
    font-size: 1.6rem;
  }
  .banner-sub {
    font-size: 0.95rem;
  }
}

/* Full-width section background */
.home-services-full {
  background: url("/images/home-services-bg.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.home-services-full .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.home-services-full .container {
  position: relative;
  z-index: 2;
}

/* Service Cards */
/* .service-card {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  .service-card:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  } */
/* .service-icon {
    font-size: 2rem;
    color: #0d6efd;
    transition: color 0.3s ease;
  }
  .service-card:hover .service-icon {
    color: #fff;
  } */

/* Responsive text adjustments */
@media (max-width: 768px) {
  .home-services-full h2 {
    font-size: 1.6rem;
  }
}

/* Service Section */
.service-card {
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  background: #053fd1;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.service-icon {
  font-size: 2rem;
  color: #0d6efd;
  transition: color 0.3s ease;
}
.service-card:hover .service-icon,
.service-card:hover .service-card-text {
  color: #fff;
}

/*-------------------------------------------
    OUR SERVICES SECTION
---------------------------------------------*/

.emphasize {
  color: var(--primary-color);
}

.get_tech_btn {
  text-align: center;
  padding: 1.5rem 0 2rem 0;
}

.serv-btn {
  background-color: var(--primary-color);
  border-radius: 2px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: none;
}

.serv-btn:hover {
  background-color: #053fd1;
}

/*------------------------------------------
      WHY US SECTION
---------------------------------------------*/
.why-us {
  position: relative;
}

.why-us canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #d4dbec;
}

.why-us-apart {
  margin-top: 3vh;
  display: flex;
  /* border: #000000 1px solid; */
  justify-content: flex-end;
}

.divider {
  height: 35vh;
  width: 3px;
  background-color: var(--primary-color);
  margin-top: 1.5%;
  margin-right: 10%;
}

.points {
  padding: 20px;
}

.set-apart-list {
  color: var(--primary-color);
  padding-bottom: 10px;
}

.service-section {
  padding: 40px 20px;
}

/*------------------------------------------
      COMPLETED PROJECTS SECTION
---------------------------------------------*/
.completed-projects-section {
  /* border: #000000 1px solid; */
  /* padding-top: 30px; */
  /* background: linear-gradient(290deg, #d4dbec 50%, #ffffff 50%); */
  background: #0a1a3f;
}

.item {
  position: relative;
  height: 40vh;
  width: 55vh;
  text-align: center;
  /* border-color: #053fd1 !important; */
}

.completed-projects-item {
  background: #ffffff;
}

.project-image {
  max-width: 100%;
  height: 100%;
  object-fit: fit;
}

.project-type {
  position: absolute;
  padding: 0 2px;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f7f7f7;
  /* background-color: #000; */
  background-color: rgba(39, 34, 34, 0.507);
  /* opacity: 0.5; */
  line-height: 1;
}

.client {
  line-height: 0.5;
  /* margin-top: 1rem; */
}

.client-author-name {
  font-size: 16px !important;
  font-weight: 600 !important;
}

.small-dash {
  height: 1px;
  width: 30px;
  margin: 1.5rem auto;
  /* margin-top: 1rem; */
  background-color: var(--primary-color);
}

/*------------------------------------------
      CONTACT SECTION
--------------------------------------------*/
#contact-section {
  /* height: 80vh; */
  padding: 2rem 0;
  background: #0a1a3f;
}

@media only screen and (max-width: 768px) {
  #contact-section {
  padding-bottom: 0;
}
}

.page-shield {
  padding: 2.6rem 0;
  /* background: linear-gradient(to right, #384BFF, var(--dark-color)); */
  /* background: var(--brand-drk-color); */
  /* background: #384BFF; */
  /* background: #112658; */
}

.contact-sec-con {
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1) !important;
  /* box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px; */
  border: 1px solid #aaa8a8 !important;
  /* padding-bottom: 20px; */
}

.contact-text {
  /* border: #000000 1px solid; */
  margin-left: -5px;
  margin-right: 5px;
  padding: 0 30px;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.row-item {
  display: flex;
  gap: 10px;
  /* margin-left: 15px; */
  margin: 0 0 15px 0;
  /* border: #32e74a 1px solid; */
}

.row input {
  flex: 1;
}

.block {
  margin-bottom: 15px;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  font-size: 18px;
  /* border-radius: 4px; */
}

textarea {
  resize: none;
  min-height: 100px;
}

/* --------------------------------------------
        ABOUT US PAGE
---------------------------------------------- */

.about-banner {
  background-image: url("../images/page-contents/Home_page/top-page_background.webp");
  /* background: var(--deep-blue-color); */
}

@media screen and (min-width: 990px) {
  .about {
    display: none;
  }
}

/* --------------------------------------------
        CONTACT PAGE
----------------------------------------------*/

.contact-us {
  padding: 3em 0;
}

/*---------------------------------------
    SERVICES PAGES
-----------------------------------------*/

.item-feature li:before {
  content: "✓";
  color: var(--custom-btn-bg-color);
  margin-left: -1.5rem;
  padding-right: 0.5rem;
}

.item-feature li {
  /* line-height: 2.5rem; */
  list-style: none;
  padding-bottom: 10px;
}

.row-padding {
  padding: 15px 0;
}

/* --------------------------------------------
    GET SUPPORT PAGE
-----------------------------------------------*/

.horizontal-line {
  width: 10%;
  height: 2px;
  background-color: var(--primary-color);
  margin: auto;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.modal-body,
.form-select {
  font-size: 18px;
}

.form-control {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  font-size: 18px;
  border-radius: 1px;
}

.modal-btn {
  border: 1px solid var(--primary-color);
  font-size: 18px;
  border-radius: 2px;
}

.support-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.support-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.support-card i {
  color: #007bff;
}

.ticket {
  background-color: #0a1a3f;
  /* height: 55vh; */
}
.get-support-banner p {
  max-width: 700px;
}

@media (max-width: 768px) {
  .support-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ========== SOLUTION PAGES STYLES ================= */
/* .sol-banner {
  height: 65vh;
  position: relative;
}

.sol-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.sol-banner .container {
  position: relative;
  z-index: 1;
} */

/* CTA Section */
/* .big-cta {
  background: linear-gradient(135deg, #0d6efd, #373738);
  color: rgb(219, 219, 219);
}

.big-cta-color {
  color: #f1efef !important;
}

@media (max-width: 768px) {
  .sol-banner {
    height: 50vh;
  }
  .sol-banner h2 {
    font-size: 1.8rem;
  }
  .solution-card {
    padding: 1.5rem;
  }
} */

/* check */

.sol-banner {
  height: 65vh;
  position: relative;
  width: 100%;
  overflow: hidden; /* Prevent banner overflow */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sol-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.sol-banner .container {
  position: relative;
  z-index: 1;
}

/* CTA Section */
.big-cta {
  background: #5d5d63 /*linear-gradient(135deg, #0d6efd, #373738);*/ ;
  color: rgb(219, 219, 219);
}

.big-cta-color {
  color: #f1efef !important;
}

@media (max-width: 768px) {
  .sol-banner {
    height: 50vh;
  }
  .sol-banner h2 {
    font-size: 1.8rem;
  }
  .solution-card {
    padding: 1.5rem;
  }
}

/* AOS fix and global protection */
html, body {
  overflow-x: hidden;
}

[data-aos] {
  transform-origin: center center;
  will-change: transform, opacity;
}


/* ======== PROCESS MANAGEMENT STYLES =========== */
/* Banner Section */
.process-banner {
  background: url("/images/page-contents/solutions_banners/process_mgt.webp")
    center center/cover no-repeat;
}

/* Internal Links Section */
.related-solutions {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.solution-card {
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.solution-card .icon i {
  color: #0d6efd;
}

.process-btn {
  background-color: #45454d;
}

/* ======== VISITOR MANAGEMENT =========== */

/* Banner */
.vms-banner {
  background: url("/images/visitor-banner.jpg") center center/cover no-repeat;
}

/* Features */
.feature-box {
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* ======== TIME ATTENDANCE =========== */

/* Banner */
.HRexact-banner {
  height: 65vh;
  position: relative;
  background: url("/images/page-contents/solutions_banners/HRexact_logo_blk_bg.webp") center center/cover
    no-repeat;
}

@media (max-width: 768px) {
  .HRexact-banner {
    height: 50vh;
  }
}

/* CTA Section .tams-cta {
  background: linear-gradient(135deg, #0d6efd, #373738);
  color: rgb(219, 219, 219);
}

.tams-cta .cta-color {
  color: #f1efef !important;
} */

/* ========= IT SERVICES SOLUTION =========== */
.it-banner {
  background: url("/images/page-contents/it_support/i") center center/cover
    no-repeat;
}

/* ========= SECURITY SOLUTIONS =========== */

.security-banner {
  background: url("/images/page-contents/solutions_banners/security_access_control.webp")
    center/cover no-repeat;
}

.security-banner .container {
  max-width: 850px;
}

/* ======== SERVICES PAGE STYLES =========== */
/* Banner Section */
.service-banner {
  height: 65vh;
  position: relative;
}

.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  transition: background 0.3s ease;
  /* opacity: 0.7; */
}

.service-banner:hover::before {
  background: rgba(0, 0, 0, 0.65);
}

.service-banner .container {
  position: relative;
  z-index: 1;
}

/* ----------- SERVICE Content Section ---------- */
.content {
  background-color: #f8f9fa;
}

/* ============ ACCESS CONTROL =========== */
.access-control-banner {
  background: url("/images/page-contents/access_control/access_control.webp")
    center/cover no-repeat;
}

.access-control-content {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.access-control-content .container {
  max-width: 1100px;
  margin: 0 auto;
}

.access-control-content ul {
  columns: 2;
  column-gap: 40px;
  list-style-type: disc;
  padding-left: 20px;
}

.a-c-img {
  max-height: 380px;
  object-fit: cover;
}

.nc-img {
  max-height: 280px;
}

@media screen and (max-width: 768px) {
  .service-banner {
    height: 50vh;
  }

  .access-control-banner h2 {
    font-size: 1.5rem;
  }

  .access-control-banner p {
    font-size: 1rem;
  }

  .access-control-content ul {
    columns: 1;
  }
}

/* ============ NETWORKING =========== */
.networking-banner {
  background: url("/images/page-contents/networking/networking_installation_in_nigeria_.webp")
    center/cover no-repeat;
}

/* ============ TELEPHONE SYSTEMS =========== */

.telephone-banner {
  background: url("/images/page-contents/telephone/telephone_installation_in_nigeria_.webp")
    center/cover no-repeat;
}

.telephone-banner::before {
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  opacity: 0.4;
}

.telephone img {
  border-radius: 1rem;
  max-height: 420px;
  object-fit: cover;
}

/* ============= CCTV ============ */

.cctv-banner {
  background: url("/images/page-contents/cctv/professional_cctv_installation_in_nigeria.webp")
    center/cover no-repeat;
}

.cctv-banner::before {
  opacity: 0.7;
}

.cctv img {
  border-radius: 1rem;
  max-height: 280px;
  object-fit: cover;
}

.cctv img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cctv img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* =========== ENTRY INTERCOM =========== */

.entry-intercom-banner {
  background: url("/images/page-contents/entry_intercom/entry-intercom-banner.webp")
    center/cover no-repeat;
  /* background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)); */
}

/* ===============IT SUPPORT =============== */

.it-support-banner {
  background: url("/images/page-contents/it_support/it-support.webp")
    center/cover no-repeat;
    height: calc(100vh - 70px);
    position: relative;
}
.it-support-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.5);  Dark overlay for readability */
  transition: background 0.3s ease;
  /* opacity: 0.7; */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}
.it-support-service-content {
  /* background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6)); */
  background: #0a1a3f;
} 


/*---------------------------------------
    ========== RESPONSIVE STYLES ===========
  -----------------------------------------*/
@media only screen and (min-width: 1200px) {
}

@media screen and (max-width: 991px) {

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .page-link {
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    padding: 15px 30px;
    min-width: 125px;
  }

  .about-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .about-image {
    width: 260px;
    height: 260px;
  }

  .about-image-small {
    width: 180px;
    height: 180px;
  }

  .custom-block,
  .contact-form {
    padding: 30px;
  }

  .reviews-thumb {
    margin-bottom: 24px;
  }

  .reviews-body {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .banner {
    height: calc(80vh - 70px);
    background-size: cover;
  }

  .banner-headline {
    font-size: 2.6em;
    top: 30%;
    padding: 15px;
  }

  .banner-sub {
    font-size: 1.2em;
    top: 50%;
    padding: 15px;
  }

  .banner-btn {
    margin-top: 20rem;
  }

  .top-page-image {
    width: 60vw;
  }

  .services-container {
    height: auto;
  }

  .why-us-points {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .divider {
    display: none;
  }

  .points {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  /* HOME PAGE BEGIN */
  .banner-btn {
    margin-top: 27rem;
  }

  /* HOME PAGE END */
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .about-image {
    width: 205px;
    height: 205px;
  }

  .about-image-small {
    width: 145px;
    height: 145px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }
}

/*----------------------------------------
============ FOOTER SECTION ================
-------------------------------------------*/
.footer-top {
  /* height: 75vh; */
  padding: 100px 0;
  background-color: #e6eaf4;
}

.footer-brand {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.footer-brand-con {
  padding-bottom: 15px;
  /* width: 30px; */
  /* border: #000000 1px solid; */
}

.footer-logo-icon {
  width: 14px;
  margin: 0 1px 6.6px 1px;
  font-size: 12px;
  color: #000000;
}

.footer-tagline {
  font-size: var(--menu-footer-font-size);
  font-weight: var(--font-weight-light);
  color: var(--p-color);
  padding: 15px 15px 15px 0;
  line-height: 1.8;
}

.foot-item {
  margin-left: 5px;
  padding: 5px 0;
  font-size: var(--menu-footer-font-size);
}

.footer-service {
  list-style-type: none;
  margin-left: -4px;
  padding: 0;
}

.information {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.footer-info {
  font-size: var(--menu-footer-font-size);
}

.contact-icon {
  color: var(--primary-color) !important;
}
.contact-link:hover {
  color: var(--primary-color);
}

.office-add {
  padding-top: 10px;
}

.connect-with-us {
  padding-top: 2rem;
}

.social-icon-con {
  margin-top: 20px;
}

.footer-bottom {
  background-color: var(--brand-drk-color);
  color: var(--white-color);
  font-size: var(--menu-footer-font-size);
  font-weight: 300;
}

.footer-bottom a {
  color: var(--white-color);
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/*----------------------------------------
    FORMAT RECAPTCHA BADGE
------------------------------------------*/

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 2px !important;
  bottom: 3px !important;
  opacity: 0.85 !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
  opacity: 1 !important;
}

/* =============== UTILITY STYLES ==================== */

/*--------------------------------------------
    PAGE FORM HANLING
----------------------------------------------- */

.alert {
  margin: 1em 0;
  padding: 1em;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  animation: fadeIn 0.5s;
}

.alert.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------
    SOCIAL ICON               
  -----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 15px;
  text-align: center;
  /* border: #000000 1px solid; */
}

.social-icon-link:hover {
  color: var(--p-color);
}

.social-icon-twitter {
  color: var(--twitter-color);
}

.social-icon-facebook {
  color: var(--facebook-color);
}

.social-icon-linkedin {
  color: var(--linkedIn-color);
}

.social-icon-youtube {
  color: var(--youtube-color);
}

.social-icon-instagram {
  color: var(--instagram-color);
}

.social-icon-pinterest {
  color: var(--pinterest-color);
}

.social-icon-google {
  color: var(--google-color);
}

.social-icon-whatsapp {
  color: var(--whatsapp-color);
}
