* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --theme-blue: #0066cbd9;
  --theme-dark-blue: #001447;
}
main {
  position: relative;
}
.bg-theme-blue {
  background-color: var(--theme-blue);
}
/* NAV BAR */
.logo {
  width: 210px;
  height: auto;
  object-fit: cover;
  margin: 10px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-nav-bar {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 102, 203, 0.85);
  z-index: 1000;
}

.nav-item {
  height: auto;
  padding: 35px 0;
}

#navbarNav button {
  height: auto;
  padding: 12px !important;
}

.nav-item.active {
  border-bottom: 2px solid #fff;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.navbar-toggler-icon::before {
  content: "☰";
  font-size: 1.5rem;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  content: "✖";
}

.navbar-collapse {
  background-color: transparent;
  padding: 1rem;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}

.navbar-collapse.show {
  display: flex;
}

.nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  width: 100%;
}

.nav-item a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-s-margin {
  margin-left: 16px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
    padding: 0;
  }

  .theme-nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-toggler {
    display: none;
  }

  .nav {
    flex-direction: row !important;
    gap: 30px;
  }

  .nav-item {
    width: auto;
  }

  .nav-item a {
    padding: 0;
  }
}

/* NAV BAR END */
.border-left {
  border-left: 1px solid #fff;
  border-radius: 0;
}
.theme-color-blue {
  color: var(--theme-blue);
}

.bg-logo-white {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 12px 8px;
  margin-bottom: 5px;
}
.btn-white {
  color: var(--theme-blue);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  padding: 10px 50px;
  border: 2px solid white;
  font-weight: 500;
  margin: 20px 0;
}
.btn-outline-white {
  color: white;
  border: 2px solid white;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  padding: 10px;
}

.btn-outline-white:hover {
  color: var(--theme-blue);
  background-color: white;
  border-color: white;
}
.btn-white:hover {
  color: #fff;
  background-color: var(--theme-blue);
  border-color: white;
}

#searchForm {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
  z-index: 1050;
}

#searchForm.show {
  height: 200px;
}

/* BANNER TOP SECTION */

.banner-section,
.about-page-section,
.services-page-section,
.about-us-card,
.pages-banner-section,
footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}
.banner-section,
.about-page-section,
.services-page-section,
.pages-banner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.banner-section,
.about-page-section,
.services-page-section,
.pages-banner-section {
  height: 800px;
}
.pages-banner-section {
  height: 500px;
}
.banner-section {
  background-image: url("/assets/img/home-bg.webp");
}
.about-page-section {
  background-image: url("/assets/img/about-banner.webp");
}
.services-page-section {
  background-image: url("/assets/img/services-banner.webp");
}
.cloud-desktop-banner-section {
  background-image: url("/assets/img/pages/S4.webp");
}
.cloud-solutions-banner-section {
  background-image: url("/assets/img/pages/S1.webp");
}
.disaster-recovery-banner-section {
  background-image: url("/assets/img/pages/S3.webp");
}
.manage-it-services-banner-section {
  background-image: url("/assets/img/pages/S2.webp");
}
.network-solutions-banner-section {
  background-image: url("/assets/img/pages/S5.webp");
}
.support-consulting-banner-section {
  background-image: url("/assets/img/pages/S6.webp");
}

.banner-title {
  font-size: 70px;
  margin: 85px 0 85px;
  color: #fff;
  /* font-weight: bold; */
}

/* ABOUT SECTION */

.about-us-card {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  height: auto;
  padding: 100px 50px;
  background-image: url("/assets/img/home-banner.webp");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
.about-us-card p,
.about-page-section p,
.services-page-section p {
  font-size: 1.25rem;
}

/* SERVICES SECTION */

.our-services-section {
  margin-top: 400px;
}
.services-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.services-boxes a,
.services-card a {
  text-decoration: none;
}
.section-title {
  font-size: 42px;
}
.half-border {
  position: relative;
  display: inline-block;
  padding-bottom: 30px;
}

.half-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  border-bottom: 10px solid var(--theme-blue);
}
.theme-text-blue {
  color: var(--theme-blue);
  font-weight: bold;
}
.section-title-margin {
  margin: 70px 0;
}
.font-size-25 {
  font-size: 25px;
}
.our-services-section .services-boxes .box {
  width: calc(33% - 10px);
  background-color: var(--theme-dark-blue);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}
