/*fonts*/
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?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&display=swap");

/*Global*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

body {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

:root {
  --primary: #ffffff;
  --secondary: #000000;
  --grey: #e0e3cc;
  --blue: #65a2ee;
  --pink: #fdf6eb;
}
html {
  scroll-padding-top: 100px; /* Match your navbar height */
}

.bg-dark {
  background-color: #000000 !important;
}

.font-sora {
  font-family: "Sora", sans-serif;
}

.font-hind {
  font-family: "Hind Madurai", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.py-47 {
  padding: 47px;
}

/*--------------------------
            Home
----------------------------*/
/*Header*/
header {
  /* margin: -1px; */
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 282px;
  height: 100vh;
  overflow-y: scroll;
  background-color: #070707;
  color: white;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1050;
}

.offcanvas-menu.active {
  left: 0;
}

.offcanvas-menu .close-btn {
  text-align: right;
  cursor: pointer;
  margin-bottom: 20px;
}

.offcanvas-menu a,
.offcanvas-menu button {
  display: block;
  margin: 40px 0;
  color: white;
  text-decoration: none;

}

.offcanvas-menu .submenu {
  display: none;
  margin-left: 10px;
}

.offcanvas-menu .submenu.active {
  display: block;
}

.offcanvas-list li a {
  font-size: 13px;
  margin-bottom: -16px;
}

.offcanvas-meeting {
  width: 100%;
  padding: 15px;
}

.submenu {
  display: none;
  list-style: none;
  padding-left: 0;
}

.submenu.show {
  display: block;
}

.offcanvas-list {
  display: none;
  padding-left: 20px;
}

.offcanvas-list.show {
  display: block;
}

.offcanvas-list li a i {
  padding-right: 5px;
}

.submenu li {
  margin-bottom: 10px;
}

/* Mega menu container */
.mega-menu {
  position: relative;
}

.dropdown-menu {
  left: -450px;
}

.digi-subcategory {
  padding-left: 200px;
}

.dropdown-menu.mega-menu-content {
  width: max-content;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link:hover {
  color: #65a2ee;
}

/* mega-menu Service category styling */
.service-category {
  padding: 20px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  height: 100%;
}

.service-category span {
  margin-left: -10px;
}

.service-category:last-child {
  border-right: none;
}

.service-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.5rem;
}

/* Mega-menu Subcategory styling */
.subcategory-list {
  list-style: none;
  padding-left: 0;
}

.subcategory-list li {
  margin-bottom: 10px;
}

.subcategory-list a {
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.subcategory-list a:hover {
  color: #000;
}

.subcategory-list a i {
  margin-right: 10px;
  color: #999;
}

.search-btn:hover {
  background: var(--blue);
  border: none;
  color: white;
}

.meeting {
  background-color: var(--blue);
  border-radius: 4px;
  text-wrap: nowrap;
}

.meeting:hover {
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid var(--primary);
}


/*.navbar-nav {*/
/*  gap: 25px;*/
/*}*/

.navbar-buttons .btn {
  width: 180px;
  height: 48px;
  border-radius: 5px;
  margin-top: 7px;
}

#navbarNav .navbar-buttons {
  display: flex;
  gap: 15px;
}

/*main section css*/
main .container {
  padding-top: 86px;
  padding-bottom: 120px;
  /* max-width: 1259px; */
}

main .hero-img {
  background-image: url("../img/bg-img.gif");
  /* background-image: url(../img/bg.jpg); */
  background-repeat: no-repeat;
  /* background-position: center; */
  object-fit: cover;
  background-size: 1259px 1118px;
}

.hero-content {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 48px;
  /* margin-bottom: 0; */
}

.subtitle {
  color: var(--blue);
}

.animated-txt {
  height: 100px;
  /* margin: 30px auto; */
}

.hero-content p {
  font-weight: 400;
  font-size: 25px;
  text-align: justify;
}

.dot-button {
  display: flex;
  width: 180px;
  height: 55px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 25px 16px 25px 16px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  z-index: 0;
  overflow: hidden;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: color 0.5s ease;
}

.dot-button::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 15px;
  width: 5px;
  height: 5px;
  background-color: #65a2ee;
  border-radius: 100%;
  z-index: -1;
  transition: transform 0.5s ease;
}

