@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-green: #1ee625;
  --secondary-blue: #4a9eff;
  --dark-blue: #053a81;
  --orange-accent: #ff6b35;
  --yellow-accent: #ffc107;
  --dark-bg: #1a1a2e;
  --darker-bg: #0f0f1a;
  --text-light: #ffffff;
  --text-gray: #b8b8b8;
  --overlay-dark: rgba(0, 0, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  overflow-x: hidden;
}

/* Header Styles */
.header-section {
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  padding-top: 0;
}

.sticky-header {
  background-color: #000;
}

.navbar-brand {
  text-decoration: none;
}

.navbar-brand img {
  width: 250px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}


.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.logo-badge {
  background: var(--primary-green);
  color: var(--dark-bg);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 400;
  margin-left: 0.25rem;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 1.25rem;
  padding: 0.5rem 0 !important;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.call-btn {
  background: #1dd04a;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  transition: all 0.3s ease;
  border-top: 2px solid #fff;
  z-index: 2;
}

.call-btn i {
  font-size: 1.1rem;
}

.call-btn:hover {
  background: #00e67a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 46, 0.25) 0%,
      rgba(15, 15, 26, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 2rem 0;
  padding-top: 90px;
}

.hero-subtitle {
  color: var(--primary-green);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 75px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
}

.hero-description {
  font-size: 26px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 36px;
}

.rqust-qt-btn {
  background-color: var(--dark-blue);
  color: #fff !important;
  padding: 15px 25px;
  text-decoration: none;
  transform: skewX(-30deg);
  transition: 0.4s;
}

.rqust-qt-btn span {
  transform: skewX(30deg);
  display: inline-block;
}

.rqust-qt-btn:hover {
  background-color: var(--primary-green);
}

.rqust-qt-btn img {
  width: 20px;
  background: var(--primary-green);
  padding: 3px;
  height: 20px;
  border-radius: 560%;
}

.consultation-card {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.btn-consultation {
  background: var(--secondary-blue);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.btn-consultation:hover {
  background: #3d8bff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 158, 255, 0.4);
  color: var(--text-light);
}

.hero-bottom-actions {
  position: absolute;
  z-index: 4;
  margin-top: 0;
  width: 100%;
  bottom: -35px;
}

.hero-bottom-actions ul {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}

.hero-bottom-actions ul li {
  padding-left: 5px;
  padding-right: 5px;
  width: 25%;
}

.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0;
  background-color: #13b92d;
  transform: skewX(-30deg);
}

.action-btn span {
  transform: skewX(15deg);
  display: inline-block;
}

.hero-bottom-actions ul li:nth-child(2) .action-btn {
  background-color: #39a0ee;
}

.hero-bottom-actions ul li:nth-child(3) .action-btn {
  background-color: #fd6216;
}

.hero-bottom-actions ul li:nth-child(4) .action-btn {
  background-color: #ffa918;
}

.managed-it-btn .action-content {
  color: #fff;
}

.cio-btn .skewed-bg {
  background-color: #2f97f2;
}

.cio-btn .action-content {
  color: #fff;
}

.cyber-security-btn .skewed-bg {
  background-color: #f7631b;
}

.cyber-security-btn .action-content {
  color: #fff;
}

.app-web-dev-btn .skewed-bg {
  background-color: #f9a825;
}

.app-web-dev-btn .action-content {
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .action-btn {
    height: 80px;
  }

  .skewed-btn .action-content {
    font-size: 0.9rem;
    padding: 1rem;
    gap: 0.4rem;
  }
}

/* HIPAA Compliance Section */
.hipaa-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.hipaa-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}

.hipaa-highlight {
  color: var(--secondary-blue);
}

.hipaa-description {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-section {
  background: #ffffff;
}

.why-choose-section-row {
  display: flex;
  position: relative;
}

.why-choose-section-right {
  width: 70%;
  margin-left: auto;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.why-choose-section-lft {
  position: absolute;
  left: 0;
  top: 10px;
  width: 45%;
  height: calc(100% - 10px);
  overflow: hidden;
}

.why-choose-image {
  height: 500px;
  overflow: hidden;
  display: flex;
  height: 100%;
}

.why-choose-content {
  background: #ff9500;
  padding: 4rem 10rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 200px;
  position: relative;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

.why-choose-text {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.why-choose-text:last-child {
  margin-bottom: 0;
}

/* Managed IT Section */
.managed-it-section {
  background: #f4f4f4;
  color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.managed-it-section .section-title {
  color: #000;
  font-weight: bolder;
  font-size: 3.4rem;
	line-height:1.1em
}

.managed-it-section .section-description {
    font-size: 18px;
    margin-bottom: 20px;
}

.managed-it-section .rqust-qt-btn {
  background: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
}

.managed-it-section .rqust-qt-btn span {
  transform: skewX(30deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .navbar-nav .nav-link {
    margin: 0 0.75rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .consultation-card {
    margin-top: 2rem;
    justify-content: flex-start;
  }

  .action-btn {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
  }

  .why-choose-content {
    height: auto;
    padding: 3rem 2rem;
  }

  .why-choose-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-bottom-actions .container {
    padding: 0 30px !important;
  }

  .hero-bottom-actions .container .row {
    flex-direction: column;
    gap: 15px;
  }

  .skewed-btn .skewed-bg {
    left: 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }

  .call-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .action-btn {
    padding: 1rem 1rem;
    font-size: 0.8rem;
  }

  .action-text {
    font-size: 0.8rem;
  }

  .hipaa-title {
    font-size: 2rem;
  }

  .hipaa-description {
    font-size: 1rem;
  }

  .why-choose-title {
    font-size: 1.8rem;
  }

  .why-choose-text {
    font-size: 0.95rem;
  }

  .why-choose-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .btn-consultation {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .action-btn {
    padding: 0.875rem 0.75rem;
    font-size: 0.75rem;
  }

  .network-dot {
    width: 6px;
    height: 6px;
  }

  .network-line {
    width: 100px !important;
  }

  .hipaa-title {
    font-size: 1.75rem;
  }

  .why-choose-title {
    font-size: 1.6rem;
  }

  .why-choose-content {
    padding: 2rem 1rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(26, 26, 46, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonial-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Section Background */
.testimonials-section {
  background: #ffffff;
  padding: 100px 0;
}

.testimonials-section .section-title {
  font-size: 52px;
}

/* Headings */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

.testimonial-subtitle {
  font-size: 1rem;
  color: #444;
}

/* Slider Container */
.testimonials-slider {
  position: relative;
}

/* Slide Layout */
.testimonial-slide {
  padding: 0 15px;
  outline: none;
}

/* Testimonial Card Style (Dark Blue & Slanted) */
.testimonial-card {
  color: #fff;
  padding: 2rem 4rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.testimonial-content {
  transform: skewX(-15deg);
  background: #00357a;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-content-inr {
  transform: skewX(+15deg);
}

/* Inner content */

/* Quote Icons */
.quote-icon,
.quote-icon-right {
  font-size: 62px;
  color: #00c851;
  /* Bright green */
  opacity: 1;
}

.quote-icon {
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
}

.quote-icon-right {
  position: absolute;
  bottom: -145px;
  left: 50%;
  transform: translateX(-50%);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 2rem 0 2rem;
  font-style: italic;
  color: #fff;
}

/* Author Section */
.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00c851;
}

.author-info {
  text-align: left;
  color: #fff;
}

.author-name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Navigation Arrows (Green) */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width: 40px;
  height: 40px;
  background: #00c851;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
}

.testimonials-slider .slick-prev {
  left: -50px;
}

.testimonials-slider .slick-next {
  right: -50px;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  font-size: 16px;
}

.testimonials-slider .slick-prev:before {
  content: "\f104";
  /* fa-chevron-left */
}

.testimonials-slider .slick-next:before {
  content: "\f105";
  /* fa-chevron-right */
}

/* Dots */
.testimonials-slider .slick-dots {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1rem;
  }

  .testimonials-slider .slick-prev {
    left: -20px;
  }

  .testimonials-slider .slick-next {
    right: -20px;
  }

  .testimonial-author {
    flex-direction: column;
  }

  .author-info {
    text-align: center;
  }
}

.bg-green {
  background: var(--primary-green);
  color: #000;
  padding: 50px;
}

.bg-dark {
  background: #2a2b2f;
  color: #fff;
  padding: 50px;
}

.bg-blue {
  background: #00305e;
  color: #fff;
  padding: 40px;
}

.site-footer .bg-white {
  background: #fff;
  color: #000;
  padding: 40px;
}

.appointment-content h2 {
  font-weight: 800;
  font-size: 42px;
	line-height:48px;
}

.appointment-content p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 2.1;
}

.contact-section {
  background: var(--primary-green);
}

.contact-section-row {
  display: flex;
  align-items: center;
}

.contact-section-lft {
  width: 40%;
  position: relative;
}

.contact-section-right {
  width: 69%;
  padding-left: 300px;
  position: relative;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 8% 100%);
}

.contact-form-wrapper .form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-form-wrapper .form-group label {
  white-space: nowrap;
  margin-right: 10px;
}

.contact-section .btn-green {
  padding: 15px 35px;
  transform: skewX(-30deg);
  color: #fff;
}

.contact-section .btn-green span {
  transform: skewX(+30deg);
}

.contact-form-wrapper input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px dashed #ccc;
  background: transparent;
  color: #fff;
  outline: none;
}

.btn-green {
  background: #3dde59;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-signup {
  background: #3dde59;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
}

.newsletter h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.newsletter input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.newsletter-right h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.newsletter-right p {
  margin-bottom: 0;
  line-height: 36px;
}

.footer-bottom {
  padding: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

.footer-bottom p {
  color: #000;
}

.site-footer .bg-blue {
  display: flex;
  align-items: center;
}

.site-footer .bg-blue img {
  width: 250px;
  height: auto;
  margin-right: 20px;
}

.btn-signup {
  transform: skewX(-30deg);
}

.btn-signup span {
  transform: skewX(+30deg);
}

.footer-icons a {
  background-color: #3dde59;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #05397f;
  border-radius: 50%;
}

.footer-links a {
  margin-left: 15px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.navbar-brand {
  padding-left: 300px;
}

.btn-green {
  margin-left: auto;
}

.real-time-sec .container-fluid {
  position: relative;
}

.real-time-sec-item {
  min-height: 750px;
  display: flex;
  align-items: end;
  position: relative;
  padding: 30px;
}

.real-time-sec-item>div {
  position: relative;
  z-index: 99;
}

.real-time-sec-item h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 400;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.real-time-sec-item p {
  /*visibility:hidden;*/
  opacity: 0;
  font-size: 22px;
  line-height: 32px;
  transition: 0.5s;
  height: 0;
  color: #fff;
  /*-webkit-transition: max-height 0.5s ease;*/
  /*transition: max-height 0.5s ease;*/
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.real-time-sec-item a {
  display: inline-block;
  color: #fff;
}

.real-time-sec h2 {
  position: absolute;
  z-index: 9;
  top: 100px;
  padding-left: 25px;
}

.real-time-sec-item:after {
  content: '';
  position: absolute;
  opacity: 0.2;
  background: black;
  top: 0;
  right: 1px;
  left: 0;
  bottom: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.real-time-sec-slider .slick-slide.slick-current.slick-active .real-time-sec-item p {
  /*visibility:visible;
    opacity:1;
    height:auto;*/
}

.real-time-sec-slider .slick-slide.slick-current.slick-active .real-time-sec-item:after {
  /*opacity: 0.3;*/
}

.real-time-sec-slider .slick-slide.show-data .real-time-sec-item p {
  /*visibility:visible;*/
  opacity: 1;
  height: auto;
  /*   -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease*/
  ;
}

.real-time-sec-slider .slick-slide.show-data .real-time-sec-item:after {
  opacity: 0.3;
}

.slick-next {
  right: 20px;
  z-index: 999;
}

.slick-prev {
  z-index: 999;
  left: 20px;
}

.real-time-sec-slider .slick-slider {
  margin: 0 -1px;
}

.real-time-sec-slider .slick-slide {
  margin-right: 1px;
  margin-left: 1px;
}

.real-time-sec {
  background-size: cover;
  background-position: center;
  height: 750px;
  overflow: hidden;

  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
}

.need-help-now .columns:nth-of-type(2) .bg {
  background-image: linear-gradient(-60deg, #2c2e33 50.1%, transparent 0%);
}

.services-offered {
  height: 1200px;
  overflow: hidden;
  padding-bottom: 10rem;
  padding-top: 10rem;
  position: relative;
}

.services-offered .circle-wrapper {
  background: url("../images/service-bgnew.png") no-repeat;
  height: 100%;
  position: relative;
  z-index: 3;
  background-size: contain;
}

.services-offered .circle {
  align-items: center;
  display: flex;
  position: absolute;
  top: 54%;
  left: 75%;
  width: calc(var(--vw, 1vw) * 100);
}

.services-offered .circle .sprite {
  background-position: top;
  width: 100%;
}

.services-offered .circle:hover .sprite {
  background-position: bottom;
}

.services-offered .circle:hover h3,
.services-offered .circle:hover a {
  color: #FFA200;
}

.services-offered .circle:hover h3 {
  font-size: 1.25vw;
  transition: all 0.2s;
}

.services-offered .circle h3 {
  color: #1f1d1d;
  font-size: 1vw;
  line-height: 1;
  text-transform: uppercase;
}

.services-offered .circle p {
  display: -webkit-box;
  left: 474px;
  overflow: hidden;
  padding-right: 5rem;
  position: absolute;
  top: 80px;
  width: 300px;
  z-index: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 74.9375em) {
  .services-offered .circle p {
    display: none !important;
  }
}

.services-offered .circle.business-continuity {
  transform: rotate(-8deg) translate(268px) rotate(8deg);
  top: 65%;
  left: 68%;
}

/* @media screen and (max-width: 89.9375em) {
  .services-offered .circle.business-continuity {
    display: none !important;
  }
} */

.services-offered .circle.business-continuity img {
  height: auto;
  width: 471px;
}

.services-offered .circle.business-continuity p {
  left: 0;
  top: 25px;
  color: #000;
}

.services-offered .circle.business-continuity .sprite {
  height: 106px;
  max-width: 471px;
}

.services-offered .circle.cloud-services {
  transform: rotate(46deg) translate(274px) rotate(-46deg);
  top: 68%;
  left: 62%;
}

.services-offered .circle.cloud-services h3 {
  align-self: flex-end;
  margin-bottom: 40px;
}

.services-offered .circle.cloud-services p {
  left: 0;
  top: 14px;
  color: #000;
}

.services-offered .circle.cloud-services .sprite {
  height: 121px;
  max-width: 362px;
}

.services-offered .circle.voip-services {
  transform: rotate(91deg) translate(326px) rotate(-91deg);
}

.services-offered .circle.voip-services h3 {
  align-self: flex-end;
  margin-bottom: 40px;
}

.services-offered .circle.voip-services p {
  left: 350px;
  top: 134px;
}

.services-offered .circle.voip-services .sprite {
  height: 170px;
  max-width: 349px;
}

.services-offered .circle.managed-it-services {
  transform: rotate(271deg) translate(469px) rotate(-271deg);
}

.services-offered .circle.managed-it-services p {
  left: 0;
  top: 26px;
  color: #000;
}

.services-offered .circle.managed-it-services .sprite {
  height: 132px;
  max-width: 349px;
}

.services-offered .circle.cybersecurity {
  transform: rotate(309deg) translate(345px) rotate(-309deg);
  top: 61%;
  left: 72%;
}

.services-offered .circle.cybersecurity p {
  left: 0;
  top: 26px;
  color: #000;
}

.services-offered .circle.cybersecurity .sprite {
  height: 106px;
  max-width: 349px;
}

.services-offered .bg {
  background-image: linear-gradient(120deg, #f3f3f3 40%, transparent 0%);
  z-index: 2;
}

.comprehensive-it-services {
  color: white;
  padding-bottom: 10rem;
  padding-top: 10rem;
}

.comprehensive-it-services[data-img-src] {
  background-position: top;
}

.comprehensive-it-services .notch.upper-left {
  background-image: linear-gradient(120deg, #f3f3f3 50.1%, transparent 0%);
  left: 0;
  top: 0;
}

.comprehensive-it-services .bg {
  background-image: linear-gradient(-60deg, #FFA200 50%, transparent 0%);
  z-index: 2;
}

.comprehensive-it-services .bg2 {
  background-image: linear-gradient(-60deg, #2c2e33 51.5%, transparent 0%);
  z-index: 1;
}

.for-mobile {
  display: none;
}

.about-area, .about-two-area {
  overflow: hidden;
  position: relative;
  padding-bottom: 240px;
}
.about__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.about__shape img {
  width: 100%;
  animation: sway_Y 5s linear infinite alternate;
}
.about__left-item, .about-two__left-item {
  position: relative;
}
@media (max-width: 1199px) {
  .about__left-item, .about-two__left-item {
    max-width: 580px;
    margin: 0 auto;
  }
}
.about__left-item .big-image, .about-two__left-item .big-image {
  max-width: 386px;
  position: relative;
  z-index: 1;
}
.about__left-item .sm-image, .about-two__left-item .sm-image {
  max-width: 295px;
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 2;
}
.about__left-item .sm-image .video__btn-wrp, .about-two__left-item .sm-image .video__btn-wrp {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__left-item .circle-shape, .about-two__left-item .circle-shape {
  position: absolute;
  top: 30px;
  right: 80px;
}
.about__right-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about__right-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  width: 100%;
  max-width: 80px;
  border-radius: 0;
  background-color: var(--primary10);
}
.about__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 575px) {
  .about__info {
    gap: 5px;
  }
}
.about-two-area {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .about-two-area {
    padding-bottom: 60px;
  }
}
.about-two__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.about-two__left-item .circle-shape {
  right: unset;
  left: -32%;
  top: 12%;
  animation: rotate 5s linear infinite;
}
.about-two__left-item .dots {
  position: absolute;
  right: 15%;
  top: 0;
}
.about-two__left-item .shape-halper {
  position: absolute;
  top: 28%;
  right: 26%;
}
.about-two__left-item .sm-image {
  bottom: 20px;
}
.about-two__right-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
}
.about-two__right-item ul li {
  color: var(--heading-color);
  font-weight: 600;
}
.about-two__right-item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.about-two__right-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}
.about-three-area {
  z-index: 1;
}
.about-three__box-up {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: -1;
}
.about-three__box-down {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
}
.about-three__info {
  max-width: 430px;
}
.about-three__info .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  width: 100%;
  max-width: 64px;
}
.about-three__left-item {
  max-width: 450px;
}
.about-three__left-item .about-call-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
}
.about-three__left-item .about-call-icon span {
  width: 48px;
  height: 48px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
}
.about-three__image {
  max-width: 634px;
  float: right;
  z-index: 1;
}
.about-three__image .faq__line {
  left: 20% !important;
  z-index: -1;
  top: 10px;
}
.about-three__image .about-three-dot {
  position: absolute;
  left: 8%;
  bottom: 15%;
  z-index: -1;
}
.about-three__image .about-three-count {
  box-shadow: var(--shadow);
  width: 208px;
  position: absolute;
  top: 23%;
  left: 10px;
  background-color: var(--white);
  border-radius: 8px;
}
.about-three__image .about-three-count h3 {
  font-size: 28px;
  line-height: 40px;
}
.about-three__image .about-three-count h3 span {
  color: var(--secondary-color);
}
.about-three__image .about-three-count .icon {
  width: 40px;
}


@media(max-width:1700px) {
  .services-offered .circle {
    left: 59%;
  }

  .services-offered .circle.cybersecurity {
    left: 55%;
  }

  .services-offered .circle.business-continuity {
    left: 53%
  }

  .services-offered .circle.cloud-services {
    left: 48%;
  }
}

@media(max-width:1600px) {
  .services-offered .circle {
    left: 62%;
  }

  .services-offered .circle.cybersecurity {
    left: 60%;
  }

  .services-offered .circle.business-continuity {
    left: 56%
  }

  .services-offered .circle.cloud-services {
    left: 51%;
  }
}

@media(max-width:1450px) {
  .services-offered .circle {
    left: 70%;
  }

  .services-offered .circle.cybersecurity {
    left: 65%;
  }

  .services-offered .circle.business-continuity {
    left: 62%
  }

  .services-offered .circle.cloud-services {
    left: 55%;
  }
}

@media(max-width:1299px) {
  .services-offered .circle-wrapper {
    background-size: 80% 100%;
  }
}

@media(max-width:1024px) {
  .services-offered .circle-wrapper {
    background-size: 70% 80%;
  }

  .services-offered .circle {
    left: 62%;
  }

  .services-offered .circle.cybersecurity {
    left: 50%;
    top: 55%;
  }

  .services-offered .circle.business-continuity {
    left: 46%;
    top: 52%;
  }

  .services-offered .circle.cloud-services {
    left: 45%;
    top: 50%;
  }
}

@media(max-width:991px) {
  .services-offered .circle-wrapper {
    background: #fff;
  }

  .services-offered {
    display: none;
    height: auto;
  }

  .for-mobile {
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .for-mobile-inr {
    background-color: #000;
  }

  .for-mobile-inr-row {
    row-gap: 30px;
  }

  .for-mobile-inr {
    background-color: #39a0ee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
  }

    .for-mobile-inr h3 {
        font-size: 36px;
        margin-bottom: 12px;
        color: #fff;
    }

    .for-mobile-inr p {
        font-size: 18px;
        margin-top: 12px;
		  margin-bottom: 12px;
        color: #fff;
    }
	
  .for-mobile-inr a {
    display: inline-block;
    background-color: #ffa918;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
  }
}
@media(max-width:575px){
  
}