.our-services-section .services-boxes .box:hover {
  transform: translateY(-10px);
  background-color: var(--theme-blue);
}
.our-services-section .box img {
  display: block;
  margin-left: auto;
}
.our-services-section .box .box-img {
  width: 100%;
}
/* PARTNERS SECTION */
.slider-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slider img {
  flex-shrink: 0;
  height: auto;
  margin: 0 5px;
}

.custom-nav {
  display: flex;
  margin: 20px;
  gap: 10px;
}

.prev-slide,
.next-slide {
  color: var(--theme-blue);
  border: 1px solid var(--theme-blue);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 26px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
  background-color: var(--theme-blue);
  color: #fff;
}

/* CONTACT US SECTION */
.contact-us {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-us .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.contact-us .content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 50px 0;
}
.contact-us-input {
  border: 1px solid white;
  background-color: transparent;
  color: #fff;
  height: 50px;
}

.contact-us-input::placeholder {
  color: #fff;
}

/* FOOTER SECTION */

footer {
  width: 100%;
  height: auto;
  background-image: url("/assets/img/footer/footer-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.page-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0;
  flex-wrap: wrap;
}

.bottom-footer .footer-left a,
.page-footer .services-link a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  flex-wrap: wrap;
}
.page-footer .services-link {
  padding: 0 50px;
}
.link-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-media-links .link-logo .social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.social-media-links .link-logo .social-icon.fb {
  background-image: url("/assets/img/socalmedia/svg-default/FB.svg");
}

.social-media-links .link-logo .social-icon.ig {
  background-image: url("/assets/img/socalmedia/svg-default/IG.svg");
}

.social-media-links .link-logo .social-icon.in {
  background-image: url("/assets/img/socalmedia/svg-default/IN.svg");
}

.social-media-links .link-logo .social-icon.tt {
  background-image: url("/assets/img/socalmedia/svg-default/TT.svg");
}

.social-media-links .link-logo .social-icon.yt {
  background-image: url("/assets/img/socalmedia/svg-default/YT.svg");
}

.social-media-links .link-logo .social-icon.fb:hover {
  background-image: url("/assets/img/socalmedia/svg-hover/FB.svg");
}
.social-media-links .link-logo .social-icon.ig:hover {
  background-image: url("/assets/img/socalmedia/svg-hover/IG.svg");
}
.social-media-links .link-logo .social-icon.in:hover {
  background-image: url("/assets/img/socalmedia/svg-hover/IN.svg");
}
.social-media-links .link-logo .social-icon.tt:hover {
  background-image: url("/assets/img/socalmedia/svg-hover/TT.svg");
}
.social-media-links .link-logo .social-icon.yt:hover {
  background-image: url("/assets/img/socalmedia/svg-hover/YT.svg");
}

.footer-left ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-left ul,
.services-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}
.services-link h3,
.social-media-links h3 {
  margin: 50px 0 65px;
}
.footer-left ul {
  gap: 20px;
}
.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.services-link,
.page-brand,
.social-media-links {
  width: calc(33% - 10px);
}