.dot-button:hover::before {
  transform: scale(80);
}

.dot-button:hover {
  border: none;
  text-decoration: none;
  border: 1px solid #ffffff;
}

.sticky-icons {
  position: fixed;
  top: 230px;
  z-index: 1000;
}

.sticky-icons a img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-items: center;
}

/*About css*/

/* .abt-content {
  gap: 25px;
} */

/* .abt-content h1 {
  font-weight: 700;
  font-size: 40px;
} */

.abt-content p {
  font-size: 16px;
  width: 100%;
  max-width: 547px;
  height: auto;
  /* text-align: justify; */
}

.abt-btn {
  border-color: var(--secondary);
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

.abt-btn:hover {
  border-color: var(--primary);
  color: #fff;
}

/*services css*/
.services .container-fluid:nth-child(1) {
  background-color: #f3ecec;
}

.services .container-fluid:nth-child(2) {
  background-color: #FFFAF0;
}

.services .container-fluid:nth-child(3) {
  background-color: #f3ecec;
}

.services .container-fluid:nth-child(4) {
  background-color: #F3F7FF;
}

.services .container-fluid:nth-child(5) {
  background-color: #fffaf0;
}

.services .container-fluid:nth-child(6) {
  background-color: #e0e3cc;
}

.slider1 .container,
.slider2 .container,
.slider3 .container,
.slider4 .container,
.slider5 .container,
.slider6 .container {
  padding: 50px 0px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider1 .container .box {
  width: 680px;
  height: auto;
  padding-top: 150px;
  padding-bottom: 150px;
}

.slider1 .box h1 {
  font-weight: 500;
  font-size: 100px;
  text-align: center;
}

.slider2-txt {
  width: 523px;
  height: auto;
}

.slider2-txt pre {
  font-weight: 800;
  font-size: 30px;
  margin-left: -89px;
  margin-bottom: -20px;
  color: #403f41;
}

.slider2-txt h3 {
  font-weight: 400;
  font-size: 32px;
}

.slider2-txt p {
  font-weight: 600;
  font-size: 16px;
  width: 350px;
  height: auto;
  padding-left: 60px;
}

.slider2-img {
  width: 100%;
  height: auto;
}

.slider4-txt {
  width: 523px;
  height: auto;
  margin-top: 55px;
  padding-left: 80px;
}

.slider4-img {
  width: 100%;
  height: auto;
}

.box1-circle {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 614px;
  height: 190px;
}

.cyber-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.cyber-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #2cc6d2;
  border-radius: 50%;
}

.cyber-text {
  font-size: 30px;
  font-weight: 700;
  color: black;
  position: absolute;
  left: 35px;
}

.cyber-circle2::before {
  border-color: #0c3bb1;
}

.cyber-circle3::before {
  border-color: #0072ff;
}

.box2 {
  margin-left: -85px;
  margin-right: 85px;
}

.box2 .cyber-text {
  margin-left: -85px;
}

.slider6 .container .inner-box {
  width: 738px;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.slider6 .inner-box p {
  font-weight: 400;
  font-size: 32px;
}

.slider6 .inner-box h1 {
  font-weight: 700;
  font-size: 64px;
}

.slider-btn {
  border-color: #403f41;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.slider-btn:hover {
  border: none;
  color: #fff;
}

/*How we work css*/
.working {
  margin-top: 50px;
  margin-bottom: 50px;
}

.outlined-number {
  color: black;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 52px;
  text-align: center;
  background: linear-gradient(to bottom, #4a4949, #65a2ee);
  -webkit-background-clip: text;
  background-clip: text;
}

.working .upper-row {
  gap: 78px;
}

.working .lower-row {
  gap: 100px;
  padding-top: 20px;
}

.upper-row .step1 {
  width: 341px;
  height: auto;
  margin-top: 40px;
}

.step1 h6 {
  font-weight: 700;
  font-size: 24px;
}

.step1 p {
  font-weight: 400;
  font-size: 16px;
}

.working .sub-title {
  font-weight: 400;
  font-size: 28px;
}



.progress-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 30px;
  left: 75px;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ccc;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: #008cff;
  transition: width 0.5s ease;
}

.dot-container {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: #7ebeff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

#dot1 {
  margin-left: 20px;
}

#dot3 {
  margin-right: 40px;
}

#dot5 {
  margin-right: 50px;
}

