html {
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roboto', sans-serif;
}

/* Main Scroll Button Container */
#scrollToTopBtn {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #009C99;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

#scrollToTopBtn.show {
  bottom: 30px;
  opacity: 1;
}

/* Pulsing (Ring style) */
#scrollToTopBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 255, 246, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 1.5s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

#scrollToTopBtn:hover {
  background-color: #009C99;
}

/* Styling the Navigational Bar of the main page*/
/* Styling the Sidebar of the main page*/
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.395);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.menu-button {
    display: none;
}

nav ul{
    width: 96%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 70px;
}

nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav a.active {
  color: #009C99;
  font-weight: 700;
  border-radius: 5px;
}

nav a:hover {
    /* background-color: #f0f0f0; */
    color: #009C99;
}

nav li:first-child {
    margin-right: auto;
}

nav li:first-child:hover {
    opacity: 70%;
}

.comp-logo {
    inline-size: 130px;
}

.home-btn {
    color: #009C99;
}

.home-btn:hover {
    opacity: 70%;
}


#hero-highlight {
    color: #009C99;
}

/* Styling the contact button on the nav menu list*/
#nav-button1 {
    background-color: #009C99;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition-duration: 0.4s;
    border: 2px solid #009C99;
    color: #fff;
    margin-right: 30px;
}

#nav-button1:hover {
    color:#009C99;
    background-color: #fff;
}

/* Styling the hero section on the service page*/
.service-container video {
    width: 100%;   
    object-fit: cover;
    position: relative;
    filter: brightness(0.3);
}

.image-text {
    position: absolute;
    top: 50%;
    left: 12%;
    color: #fff;
    line-height: 10px;
    animation: slide-up 2s;
}

@keyframes slide-up {
    0%{transform: translateY(40px);}
    50%{transform: translateY(0px);}
    100%{transform: translateY(0px);}
}

.image-text h3{
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
    animation: slide-up 1s;
    letter-spacing: -3.6px;
    font-family: 'roboto', sans-serif;
}

.image-text p {
    font-size: 1.2rem;
    animation: slide-up 2s;
    line-height: 1.5rem;
    max-width: 700px;
}

.act-btn {
    border-radius: rem;
    width: 200px;
    height: 50px;
    border: none;
    background-color: #009C99;
    font-family: 'roboto', sans-serif;
    font-size: 1rem;
    margin-top: 17px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s ease;
    animation: slide-up 4s;
}

.act-btn a {
    text-decoration: none;
    color: #fff;
}

.act-btn:hover {
    background-color: rgba(0, 0, 0, 0.615);
    color: #009C99;
}

.image-text img {
    color: red;
    vertical-align: middle;
    display: inline-block;
    padding-left: 10px;
}

/* Styling the defition conatainer cards */
.def-cont-card {
    max-width: 80%;
    display: flex;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: relative;
    bottom: 120px;
    left: 10px;
    background-color: #fff;
    border-radius: 20px;
}

.it-card1 {
    padding: 30px 30px;
    display: inline-block;
    font-size: 18px;
    transition-duration: 0.4s;
}

.it-card1 img {
    inline-size: 50px;
}

.it-card1 p {
    line-height: 2rem;
    opacity: 60%;
}

.it-card1:hover {
    box-shadow: 4px 0px 0px rgba(97, 93, 93, 0.073);
}

/* Styling card 2 */
.it-card2 {
    padding: 30px 20px;
    display: inline-block;
    font-size: 18px;
    transition-duration: 0.4s;
}

.it-card2 img {
    inline-size: 50px;
}

.it-card2 p {
    line-height: 2rem;
    opacity: 60%;
}

.it-card2:hover {
    box-shadow: 4px 0px 0px rgba(97, 93, 93, 0.073),-4px 0px 0px rgba(97, 93, 93, 0.073);
}

/* Styling card 3 */
.it-card3 {
    padding: 30px 20px;
    display: inline-block;
    font-size: 18px;
    transition-duration: 0.4s;
}