.modal.fade .modal-dialog {
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.modal.fade .modal-dialog .modal-body {
  height: 100%;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
}

/* SERVICES PAGES */

.services-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.services-card {
  position: relative;
  width: calc(33.96% - 10px);
  height: 500px;
  overflow: hidden;
  display: flex;
  padding: 30px;
  color: #fff;
}

.services-card .card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-content {
  height: 300px;
}
.highlight {
  background-color: yellow;
  color: black;
  font-weight: bold;
}

/* Extra Small Devices (Portrait Phones, <576px) */
@media (max-width: 575.98px) {
  .our-services-section .services-boxes .box {
    width: 100%;
  }
  .w-small-100 {
    width: 100% !important;
  }
  .btn-white {
    padding: 10px;
  }
  .about-us-card {
    padding: 10px;
  }
  .services-link,
  .page-brand,
  .social-media-links {
    width: 100%;
  }
  .services-link h3,
  .social-media-links h3 {
    margin: 35px 0 25px;
  }
  .page-footer .services-link {
    padding: 0;
  }
  .bottom-footer {
    flex-wrap: wrap;
  }
  .footer-img-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .border-left {
    border-left: none;
    border-radius: 0;
  }
  nav,
  #navbarNav button {
    width: 100%;
  }
  #navbarNav button {
    border-radius: 10px;
    border: 2px solid #fff;
    padding: 12px;
    margin-top: 10px;
  }
  .banner-title {
    font-size: 40px;
    margin: 0 0 115px;
  }
  .banner-section,
  .about-page-section,
  .services-page-section {
    height: 650px;
  }
  .pages-banner-section {
    height: 350px;
  }
  .pages-banner-section .banner-title {
    font-size: 40px;
    margin: 0;
  }
  .nav-item {
    padding: 22px 0;
  }
  .btn-s-margin {
    margin-left: 0 !important;
  }
  .section-title-margin {
    margin: 40px 0;
  }
  .our-services-section {
    margin-top: 300px;
  }
  .footer-right {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding: 10px;
  }
  .about-us-card p,
  .about-page-section p,
  .services-page-section p {
    font-size: 1rem;
  }
  .services-card {
    width: 100%;
  }
  .page-content {
    height: auto;
  }
  .section-title {
    font-size: 32px;
  }
  .about-page-card h5.card-text {
    font-size: 1rem;
  }
}

/* Small Devices (Landscape Phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .our-services-section .services-boxes .box {
    width: 100%;
  }
  .w-small-100 {
    width: 100% !important;
  }
  .services-link,
  .page-brand,
  .social-media-links {
    width: 100%;
  }
  .services-link h3,
  .social-media-links h3 {
    margin: 15px 0 10px;
  }
  .page-footer .services-link {
    padding: 0;
  }
  .bottom-footer {
    flex-wrap: wrap;
  }
  .footer-img-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .border-left {
    border-left: none;
    border-radius: 0;
  }
  nav,
  #navbarNav button {
    width: 100%;
  }
  #navbarNav button {
    border-radius: 10px;
    border: 2px solid #fff;
    padding: 12px;
    margin-top: 10px;
  }
  .banner-title {
    font-size: 40px;
    margin: 0 0 115px;
  }
  .banner-section,
  .about-page-section,
  .services-page-section {
    height: 650px;
  }
  .pages-banner-section {
    height: 350px;
  }
  .pages-banner-section .banner-title {
    font-size: 40px;
    margin: 0;
  }
  .nav-item {
    padding: 22px 0;
  }
  .btn-s-margin {
    margin-left: 0 !important;
  }
  .section-title-margin {
    margin: 40px 0;
  }
  .our-services-section {
    margin-top: 300px;
  }
  .footer-right {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding: 10px;
  }
  .about-us-card p,
  .about-page-section p,
  .services-page-section p {
    font-size: 1rem;
  }
  .services-card {
    width: 100%;
  }
  .page-content {
    height: auto;
  }
  .section-title {
    font-size: 32px;
  }
  .about-page-card h5.card-text {
    font-size: 1rem;
  }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* CSS for medium devices */
}

/* Large Devices (Laptops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* CSS for large devices */
}

/* Extra Large Devices (Desktops, 1200px and above) */
@media (min-width: 1200px) {
  /* CSS for extra large devices */
}