/*Contact css*/
.contact {
  height: auto;
  background-color: var(--grey);
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-txt {
  width: 100%;
  max-width: 545px;
  height: auto;
  gap: 20px;
}

.contact-txt h2 {
  /* font-weight: 700; */
  font-size: 39px;
}

.badges {
  gap: 15px;
}

.badges img{
  border-radius: 10px;
}

.contact-box {
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 436px;
  margin: 0 auto;
}

.form-box {
  width: 100%;
  background-color: #ffffff;
  padding: 33px 22px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.inner-container h1 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
  position: relative;
  color: #000;
}

.inner-container h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #000;
  margin-top: 10px;
}

.fullname,
.email,
.mobile,
.company,
select,
.textarea textarea {
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 16px;
  background-color: #fff;
  resize: none;
}

.contact-details,
.address {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-details input,
.address input,
.address select {
  flex: 1 1 calc(50% - 8px);
  min-width: 0;
}

#custom-form {
  width: 100%;
  border: none;
  padding: 16px 15px;
  background-color: #65a2ee;
  color: white;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

#custom-form:hover {
  background-color: #4e8cd4;
}


/*Testimonial css*/
.testimonial {
  margin: 60px 0px;
}

.testimonial-txt {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-txt h6 {
  font-weight: 400;
  font-size: 16px;
  width: 131px;
  padding: 5px;
}

.testimonial-txt h1 {
  /* font-weight: 600; */
  /* font-size: 48px; */
  color: #3c3c3c;
}

.testimonial-txt p {
  font-weight: 400;
  font-size: 16px;
  color: #6b7280;
}

.clients {
  width: 100%;
  max-width: 607px;
  height: auto;
  gap: 10px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-left: 25px solid #65a2ee;
  padding: 20px;
  max-width: 527px;
  height: auto;
  background-color: #fff;
}

.testimonial-image {
  flex-shrink: 0;
  margin-right: 20px;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 100px;
  border: 3px solid var(--primary);
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-header h4 {
  margin: 0;
  font-size: 20px;
  /* font-weight: 700; */
  color: #3c3c3c;
}

.quote-icon {
  font-size: 20px;
}

.testimonial-content p {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

.client1 .testimonial-card {
  border-left: 25px solid #fdf6eb;
  margin-right: -180px;
}

.client3 .testimonial-card {
  border-left: 25px solid #e0e3cc;
  margin-right: -180px;
}

/*FAQ css*/
.faq {
  background-color: #e0e3cc;
}

.faq-container {
  max-width: 772px;
  margin: 55px auto 0;
  padding-bottom: 55px;
}

.faq-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #e0e3cc;
  border: 1px solid #00000033;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background-color: #f9f5f2;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  /* font-weight: 800; */
  font-size: 20px;
  cursor: pointer;
}

.faq-toggle {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-weight: 400;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.25rem;
}

/*Our Clients css*/
.brands {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* .brands .container {
  width: 100%;
  height: auto;
} */



/* .brands h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 131px;
  height: 3px;
  background-color: #000;
} */

.logo-slider1,
.logo-slider2 {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider1:hover .logos-slide1 {
  animation-play-state: paused;
}

.logo-slider2:hover .logos-slide2 {
  animation-play-state: paused;
}

.logos-slide1,
.logos-slide2 {
  display: inline-block;
  animation: 45s slide infinite linear;
}

.logos-slide1 img {
  width: 183px;
  height: auto;
}

.logos-slide2 img {
  width: 183px;
  height: auto;
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/*footer css*/
/* .footer {
  padding-left: 27px;
}

.footer-heading {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  margin-bottom: 0.5rem;
}

.footer-heading:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 2px;
  height: 51px;
  background: linear-gradient(#0b98d0, #d9d9d9);
}

.footer-subtitle {
  color: #0072ff;
  font-size: 12px;
  margin-bottom: 0.75rem;
  font-weight: 300;
  font-size: 12px;
}
.footer ul li {
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: 16px;
  color: #fffcfc;
}

.footer ul li:hover {
  background-color: var(--blue);
  display: inline-block;
}

.list-unstyled li a {
  text-decoration: none;
  color: var(--primary);
}

.social-links {
  gap: 20px;
}

.social-links a {
  font-size: 35px;
  color: var(--primary);
}

.insta:hover {
  background: linear-gradient(to right top,
      #e55cd7,
      #cc43da,
      #ad2bde,
      #8318e4,
      #3d12eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.linkedin:hover {
  background: #65a2ee;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.twitter:hover {
  background: gray;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.facebook:hover {
  background: var(--blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.icon-circle {
  background: white;
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.contact-label {
  font-weight: 400;
  font-size: 0.875rem;
}

.contact-info {
  font-weight: 600;
  font-size: 1rem;
}

#number {
  color: white;
  font-size: 10rem;
}

.plus {
  color: white;
  font-size: 2.5rem;
}

.vertical-year {
  transform: rotate(90deg);
  font-size: 1.5rem;
}

.years-txt {
  margin-top: -39px;
}

.footer-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-text {
  text-align: justify;
  text-wrap: wrap;
  width: 100%;
  max-width: 468px;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.375rem;
}

.footer-link {
  font-weight: 400;
  font-size: 0.938rem;
  padding-top: 5px;
}

.footer-link a {
  color: #fff;
  text-decoration: none;
}

.footer-link a:hover {
  color: rgba(38, 110, 196, 1);
  text-decoration: underline;
}

.counter {
  margin-top: -80px;
}

.copyright {
  font-weight: 400;
  font-size: 0.875rem;
}

.footer-address i {
  font-size: 20px;
}

.footer-socials i {
  font-size: 20px;
}


/*--------------------------
          Blog 
----------------------------*/
.blog-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/blog-images/blog-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.dotted-pattern {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.date-box {
  position: absolute;
  top: -1rem;
  left: 2rem;
  background: white;
  padding: 0.25rem 0.75rem;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
  text-align: center;
  user-select: none;
}

.date-box p {
  margin: 0;
}

.date-day {
  font-weight: 600;
  font-size: 32px;
}

.date-month {
  font-weight: 600;
  font-size: 16px;
}

.card {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 20px 0px;
}

.card-title {
  font-weight: 600;
  font-size: 16px;
}

.card-subtitle {
  font-weight: 600;
  font-size: 12px;
  color: #0b98d0;
}

.card-text {
  font-weight: 400;
  font-size: 14px;
}

.card img {
  padding: 10px;
  height: 210px;
  object-fit: cover;
}

.btn-readmore {
  border: 1px solid rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  width: fit-content;
  height: 36px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 0;
  overflow: hidden;
  background-color: transparent;
  position: relative;
  transition: color 0.8s ease;
}

.btn-readmore::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 5px;
  height: 5px;
  background-color: rgba(101, 162, 238, 1);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.8s ease;
}

.btn-readmore:hover::before {
  transform: scale(80);
}

.btn-readmore:hover {
  border: none;
  text-decoration: none;
  color: #000;
  border: 1px solid rgba(101, 162, 238, 1);
}

.blog-section h2 {
  font-weight: 600;
  font-size: 38px;
}

.blog-section h2::after {
  content: "";
  display: flex;
  border: 1px solid rgba(0, 0, 0, 1);
  width: 6%;
  margin-top: 5px;
  margin-bottom: 40px;
}

.recent-post,
.development,
.marketing,
.cyber-security,
.website-design,
.managed-services {
  margin-top: 100px;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heading-underline {
  position: relative;
  display: inline-block;
  width: 100%;
}

.heading-underline::after {
  position: relative;
  left: 0;
  height: 2px;
  background-color: currentColor;
}

.action-btn {
  margin-left: -130px;
  margin-right: 30px;
}

/*--------------------------
        Blog Details
----------------------------*/

.blog-details-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/blog-details/blogging.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
 
}

.detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.details-dotted-pattern {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.update {
  font-weight: 400;
  font-size: 16px;
  gap: 10px;
}

.update-dev {
  color: #0072ff;
}

.details-title {
  background: linear-gradient(to right, #d4e8ff, #fffcfc);
  border-left: #65a2ee 14px solid;

}

.details-title p {
  font-weight: 600;
  font-size: 16px;
    padding: 20px;
}

.table-txt {
  font-weight: 400;
  font-size: 16px;
}

.comment-card {
  width: 100%;
  max-width: 648px;
  height: auto;
  border: linear-gradient(to left, #65a2ee, #cdd6e2) !important;
}

.form-title {
  background-color: #65a2ee;
}

.comment-form {
  width: 100%;
  max-width: 781px;
}

.display-title::after {
  content: "";
  display: block;
  width: 5%;
  height: 2px;
  background-color: #0000004e;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #65a2ee;
  border: 1px solid #fff;
}

.category {
  background-color: #65a2ee;
}

.post-title {
  background-color: #65a2ee;
}

.side-btn {
  transition: background-color 0.8s ease, border 0.8s ease;
}

.side-btn:hover {
  background-color: #65a2ee;
  border: 1px solid #fff;
}

.tag {
  border: 0.2px solid #78aef0;
}

.popular {
  gap: 5px;
}

.tags h6 {
  background-color: #65a2ee;
}

.tag-badge {
  /* width: 118px;
  height: 26px; */
  padding: 7px 35px 7px 7px;
  border-radius: 5px;
  background-color: #65a2ee;
  text-decoration: none !important;
}

.sticky-section {
  top: 100px;
}


/*--------------------------
        Development page
----------------------------*/

/* Hero Section */
.dev-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/dev-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.dev-hero h1 {
  font-weight: 700;
  font-size: 48px;
}

.lang {
  gap: 80px;
}

.lang span {
  font-weight: 700;
  font-size: 32px;
}

.dev-hero h4 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.dev-txt h2 {
  font-weight: 700;
  font-size: 40px;
}

.dev-txt p {
  font-weight: 400;
  font-size: 16px;
}

.dev-txt {
  width: 100%;
  max-width: 1128px;
}

/* Services cards */
.dev-services .container {
  max-width: 1280px;
}

.dev-services {
  background-color: #e0e3cc;
}

.dev-service-card {
  border-radius: 0.375rem;
  padding: 1rem;
  width: 100%;
  height: auto;
}

.dev-services-title {
  font-weight: 700;
  font-size: 40px;
}

.dev-service-card img {
  margin-bottom: 0.75rem;
  border: 1px solid#78AEF0;
  border-radius: 10px;
  padding: 10px 21px;
  width: auto;
}

.dev-service-card h4 {
  font-weight: 600;
  font-size: 20px;
}

.dev-service-card p {
  font-weight: 400;
  font-size: 16px;
}

.dev-service-card a {
  font-weight: 400;
  font-size: 16px;
  color: #0b98d0;
}

.dev-service-card a:hover {
  text-decoration: underline;
}

/* Why Choose Section */
.dev-why-choose {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.dev-why-choose-heading {
  font-weight: 700;
  font-size: 40px;
}

.dev-why-choose-icon .circle-img {
  position: absolute;
  right: 110px;
  top: 30px;
}

.dev-why-choose-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.dev-why-choose-desc {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

/* Get Ready Section */
.get-ready-section {
  background-color: #e0e3cc;
  padding: 7rem 1rem;
}

.get-ready-title {
  width: 100%;
  max-width: 554px;
  font-weight: 700;
  font-size: 40px;
}

.get-ready-desc {
  width: 100%;
  max-width: 554px;
  font-weight: 400;
  font-size: 16px;
}

.phone-btn {
  border: 1px solid #65a2ee;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: 24px 35px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.phone-btn:hover {
  background-color: #2c81e8;
  color: white;
  text-decoration: none;
}

.calling-icon:hover {
  color: #fff;
}

/* Form */

.contact-form {
  width: 100%;
  max-width: 516px;
  height: auto;
  padding: 35px 25px;
  gap: 10px;
  border-radius: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #0004081f;
  border-radius: 3px;
  padding: 17px 14px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}

.options {
  width: 100%;
  max-height: 57px;
  padding: 17px 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background-color: #78aef0;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding: 17px 14px;
  border-radius: 3px;
  width: 145px;
  height: 55px;
}

.contact-form button:hover {
  background-color: #2c81e8;
}

/* FAQ */
.dev-faq-title {
  font-weight: 700;
  font-size: 40px;
}

.dev-faq-title::after {
  content: "";
  display: block;
  width: 121px;
  height: 0.5px;
  background-color: #78aef0;
  margin-top: 10px;
}

.dev-faq-card span {
  font-weight: 400;
  font-size: 16px;
  text-align: start;
}

.dev-faq-card {
  width: 100%;
  max-width: 649px;
  height: auto;
  border-radius: 10px;
  padding: 0.6rem;
  border: 0.5px solid #78aef0;
  background-color: #fff;
}

.dev-faq-card .plus-icon {
  color: #797979;
  font-size: 20px;
}

.question {
  font-weight: 700;
  font-size: 16px;
  color: #373737;
}

.answer {
  display: none;
  border: 1px solid #dee2e6;
  border-top: none;
  font-weight: 400;
  font-size: 16px;
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 1rem 1.25rem;
  color: #494949;
  /* background-color: #fff; */
  text-align: justify;
}

/*------------------------------
    Mobile-Development page
--------------------------------*/
/* Hero Section */
.mobile-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/mobile-app-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.mobile-hero h4 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.app-txt h3 {
  font-weight: 700;
  font-size: 38px;
}

.app-txt p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
}

.app-txt {
  width: 100%;
}

/* Services cards */
.mobile-services .container {
  max-width: 1280px;
}

.mobile-services {
  background-color: #fdf6eb;
}

.mob-service-card {
  border-radius: 0.375rem;
  padding: 1rem;
  width: 100%;
  height: auto;
}

.mobile-services-title {
  font-weight: 700;
  font-size: 40px;
}

.mob-service-card img {
  margin-bottom: 0.75rem;
  border: 1px solid#78AEF0;
  border-radius: 10px;
  padding: 10px 21px;
  width: auto;
}

.mob-service-card h4 {
  font-weight: 600;
  font-size: 20px;
}

.mob-service-card p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
}

.mob-service-card a {
  font-weight: 400;
  font-size: 16px;
  color: #0b98d0;
}

.mob-service-card a:hover {
  text-decoration: underline;
}

/* Why Choose Section */

.why-choose {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.why-choose-heading {
  font-weight: 700;
  font-size: 40px;
}

.why-choose-icon .circle-img {
  position: absolute;
  right: 110px;
  top: 30px;
  width: 68px !important;
}

.why-choose-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.why-choose-desc {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

/*------------------------------
    Marketing page
--------------------------------*/
.marketing-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/marketing-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.marketing-hero h4 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

/*------------------------------
    MSP page
--------------------------------*/

.msp-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/msp-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.msp-hero h4 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

/*------------------------------
    About Us page
--------------------------------*/
.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/about-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.abt-dotted-pattern {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.gradient-line {
  width: 10px;
  height: 160px;
  position: relative;
  top: 48px;
  background: linear-gradient(to bottom, #64a2ed, #f94933);
}

.main-heading {
  font-weight: 700;
  font-size: 40px;
  border-left: 10px solid transparent;
  border-left-color: linear-gradient(to bottom, #3b82f6, #ef4444);
}

.our-approach-label {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 20px;
}

.our-approach-label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: black;
  margin-left: 10px;
}

.our-approach-label::before {
  content: "↓";
  position: absolute;
  left: calc(100% + 65px);
  top: 75%;
  size: 20px;
  transform: translateY(-50%);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.project-analytics p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  width: 100%;
  max-width: 643px;
}

.rounded-40 {
  border-radius: 40px;
}

.about-team {
  background-color: #fffaf0;
  padding-top: 50px;
  padding-bottom: 60px;
}

.about-team h2 {
  font-weight: 700;
  font-size: 40px;
}

.about-team p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.team-pics{
  justify-content: center;
  flex-wrap: wrap;
}
.team-pics img {
  border-radius: 644px;
  object-fit: cover;
  margin: 8px;
  width: 200px;
  height: 200px;
}
.img-text h3{
  font-size: 1.2rem;
}

.history {
  background-color: #e0e3cc;
}

.history h3 {
  font-weight: 700;
  font-size: 40px;
}

.project-txt h2 {
  font-weight: 700;
  font-size: 48px;
  padding-top: 10px;
}

.project-txt span {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin-bottom: 35px;
}

.line {
  position: absolute;
  display: block;
  margin: 100px;
  height: 4px;
  background: #000;
}

.project {
  margin-top: 5rem;
}

.stat-number {
  font-weight: 700;
  font-size: 48px;
}

.stat-label {
  font-weight: 700;
  font-size: 31px;
}

.team-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.timeline-container {
  position: relative;
  padding: 60px 20px;
}

.timeline-line {
  position: relative;
  height: 6px;
  background: #000;
  top: 50%;
  z-index: 1;
  bottom: 133px;
}

.timeline-line::after {
  content: "";
  position: absolute;
  right: 0px;
  top: -6px;
  border: solid black;
  border-width: 0 3px 3px 0;
  padding: 8px;
  transform: rotate(-45deg);
}

.timeline-item {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #000;
  position: relative;
  margin: 0 auto;
  z-index: 3;
  top: -12px;
}

.dot-1 {
  background-color: #60a5fa;
}

.dot-2 {
  background-color: #ec4899;
}

.dot-3 {
  background-color: #34d1c1;
}

.dot-4 {
  background-color: #0ea5e9;
}

.dot-5 {
  background-color: #f43f5e;
}

.event {
  position: absolute;
  width: 200px;
}

.top {
  top: -120px;
}

.bottom {
  top: 40px;
}

.event-line {
  height: 166px;
  width: 2px;
  background: #000;
  position: absolute;
  left: 106px;
  bottom: -65px;
}

.event-text {
  font-weight: 400;
  font-size: 16px;
}

.year {
  font-weight: 700;
  font-size: 24px;
}

.number1,
.number2,
.number3,
.number4,
.number5 {
  font-weight: 700;
  font-size: 40px;
}

.number1,
.number3,
.number5 {
  position: relative;
  left: 5px;
  top: 115px;
}

.number2,
.number4 {
  position: relative;
  left: 6px;
  bottom: 90px;
}

.timeline {
  padding-top: 88px;
}

.event1,
.event3,
.event5 {
  position: absolute;
  top: -14px;
  left: 155px;
  width: 100%;
  max-width: 342px;
  text-align: start;
}

.event2,
.event4 {
  position: absolute;
  top: -45px;
  left: 164px;
  width: 100%;
  max-width: 242px;
  text-align: start;
}

.our-history {
  height: 100%;
  min-height: 753px;
  background-color: #e0e3cc;
}

.timeline-heading {
  font-size: 40px;
  padding-bottom: 149px;
}

.project-discussion {
  background: url("assets/img/project-web.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  z-index: 2;
  position: relative;
}

.abt-history-section {
  background-color: #e3e6cc;
  padding: 2rem 1rem;
  height: auto;
}

.abt-history-title {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.abt-history-box {
  border-bottom: 1px solid #ccc;
  padding: 20px 10px;
}

.abt-history-circle {
  width: 60px;
  height: 60px;
  border: 3px solid #a4c6f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  background-color: #f5f6f0;
  flex-shrink: 0;
}

.abt-history-year {
  font-weight: 700;
  font-size: 18px;
}

.abt-history-text {
  font-size: 14px;
  color: #333;
}

/*------------------------------
    Cyber-Security page
--------------------------------*/

/* Hero Section */


.cyber-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/cyber-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.link-pattern {
  position: absolute;
  bottom: 10rem;
  right: 5px;
}

.cyber-hero h4 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}




/*------------------------------
    contact page css
--------------------------------*/
.contact-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(0deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)),
    url("../img/contact-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 70vh;
  position: relative;

}

.contact-hero h1 {
  font-weight: 700;
  font-size: 48px;
  padding-left: 20rem;

}

.get-title {
  font-weight: 600;
  font-size: 20px;
}

.get-txt {
  font-weight: 400;
  font-size: 16px;
}

.divider {
  color: black;
}

.map-icon,
.mail-icon,
.dial-icon {
  gap: 10px;
}

.cont-form {
  margin-right: -94px;
  margin-top: -160px;
  z-index: 2;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.5);
  border-color: #3b82f6;
}

textarea.form-control {
  font-weight: 400;
  font-size: 16px;
}

label.optional-label {
  font-weight: 400;
}

.checkbox-label {
  font-weight: 400;
  font-size: 16px;
  user-select: none;
}

.checkbox-input {
  width: 28px;
  height: 28px;
  border-radius: 1px;
  border: 1px solid #D9D9D9;
}

.header-container {
  background-color: #D9D9D9;
  padding: 1rem 1rem;
  gap: 10px;

}

.contact-form-container {
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background: white;
}

.btn-send {
  background-color: #65A2EE;
  font-family: 'sora', sans-serif;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.75rem 0;
  font-size: 16px;
  border: none;
}

.btn-send:hover,
.btn-send:focus {
  background-color: #3b82f6;
}

.captcha-img {
  width: 95px;
  height: 52px;
  object-fit: contain;
}

.form-txt {
  font-weight: 400;
  font-size: 16px;
}

.form-fields {
  /* max-width: 400px; */
  width: 100%;
}

.contact-left {
  width: 100%;
  max-width: 447px;
}

.country {
  background-color: #E0E3CC;
}

.direction {
  font-weight: 400;
  font-size: 16px;
  color: #65A2EE;
  gap: 5px;
}

.contact-card-body {
  padding: 30px;
  height: 200px;
}

.contact-border {
  border: 1px solid rgba(217, 217, 217, 1);
}

.contact-social {
  gap: 5px;
}
header{
    background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top:0px;
  width: 100%;
  z-index: 1000;
}




.toc-box {
  font-family: "Noto Sans", sans-serif;
  width: 50%;
  background-color: rgb(243, 243, 243) !important;
}
.toc-box.expanded {
  width: 80% !important;
}

.toc-list {
    list-style: none;
    padding-left: 0.5rem;
    margin: 0;
}

.toc-list > li {
    position: relative;
    /* padding-left: 0.5rem; */
}

.toc-number {
    font-weight: bold;
    color: #444;
    font-size: 0.95rem;
}

.toc-link {
    color: #333;
    font-size: 0.95rem;
    display: block;
    transition: all 0.2s;
}

.toc-link:hover {
    color: #ff9800;
    text-decoration: underline;
}

.toggle-icon i {
    font-size: 1.2rem;
    color: #666;
    transition: transform 0.3s ease;
}

.btn[aria-expanded="true"] i {
    transform: rotate(90deg);
}
.navbar-brand img{
  width: 100px;
}


.detail-desc img{
width: 100% !important;
height: auto;
}