.it-card3 img {
    inline-size: 50px;
}

.it-card3 p {
    line-height: 2rem;
    opacity: 60%;
}

.it-card3:hover {
    box-shadow: -4px 0px 0px rgba(97, 93, 93, 0.043);
}


/* Styling the solutions section on the services page */
.it-solutions-header {
    text-align: center;
    word-spacing: 6px;
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
}

.it-solutions-header p{
    font-size: 16px;
    word-spacing: 1px;
    opacity: 66%;
    text-decoration: underline;
    text-decoration-color:#009C99;
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 0.1rem
}

.solutions-wrapper {
    max-width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 30px;
}

/* Styling the main IT Solutions page */
.it-solutions-card1 {
    align-items: center;
}

.left-card-images {
    padding-left: 30px;
    margin-top: 60px;
    position: relative;
}

.float-icon {
    position: absolute;
    left: 90px;
    bottom: 90%;
    z-index: -1;
}

.right-card-description {
    padding: 0 10px;
}

.right-card-description h1 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 2.3rem;
}

.first-pic {
    max-width: 100%;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

#color-text {
    color: #009C99;
    /* text-decoration: #009C99 underline; */
    text-decoration: underline;
    text-decoration-color:#009C99;
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 0.1rem;
}

.right-card-description p, .next-line{
    line-height: 1.5rem;
    opacity: 60%;
}

.next-line {
    margin-top: 20px;
}

/* Styling the list of offers we provide */
.service-offers {
    display: flex;
}

.service-offers ul {
    padding-left: 10px;
}
.service-offers ul li{
    list-style: none;
    line-height: 1.8rem;
}

.service-offers li span{
    content: "\2713";
    color: #009C99;
    padding-right: 15px;
    font-weight: 900;
}

.space-services {
    padding-right: 70px;
}

/* Styling the prominent solutions */
.agile-header {
    margin-top: 80px;
}

.agile-header h3{
    text-align: center;
    font-weight: bolder;
    font-size: 2.5rem;
    text-decoration: underline;
    text-decoration-color:#009C99;
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 0.2rem
}

.values-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    column-gap: 80px;
    max-width: 1000px;
    margin: auto;
    padding: 20px 20px;
    border-bottom: 1px solid #009c9936;
}

.value-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-box img {
    width: 50px;
    height: 50px;
    color: blue;
}

.value-text h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.value-text {
    transition-duration: 0.4s;
}

.value-text p {
    color: #666;
    font-size: 1rem;
}

.value-text:hover,
.value-text p:hover {
    color: #009C99;
}

/* Styling the focal area on the services page */
.focal-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding-bottom: 60px;
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    /* background-color: #6ae2be97; */
    /* background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(151,219,205,1) 0%, rgba(255,255,255,1) 98%); */
    /* background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%); */
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(34,193,195,1) 100%);
    padding: 80px 40px;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.focal-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(50px);
    opacity: 3;
    transition: all 0.8s ease;
}

.focal-card img {
    width: 70px;
}
.focal-card h3 {
    margin: 15px 0;
}
.focal-card p {
    font-size: 14px;
    color: gray;
}

#digital1 {
    color: #065a82;
    padding-bottom: 30px;
}

.focal-card.active {
    transform: translateY(0);
    opacity: 1;
}

/* Projects Header */
.project-title {
    text-align: center;
    margin: auto;
    max-width: 50rem;
}

.project-title h3 {
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
    margin-bottom: 2rem;
}

.project-title p {
    opacity: 60%;
    margin-bottom: 4rem;
}

/* Styling the Mini Projects cards slider */
.slider-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
}
  
.slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
  
.card {
    min-width: calc(50% - 10px);
    background: rgba(219, 213, 213, 0.121);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: -4px;
    transition: .4s linear;
}

.slider-container .slider .card:hover img {
    transform: scale(1.1);
}
.card-content {
    padding: 15px;
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(34,193,195,1) 100%);
    color: white;
    font-size: 1.2rem;
}
  
.paragraph-all {
    padding: 0 10px;
    opacity: 70%;
}
  
.arrows {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}
.arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}
  
#next {
    margin-right: 20px;
    transition: transform 0.5s ease-in-out;
}

#next:hover {
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(34,193,195,1) 100%);
}
  
@media (max-width: 768px) {
    .card {
        min-width: 100%;
    }
}


.fnl-counter-section {
  padding: 4rem 1.5rem;
  /* background: #f9f9f9; */
}

.fnl-counter-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.fnl-counter-box {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.fnl-counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary, #3f5efbc9);
  margin-bottom: 0.5rem;
}

.fnl-counter-box p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.fnl-counter-number::after {
  content: "+";
  font-size: 3rem;
  margin-left: 4px;
  color: #f5b301;
}


/* Responsive */
@media (max-width: 992px) {
  .fnl-counter-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fnl-counter-container {
    grid-template-columns: 1fr;
  }
}


/* Testimonials Styling */
.fnl-testimonial-section {
  padding: 5rem 1.5rem;
}

.fnl-testimonial-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.fnl-testimonial-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
  inset: 0;
  padding: 4rem 3rem;
}

.fnl-testimonial-slide.fnl-testimonial-active {
  opacity: 1;
  position: relative;
}

.fnl-stars {
  font-size: 1.5rem;
  color: #f5b301;
  margin-bottom: 1.5rem;
}

.fnl-testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 2rem;
  color: #333;
}

.fnl-testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.fnl-testimonial-role {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* Navigation buttons */
.fnl-testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.fnl-testimonial-btn:hover {
  background: #f2f2f2;
}

.fnl-testimonial-prev {
  left: 20px;
}

.fnl-testimonial-next {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .fnl-testimonial-container {
    padding: 3rem 1.5rem;
  }

  .fnl-testimonial-text {
    font-size: 1rem;
  }

  .fnl-testimonial-btn {
    width: 40px;
    height: 40px;
  }
}

  
/* --Styling the partners--- */
.partners-logo-header {
    text-align: center;
    font-size: 2rem;
    margin-top: 120px;
    margin-bottom: 40px;
}

.logo-slider-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
  
.logo-slider {
    overflow: hidden;
    /* background-color: #ffffff7d; */
    padding: 20px 0;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
  
.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}
  
.logo-item {
    flex: 0 0 auto;
    width: 150px;
    height: 60px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
  
@keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
}
  
@media (max-width: 768px) {
    .logo-item {
      width: 80px;
      height: 40px;
      margin: 0 15px;
    }
}

/* Reach Out tag attached to the footer */
.reach-out-tag {
    background-color: #009C99;
    height: 200px;
    color: #fff;
    /* background-image: linear-gradient(to right, rgba(73, 5, 5, 0.1), rgba(54, 154, 99, 0.562)); */
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(34,193,195,1) 100%);
}

.reach-out-tag p {
    margin: 0 0;
    line-height: 2.3rem;
    padding-left: 10%;
    
}

.reach-out-tag p:nth-child(1) {
    font-size: 2rem;
    padding-top: 70px;
    font-weight: bolder;
}

.reach-out-tag p:nth-child(2) {
    font-size: 1.2rem;
    opacity: 70%;
}

/* Styling the footer on the Products page */
.service-contact-container {
    max-width: 100%;
    position: relative;
}

.service-contact-container .footer-background-image img {
    position: absolute;
    object-fit: cover;
    object-position: center;
    max-width: 50%;
    left: 40%;
    top: 10%;
    margin: auto;
    z-index: -1;
}

.service-contact-container .footer-background-image img:nth-child(1) {
    left: 0%;
}
.service-contact-container .footer-background-image img:nth-child(2) {
    right: 0%;
    bottom: 0;
}

.service-contact-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 255, 251, 0.229);
    z-index: -2;
}

.service-contact-form {
    max-width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 100px;
}

.form-1,
.form-2 {
    padding-top: 70px;
    padding-bottom: 70px;
}

/*Styling the social media buttons on the main home page*/
.social-media-btn {
    display: flex;
    align-items: center;
    column-gap: 5px;
    flex-wrap: wrap;
}

.fa {
    padding: 15px;
    font-size: 22px;
    inline-size: 20px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 12px;
    z-index: -100;
}
  
.fa:hover {
    opacity: 0.7;
}
  
.social-media-btn .fa-facebook {
    background: #3B5998;
    color: white;
}
  
.social-media-btn .fa-twitter {
    background: #55ACEE;
    color: white;
}

.social-media-btn .fa-instagram {
    background: #e41717;
    color: white;
}

.social-media-btn .fa-youtube {
  background: #bb0000;
  color: white;
}

.social-media-btn a img {
    width: 48px;
    vertical-align: middle;
    padding-bottom: 3px;
    border-radius: 7px;
}

.social-media-btn .fa-whatsapp {
    color: white;
    background-color: rgb(21, 171, 21);
    padding: 14px;
}

.form-1 #support-us {
    margin-top: 10px;
}

.form-1 {
    margin-right: 40px;
}

.form-1 #intouch{
    text-decoration: underline;
    text-decoration-color: #009C99;
}

.form-1 h3{
    line-height: 0.8rem;
    font-size: 1.2rem;
    margin-bottom: 5px;
    /* margin-top: 9px; */
}

.form-1 p {
    line-height: 1rem;
}

.form-1 a {
    text-decoration: none;
    color: black;
    font-size: 1.6rem;
    font-weight: bolder;
}

.anchor-contact a{
    font-size: 1.1rem;
    font-weight: 100;
    text-decoration: underline;
    transition-duration: 0.4s;
    color: #5d5757;
}

.anchor-contact a:hover {
    color: #009C99;
}

.first-input input::placeholder {
    padding-top: 10px;
    padding-left: 5px;
    color: #8C8C8C;
    opacity: 0.5;
    font-size: 20px;
    outline: #8C8C8C;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.first-input input[type=text]:focus,
.first-input input[type=email]:focus,
.first-input input[type=tel]:focus {
    /* border: 1px solid #009C99; */
    outline: 1px solid #009C99;
}

textarea:focus {
    outline: 1px solid #009C99;
}

.first-input {
    padding-right: 30px;
}

input[type="email"],
input[type="text"],
input[type="tel"] {
    padding: 20px 15px 20px 20px;
    font-size: 17px;
    color: #8C8C8C;
    border: none;
    padding-right: 20px;
    background-color: #fff;
    outline: 1px solid #009C99;
}

input[type="email"],
input[type="text"] {
    margin-bottom: 20px;
}

input[type="text"],
input[type="tel"] {
    margin-right: 20px;
}

.services-row {
    margin-bottom: 20px;
}

select {
    width: 25%;
    font-size: 17px;
    padding: 1rem 1.5rem;
    background-color: #fff;
    color: #8C8C8C;
    border: none;
    outline: 1px solid #009C99;
}

.general-services {
    width: 47.5%;
    padding: 18px 1px;
    color: #8C8C8C;
    border: none;
    font-size: 1rem;
    outline: 1px solid #009C99;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23009C99" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    text-indent: 0.7rem;
}

.form-2 textarea {
    width: 94%;
    height: 150px;
    background-color: #fff;
    border: none;
    color: #8C8C8C;
    font-size: 20px;
    padding-top: 20px;
    padding-left: 28px;
    outline: 1px solid #009C99;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-request {
    width: 200px;
    height: 60px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    background-color: #009C99;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    transition-duration: 0.4s;
}

.btn-request:hover {
    background-color: black;
    color: #009C99;
}

.last-stand {
    padding-top: 40px;
    background-color: black;
}

.last-stand p {
    color: #8C8C8C;
    text-align: center;
    margin: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}