body {
  overflow-x: hidden;
 
}

.logo {
  width: 10%;
  height: 20%;
  margin-left: 101px;
}

@media (max-width: 768px) {
  .logo {
    width: 40%;
    padding-top: 10px;
    margin-left: 0px;
    margin-bottom: 10px;

  }
}

.navbar {
  padding: 20px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease-in-out;
}

.navbar.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}


/* #loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.loader-text {
  font-size: 2em;
  font-weight: bold;
  color: #0C5671;
  display: flex;
}


.loader-text span {
  display: inline-block;
  animation: bounce-scale-rotate 0.6s ease infinite alternate;
  color: #0d6f92;
}


@keyframes bounce-scale-rotate {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) scale(1.1) rotate(-5deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(5deg);
  }
}


.loader-text span:nth-child(1) { animation-delay: 0s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.3s; }
.loader-text span:nth-child(5) { animation-delay: 0.4s; }
.loader-text span:nth-child(6) { animation-delay: 0.5s; }
.loader-text span:nth-child(7) { animation-delay: 0.6s; }
.loader-text span:nth-child(8) { animation-delay: 0.7s; }
.loader-text span:nth-child(9) { animation-delay: 0.8s; }
.loader-text span:nth-child(10) { animation-delay: 0.9s; }
.loader-text span:nth-child(11) { animation-delay: 1s; }
.loader-text span:nth-child(12) { animation-delay: 1.1s; } */

#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  z-index: 9999;
  opacity: 1; /* Initial visibility */
  transition: opacity 1s ease; /* Smooth fade-out */
}

.loader {
  --size: 400px;
  --duration: 2.5s; /* Animation loop duration */
  --logo-color: #0C5671;
  --background: linear-gradient(
    0deg,
    rgba(12, 86, 113, 0.2) 0%, 
    rgba(12, 86, 113, 0.4) 100%
  );
  height: var(--size);
  aspect-ratio: 1;
  position: relative;
  pointer-events: none;
}

.loader .box {
  position: absolute;
  background: var(--background);
  border-radius: 50%;
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 10px 10px 0,   
    inset rgba(12, 86, 113, 0.5) 0px 5px 10px -7px;  
  animation: ripple var(--duration) infinite ease-in-out;
  inset: var(--inset);
  animation-delay: calc(var(--i) * 0.15s);
  z-index: calc(var(--i) * -1);
  pointer-events: all;
  transition: all 0.3s ease;
}

.loader .box:last-child {
  filter: blur(30px);
}

.loader .box:not(:last-child):hover {
  filter: brightness(2.5) blur(5px);
}

.loader .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30%;
}

.loader .logo svg {
  fill: var(--logo-color);
  width: 100%;
  animation: color-change var(--duration) infinite ease-in-out;
}

/* Center text in the loader */
.loader .loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  animation: color-change var(--duration) infinite ease-in-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0,
      inset rgba(12, 86, 113, 0.5) 0px 5px 10px -7px;
  }
  65% {
    transform: scale(1.4);
    box-shadow: rgba(0, 0, 0, 0) 0px 0 0 0;
  }
  100% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0,
      inset rgba(12, 86, 113, 0.5) 0px 5px 10px -7px;
  }
}

@keyframes color-change {
  0% {
    fill: var(--logo-color);
  }
  50% {
    fill: white;
  }
  100% {
    fill: var(--logo-color);
  }
}




.services-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 5%;
  background: linear-gradient(#c9f3f3, #f1ebeb);
  opacity: 90%;
  width: 90%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.432);
  border-radius: 8px;
  z-index: 1000;
}


.services-link {
  position: relative;
}

.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #0C5671; 
  margin-left: 8px;  
  vertical-align: middle; 
}



.services-dropdown.active {
  display: block;
}



.services-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.services-column {
  flex: 1;
}

.services-column h3 {
  font-size: 1.5rem;
  color: #0C5671;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-item a {
  text-decoration: none;
}

.service-item strong {
  font-weight: 600;
  color: #0C5671;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 20px;
}

.services-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 30px;
}


@media (max-width: 300px) {
  .services-content {
      flex-direction: column;
  }
  .services-dropdown {
      left: 0;
      width: 100%;
      padding: 15px;
  }
}

@media (max-width: 768px) {
  .services-content {
      flex-direction: column;
  }
  .services-dropdown {
      left: 0;
      width: 100%;
      padding: 15px;
  }
}

@media (max-width: 900px) {
  .services-content {
      flex-direction: column;
  }
  .services-dropdown {
      left: 0;
      width: 100%;
      padding: 15px;
  }
}

@media (max-width: 1024px) {
  .services-content {
      flex-direction: column;
  }
  .services-dropdown {
      left: 0;
      width: 100%;
      padding: 15px;
  }
}


.services-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 5%;
  background: linear-gradient(#c9f3f3, #f1ebeb);
  opacity: 90%;
  width: 90%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.432);
  border-radius: 8px;
  z-index: 1000;
  max-height: none; /* No height restriction by default */
  overflow: hidden; /* No scroll by default */
}

/* Active state */
.services-dropdown.active {
  display: block;
}

/* Flexbox styles for desktop layouts */
.services-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Styles for small screens (mobile and tablets) */
@media (max-width: 1024px) {
  .services-content {
      flex-direction: column; /* Stack items vertically */
  }

  .services-dropdown {
      left: 0; /* Full-width dropdown */
      width: 100%;
      padding: 15px;
      max-height: 60vh; /* Restrict height for scrollable content */
      overflow-y: auto; /* Add vertical scroll */
  }
}


.navbar-toggler {
  border-color: #0C5671;
}

.navbar-collapse {
  transition: max-height 0.5s ease;
}

.navbar-toggler {
  border: none;
}




.navbar-toggler .navbar-toggler-icon {
  display: none;
}


.navbar-toggler:before,
.navbar-toggler:after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: #0C5671;
  border-radius: 2px;
  margin: 4px 0;
}




.navbar-nav {
  margin-left: 250px;
}


.navbar-btn {
  margin-left: auto;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0C5671, #16A3D7);
  color: white;
  border: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  transition: background-color 0.3s;
}

.navbar-btn:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .navbar-btn {
    margin-top: 10px;
    width: 100%;
  }
}


@media (max-width: 768px) {
  .navbar-nav {
    margin-left: 0px;
  }
}

.nav-item {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .nav-item {
    padding-left: 40px;
  }
}


.nav-link {
  position: relative;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; 
  background-color: #0C5671;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}



@media (min-width: 768px) { 
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #0C5671;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }
}




.first-section {
  padding: 1px 0;
}

.bubble-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; 
}

.bubble {
  position: absolute;
  bottom: -50px; 
  background-color: #0C5671;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite, fadeInOut linear infinite;
}

.bubble:nth-child(even) {
  background-color: #16A3D7; 
}

/* Vertical float animation */
@keyframes floatUp {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-120vh);
  }
}


@keyframes fadeInOut {
  0%, 10% {
      opacity: 0;
  }
  20%, 80% {
      opacity: 0.6;
  }
  90%, 100% {
      opacity: 0;
  }
}


.sec1-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  color: #879094;
  margin-bottom: 10px;
}

.sec2-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, Tahoma, Geneva, Verdana, sans-serif;
  font-size: 35px;
  font-weight: bold;
  background: linear-gradient(90deg, #0C5671, #16A3D7);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.sec1-subheading {
  margin-top: 20px;
  color: #0C5671;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
}

@media (min-width: 576px) {
  .sec1-heading {
    font-size: 35px;
  }

  .sec2-heading {
    font-size: 40px;
  }

  .sec1-subheading {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .sec1-heading {
    font-size: 38px;
  }

  .sec2-heading {
    font-size: 45px;
  }

  .sec1-subheading {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .sec1-heading {
    font-size: 40px;
    margin-top: 30px;
  }

  .sec2-heading {
    font-size: 50px;
    margin-top: 10px;
  }

  .sec1-subheading {
    font-size: 17px;
    margin-top: 20px;
  }
}

.text-center {
  text-align: center;
  padding-top: 100px;
}

@media (max-width: 768px) {
  .text-center {
    padding-top: 50px;
  }
}

.text-lg-start {
  text-align: left;
}

.row {
  overflow-x: hidden;
}

.bottom-design {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -30px;
}

@media (max-width: 768px) {
  .bottom-design {
    margin-top: 0px;
  }
}



.responsive-video {
  width: 100%;
  height: 70vh;
  max-height: 600px;
  margin-top: 10px;
  object-fit: cover;
}


@media (max-width: 768px) {
  .responsive-video {
    height: 50vh;
  }

  .responsive-video {
    margin-top: 0px;
  }
}


@media (max-width: 576px) {
  .responsive-video {
    height: 40vh;
  }

  .responsive-video {
    margin-top: 0px;
  }
}

.cover-img {
  width: 90%;
  padding-top: 40px;
}

.explore {
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #0C5671, #16A3D7);
  color: white;
  padding: 10px 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}

/* .services-section {
  padding: 60px 20px;
  background: radial-gradient(circle at 75% 110%, #4599b8, #ffffff, #ffffff, #ffffff);
  position: relative;
} */

.services-hpsection {
  padding: 60px 20px;
  width: 100%;
  background: radial-gradient(circle at 75% 110%, #26c5ff, #ffffff, #ffffff, #ffffff);
  position: relative;
  overflow: hidden; 
  border-radius: 15px; 
}

.services-hpsection h2 {
  /* font-size: 2rem;
  color: #0C5671;
  margin-bottom: 10px; */
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #0C5671;
}

.services-hpsection p {
  font-size: 1.2rem;
  color: #0C5671;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #083e52, #67d6ff); 
  animation: float infinite linear;
  opacity: 0.6; 
  z-index: 0; 
}


@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10vw, 10vh);
  }
  50% {
    transform: translate(-10vw, 10vh);
  }
  75% {
    transform: translate(-10vw, -10vh);
  }
  100% {
    transform: translate(10vw, -10vh);
  }
}



/* .section-hptitle {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 90px;
  font-weight: bold;
  color: #0C5671;
} */

.section-subtitle {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  color: #0C5671;
  padding-top: 0px;
}


.decorative-border {
  border-radius: 15px;
  border-left: 3px solid #0c56718c;
  border-bottom: 3px solid #0c56718c;
  padding: 80px 50px;
  margin: 0 auto;
  max-width: 90%;
  height: auto;
  position: relative;
}

.slider {
  position: relative;
}

.slider-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #0C5671;
  font-size: 40px;
  font-weight: bold;
  text-align: left;
  /* margin-bottom: 10px; */
}

.slide-description {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  color: #0C5671;
  margin-bottom: 15px;
  text-align: left;
}

.slider-dots {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  position: absolute;
  left: 20px;
}


.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  border-radius: 50%;
  border: 2px solid #0C5671;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #0C5671;
  border: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.875rem;
  }

  .decorative-border {
    padding: 30px 15px;
  }

  .slide-heading {
    font-size: 1.25rem;
  }

  .slide-description {
    font-size: 0.875rem;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
  }

  .slider-dots {
    left: 15px;
  }
}




#web-development {
  height: 100%;
  border-radius: 10px;
}


.portfolio-section {
  width: 100%;
}

.portfolio-section h2{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #0C5671;
}

.portfolio-section p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.portfolio-item {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.portfolio-section .portfolio-item {
  padding: 0;
  margin: 0;
}

.portfolio-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gradient-1 {
  /* background: linear-gradient(360deg, #bec3d4 0%, #0442C2 100%); */
  background: radial-gradient(circle at 75% 100%, #c65ae0, #d4bed3, #d4bed3);
}
.gradient-11 {
  /* background: linear-gradient(360deg, #bec3d4 0%, #0442C2 100%); */
  background: radial-gradient(circle at 75% 100%, #330000, #800000, #cc0000);

}

.gradient-2 {
  /* background: linear-gradient(360deg, #e2c2c7 0%, #ff7595 100%); */
  background: radial-gradient(circle at 75% 100%, #9e7a18, #ffe8ab, #ffe8ab);
}

.gradient-3 {
  /* background: linear-gradient(360deg, #9ef3a3 0%, #18a018 100%); */
  background: radial-gradient(circle at 75% 100%, #a01818, #f39e9e, #f39e9e);
}

.gradient-4 {
  /* background: linear-gradient(360deg, #9ef3a3 0%, #18a018 100%); */
  background: radial-gradient(circle at 75% 100%, #2618a0, #9ebcf3, #9ecaf3);
}

.gradient-5 {
  /* background: linear-gradient(360deg, #9ef3a3 0%, #18a018 100%); */
  background: radial-gradient(circle at 75% 100%, #f76d12, #ff8f8f, #ffc7c7);
}

.gradient-6{
  background: radial-gradient(circle at 75% 100%, #582807, #cea577, #ffd7a9);
}


.portfolio-heading {
  color: white;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.portfolio-description {
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.1rem;
}


@media (max-width: 992px) {
  .portfolio-item {
    flex-direction: column;
    height: auto;
  }

  .portfolio-item .image-area {
    width: 100%;
    order: 1;
  }

  .image-area img {
    height: auto;
  }

  .portfolio-item .text-area {
    width: 100%;
    order: 2;
    text-align: center;
    padding: 15px 0;
  }

  .portfolio-heading {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .portfolio-description {
    font-size: 1rem;
    padding: 0 15px;
  }
}

.destination-section {
  padding: 50px 0;
  text-align: center;
}

.destination-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #0C5671;
}

.destination-description {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  color: #0C5671;
  padding-top: 0px;
}

.country-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.country-box {
  background: #f3f3f3;
  padding: 20px;
  width: 200px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(-100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.country-box i {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.country-flag {
  width: 80px;
  height: auto;
  /* margin-bottom: 10px; */
}


.country-name {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.country-text {
  font-size: 1em;
  color: #666;
}


.country-australia { background: linear-gradient(#5f0000, #feffff); }
.country-dubai { background: linear-gradient(#005f30, #feffff); }
.country-america { background: linear-gradient(#00195f, #feffff); }
.country-uk { background: linear-gradient(#157c00, #feffff); }

/* Animation classes */
.country-box.show {
  opacity: 1;
  transform: translateX(0);
}




.visit-website-btn {
  display: inline-block;
  padding: 10px 20px;
  /* background: linear-gradient(135deg, #16A3D7, #0C5671); */
  border: 1px solid white;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s ease;
}

.visit-website-btn:hover {
  /* background: linear-gradient(135deg, #808183, #0efffe); */
  color: white;
  text-decoration: underline;
}


.tech-stack-section {
  background: radial-gradient(circle at 75% 110%, #4599b8, #ffffff, #e9e7e7, #e9e7e7);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  min-height: 100vh;
  text-align: center; 
}


.tech-stack-section h2{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #0C5671;
}

.tech-stack-section p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
}


.tech-row {
  background: linear-gradient(#a9ddff57, #aee4eb65);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  transition: all 0.3s ease; 
}


.tech-row.sticky {
  position: sticky;
  top: 70px; 
  z-index: 1000; 
  transition: transform 0.3s ease-in-out; 
}


.tech-row.hidden {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.tech-box {
  padding: 30px 20px;
  width: 100%;
  max-width: 250px;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  transition: transform 0.2s;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center; 
}


.tech-stack-section {
  background: radial-gradient(circle at 75% 110%, #4599b8, #ffffff, #e9e7e7, #e9e7e7);
  padding: 60px 0;
  min-height: 200vh; 
  overflow: visible;
  text-align: center;
}


.tech-row {
  background: linear-gradient(#a9ddff57, #aee4eb65);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 60px; 
  z-index: 1;
}


.tech-box:hover {
  transform: translateY(-5px);
}

.html-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309ec94b;
}

.css-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.bootstrap-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.javascript-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.angular-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309ec94b;
}

.react-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.flutter-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.dart-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.python-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309ec94b;
}

.django-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.sql-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.mysql-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.powerbi-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.alteryx-box{
  background: linear-gradient(#b9d6e2, #cdfdff);
  box-shadow: 5px 5px 5px 5px #309dc963;
}

.tech-icon {
  font-size: 40px;
  color: #0C5671;
  margin-bottom: 10px;
}

.tech-box h3 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 20px;
  color: #0C5671;
  margin-bottom: 10px;
}


.tech-box p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0d6f92;
  font-size: 16px;
  line-height: 1.5;
}


@media (min-width: 992px) {
  .tech-row .tech-box {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .tech-row .tech-box {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .tech-row .tech-box {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }
}




.testimonial-section {
  padding: 50px 0;
  text-align: center;
}

.testimonial-section h2,
.testimonial-section p {
  margin-bottom: 20px;
}

/* Testimonial Box Styling */
.testimonial-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(#b0e1f7, #eaf0f1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 80%; 
  max-width: 500px; 
  /* height: auto; */
  max-height: 350px;
  box-sizing: border-box;
}

.testimonial-name {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #0C5671;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.testimonial-comment {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0c5671;
  font-size: 13px;
  margin-top: 5px;
}


.swiper-pagination.testimonial-dots {
  color: #0C5671;
  bottom: 10px;
}



.faq-section {
  background: linear-gradient(10deg, #feffff, #afecec);
  text-align: center;
  padding: 60px 0;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  color: #0C5671;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 20px;
}



.faq-question {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #0077A5;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  border: none;
  padding: 15px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  box-shadow: 6px 6px 12px #b6b5b5, -6px -6px 12px #ffffff;
  transition: all 0.3s ease;
}

.faq-answer {
  color: #0C5671;
  display: none;
  padding: 15px;
  background-color: #f7f7f7;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 5px;
  /* box-shadow: inset 6px 6px 12px #d1d1d1, inset -6px -6px 12px #ffffff; */
}

.faq-question:hover {
  box-shadow: 4px 4px 10px #b1b1b1, -4px -4px 10px #ffffff;
  transform: translateY(-1px); /* Lift effect on hover */
  background-color: #e0f7fa; /* Change background color on hover */
}

.faq-question:focus + .faq-answer,
.faq-question:active + .faq-answer {
  display: block;
}

.site-map-section {
  background: linear-gradient(100deg, #021e29, #0d6f92);
  padding: 40px 0;
  overflow: hidden;
}

.copyright-txt {
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.cu-head {
  color: #16A3D7;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2rem;
}

.sm-p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  line-height: 1.5;
}

.st-head {
  color: white;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin-right: 15px;
}

.sm-p a {
  color: white;
}

.st-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-map-section .container {
    text-align: center;
  }

  .cu-head {
    font-size: 1.8rem;
  }

  .sm-p {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .st-img {
    width: 80%;
    margin: 20px auto;
  }
}

/* About US */
.hero-section {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/about-us.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(30%);
  z-index: 1;
}

.hero-section-1{
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-section-1::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/profile-img.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(47%);
  z-index: 1;
}

.content-overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.content-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.inquire-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: linear-gradient(90deg, #0C5671, #16A3D7);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.inquire-btn:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content-overlay {
    padding: 10px;
    margin: 150px 10px;
  }

  .content-overlay h2 {
    font-size: 1.8rem;
  }

  .content-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .content-overlay {
    margin: 100px 10px;
  }

  .content-overlay h2 {
    font-size: 1.5rem;
  }

  .content-overlay p {
    font-size: 0.9rem;
  }

}

.empowering-section {
  padding: 90px;
  background-color: #f5f9fc;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.empowering-section h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #0C5671;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}

.empowering-section p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.3rem;
  color: #0C5671;
  line-height: 1.6;
}

.empowering-section img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .empowering-section {
    padding: 60px 20px;
  }

  .empowering-section .row {
    flex-direction: column;
    text-align: center;
  }

  .empowering-section img {
    margin-bottom: 20px;
  }

  .empowering-section h2 {
    font-size: 1.8rem;
  }

  .empowering-section p {
    font-size: 1.2rem;
  }
}


.card-text{
  color: #0C5671;
}

.team-section {
  background: linear-gradient(135deg, #ffffff 0%, #c6cdcf 100%);
  padding: 3rem 0;
}

.team-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #0C5671;
  margin-bottom: 30px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  position: relative;
}

.team-title::after {
  content: '';
  display: block;
  width: 10%;
  height: 3px;
  background-color: #0077A5;
  margin: 0.5rem auto 0;
}


.team-intro {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.team-description h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0C5671;
  margin-bottom: 1rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.team-description p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.img-fluid {
  max-width: 90%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .img-fluid {
    display: block; /* Ensure the image behaves like a block element */
    margin-left: auto; /* Automatically adjust the left margin */
    margin-right: auto; /* Automatically adjust the right margin */
    width: auto; /* Optional: adjust the width if needed */
  }
}


.team-image {
  max-width: 90%;
  border-radius: 100px 0 90px 0;
  clip-path: path('M 0 100 Q 50% 0, 100% 100 Z');
  transition: transform 0.3s ease;
}






@media (min-width: 768px) {
  .img-fluid {
    max-width: 100%;
  }
}


.nexiz-professionals-section {
  background: linear-gradient(to bottom right, #fcfcfc, #ccefff);
  padding: 3rem 0;
}


.nexiz-team-member {
  text-align: center;
  width: 100%;
  max-width: 200px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.nexiz-team-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}


.nexiz-team-member h5 {
  color: #0C5671;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
}


.nexiz-team-member p {
  font-size: 0.9rem;
  color: #0C5671;
}


.nexiz-linkedin-icon {
  color: #0077b5;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.nexiz-linkedin-icon:hover {
  color: #67acd1;
}

.custom-gradient {
  background: linear-gradient(to bottom, white, #b7e3f5);
  min-height: 60vh;
  align-items: center;
}


.custom-heading {
  color: #0C5671;
  font-size: 2.3em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.custom-vertical-line {
  width: 3px;
  height: 70%;
  background-color: #0b95b1;
  position: absolute;
  left: -20px;
  top: 140px;
}


.custom-text {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
  font-size: 1.2em;
  line-height: 1.6;
  padding-left: 30px;
  margin-top: 30px;

}

.custom-text strong{
  color:#0C5671;
}

.custom-btn {
  background: linear-gradient(90deg, #0C5671, #16A3D7);
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  margin-left: 40px;
  margin-top: 30px;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  line-height: 2.8;
}

.custom-btn:hover {
  background-color: #2a7e9f;
  color: white;
}

.custom-content {
  position: relative;
  padding-left: 40px;
}


.contact-section1 {
  background: linear-gradient(to right, #062531, #16A3D7);
  padding: 35px 0;
  color: white;
}

.contact-section1 {
  padding-top: 80px;
}


.contact-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.contact-info {
  padding: 50px;
  text-align: left;
}

.contact-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
  color: white;
}

.contact-info p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-top: 5px;
}

.contact-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #16d7bd;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
  outline: none;
}

.contact-button:hover {
  color: #fff;
  box-shadow: 0 0 15px rgba(22, 163, 215, 0.7);
}

@keyframes pulse {

  0%,
  100% {
    background-color: transparent;
  }

  50% {
    background-color: #16A3D7;
  }
}



.contact-section2 {
  background: linear-gradient(90deg, #cee1f5, #c5dadf);
  padding: 20px;
  color: #ffffff;
}

.section-title {
  color: #0C5671;
  font-size: 40px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
}

.section-subtitle {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
  font-size: 18px;

}


.contact-form {
  border: 2px solid #37edff;
  padding: 30px;
  border-radius: 15px;
  background-image: url('images/form-bg.jpg');
  margin-left: 20px;
  /* Adjust the value as needed */

}


.contact-form-heading {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.form-label {
  color: #16A3D7;
}

.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #1f7594;
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  background: linear-gradient(100deg, #16A3D7, #0C5671);
  border: none;
  border-radius: 15px;
  color: white;
  padding: 10px 30px;
  font-size: 18px;
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 300px;
}

.cu-img {

  max-width: 100%;
  height: auto;
  margin-top: 30px;
  /* Adjust this value as needed to align with the form */
}




@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }

  .cu-img {
    margin-bottom: 20px;
  }

  .submit-btn {
    padding: 10px 20px;
  }
}

.chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 24px;
}

.chatbot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.chatbot-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  max-width: 400px; 
  max-height: 500px; 
  overflow-y: auto; 
  padding: 20px; 
  background-color: #fff; 
  border-radius: 8px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.chatbot-auto-typing {
  background-color: #f9f9f9; 
  padding: 15px; 
  border-radius: 5px; 
  margin-top: 20px; 
  white-space: 2px; 
  word-break: break-word; 
}

.chatbot-auto-typing p {
  margin: 0; 
  line-height: 1.5;
  word-spacing: 30px;
  white-space: normal;
}


.chatbot-auto-typing button {
  display: block; 
  margin-top: 10px; 
  background-color: #007bff; 
  color: white; 
  border: none; 
  padding: 10px; 
  border-radius: 5px; 
  cursor: pointer; 
}

.chatbot-auto-typing button:hover {
  background-color: #0056b3; 
}



.chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(90deg, #0C5671, #16A3D7);
  color: white;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  z-index: 1000;
  transition: background-color 0.3s;
}

.chatbot-icon:hover {
  background-color: #005bb5;
}


.chatbot-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 300px;
  max-width: 90%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100000;
  display: none;
  transition: all 0.3s ease-in-out;
}

.chatbot-content {
  padding: 20px;
  text-align: center;
}

.chatbot-content h3 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #0C5671;
  margin: 0 0 10px;
}

.chatbot-content p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0C5671;
}

.chatbot-content input[type="email"],
.chatbot-content button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.chatbot-content button {
  background-color: #16A3D7;
  color: white;
  border: none;
  cursor: pointer;
}

.chatbot-content button:hover {
  background-color: #0C5671;
}

.chatbot-step2 {
  text-align: left;
}


.digital-hero-section {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.digital-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/digital-marketing-cp.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(44%);
  z-index: 1;
}

.digital-content-overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.digital-content-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(218, 216, 216, 0.5);
}

.digital-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: linear-gradient(90deg, #0C5671, #16A3D7) ;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .digital-content-overlay {
      padding: 10px;
      margin: 150px 10px;
  }

  .digital-content-overlay h2 {
      font-size: 1.8rem;
  }

  .digital-content-overlay p {
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .digital-content-overlay {
      margin: 100px 10px;
  }

  .digital-content-overlay h2 {
      font-size: 1.5rem;
  }

  .digital-content-overlay p {
      font-size: 0.9rem;
  }
}

.overview-custom-heading{
color: #0C5671;
font-size: 2rem;
font-weight: bold;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@media(max-width: 768px){
  .overview-custom-heading{
    margin-top: 30px;
    text-align: center;
  }

  .overview-custom-paragraph{
    text-align: center;
  }

  .overview-custom-paragraph2{
    text-align: center;
  }
}

.overview-custom-paragraph {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
color:#0C5671 ;
font-weight: 400;

}

.overview-custom-paragraph2 {
  color:#0C5671 ;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* .img-fluid {
max-width: 100%;
height: auto; 
} */

.web-dev{
  background: linear-gradient(55deg, #f8f8f8, #7adcff);
  padding: 10px;
}


.technology-section {
  background-color: #f8f9fa; 
  padding: 50px 0; 
}

.technology-section img {
  width: 80px; 
  height: auto;
}

.technology-section h4 {
  font-size: 1.5rem; 
  margin-top: 15px; 
  color: #333; 
}

.technology-section p {
  font-size: 1rem; 
  color: #555; 
  margin-top: 10px; 
}


.text-center {
  text-align: center; 
}


@media (max-width: 768px) {
  .technology-section {
      padding: 30px 0; 
  }

  .technology-section h4 {
      font-size: 1.2rem; 
  }
}

/* web developement */
.web-hero-section {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.web-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/web-cp.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(60%);
  z-index: 1;
}

.web-content-overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.web-content-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(218, 216, 216, 0.5);
}

.web-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #257c8d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

@media(max-width: 768px) {
  .start-project-btn {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensures vertical centering */
    width: 100%; /* Ensures the button takes up the full width of its parent container */
  }
}


.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .web-content-overlay {
      padding: 10px;
      margin: 150px 10px;
  }

  .web-content-overlay h2 {
      font-size: 1.8rem;
  }

  .web-content-overlay p {
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .web-content-overlay {
      margin: 100px 10px;
  }

  .web-content-overlay h2 {
      font-size: 1.5rem;
  }

  .web-content-overlay p {
      font-size: 0.9rem;
  }
}


/* edit need */
.web-services-section {
  background-color: #e9f4fc;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.web-services-container {
  max-width: 1200px;
  margin: auto;
}

.web-services-title {
  font-size: 2.5rem;
  color: #0c5671;
  margin-bottom: 10px;
}

.web-services-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.web-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.web-service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.web-service-item:hover {
  transform: translateY(-10px);
}


.web-service-icon {
  font-size: 3.8rem;
  margin-bottom: 15px;
}

.html-icon i {
  color: #ff4613;
}

.wordpress-icon i {
  color: #277ba1; 
}

.shopify-icon i {
  color: #7fac2b; 
}

.react-icon i {
  color: #3acbf3; 
}

.web-service-item h3 {
  font-size: 1.6rem;
  color: #0c5671;
  margin-bottom: 10px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.web-service-item p {
  font-size: 1rem;
  color: #333;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media (min-width: 768px) {
  .web-services-grid {
      grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .web-services-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.process-section {
  background: linear-gradient(135deg, #03181b, #4da4c4); 
  padding: 50px 0; 
  color: white; 
}

@media(max-width: 768px){
  .process-section h1{
    text-align: center;
  }
  .process-section{
    text-align: center;
  }
}

.process-section h1 {
  color: #0c5671; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.7rem;
}

.process-section .process-title {
  color: white; 
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

.process-section .web-development-title {
  color: white;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.process-section p {
 color: white;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.process-section .container {
  max-width: 1200px; 
}




.step-section {
  padding: 50px 0;
  
}

.step-container {
  text-align: center;
}

.step-item {
  
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.step-number {
  font-size: 45px;
  color: #005f5f;
  font-weight: bold;
  margin: 0;
  
}

.step-title {
  font-size: 25px;
  color: #0C5671;
  font-weight: bold;
  margin: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.step-points {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-points li {
  font-size: 18px;
  color: #1481a8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 8px 0;
  position: relative;
  padding-left: 80px;
}

.step-points li::before {
  content: "■";
  color: #005f5f;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 8px;
  padding-left: 50px;
}

@media (min-width: 768px) {
  .step-item {
      min-height: 300px;
  }
} 


/* andriod development */
.android-hero-section {
  position: relative;
  height: 800%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.android-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-image: url('images/android-cp.png');
  background-size: cover;
  background-position: center;
  filter: brightness(47%);
  z-index: 1;
}

.android-content-overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 50px;
  max-width: 600px;
  z-index: 2;
  margin: 100px 30px; 
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.android-content-overlay h1 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(218, 216, 216, 0.5);
}

.android-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #257c8d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .android-hero-section {
    height: 80vh;
  }

  .android-content-overlay {
      padding: 20px;
      margin: 100px 20px;
  }

  .android-content-overlay h1 {
      font-size: 2rem;
  }

  .android-content-overlay p {
      font-size: 1.1rem;
  }
}


@media (max-width: 576px) {
  .android-hero-section {
    height: 75vh;
  }

  .android-content-overlay {
      padding: 15px;
      margin: 80px 10px;
      max-width: 90%;
  }

  .android-content-overlay h1 {
      font-size: 1.6rem;
  }

  .android-content-overlay p {
      font-size: 1rem;
  }

  .start-project-btn {
      font-size: 0.9rem;
      padding: 8px 16px;
  }
}



.android-heading {
  text-align: center;
  
}

.android-heading-title {
  color: #0C5671;
  font-size: 2.3rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
}

.android-heading-description {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.android-services {
  background: linear-gradient(to bottom, #e7f3f3, #bad3dd); 
  padding: 40px 0; 
}

.android-services h3{

  color: #0C5671;
  

}


.service-item-1 {
  padding: 20px; 
  transition: transform 0.3s; 
}

.service-item-1:hover {
  transform: scale(1.05); 
}

.icon-size {
  font-size: 2.5rem; 
  color: #0C5671; 
}


.android-development-process {
  background: linear-gradient(to bottom, #e7f3f3, #bad3dd); 
  padding: 100px 0; 
}

.main-heading {
  color: #0C5671; 
  font-size: 2.8rem; 
  line-height: 1.5; 
  margin-bottom: 30px; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
}

.process-steps {
  margin-top: 20px; 
  
}

.step {
  background: rgba(255, 255, 255, 0.8); 
  border-radius: 8px; 
  padding: 20px; 
  margin-bottom: 20px; 
  transition: transform 0.3s; 
  
}

.step:hover {
  transform: scale(1.05); 
}

.step h3 {
  color: #0C5671; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
  
}

.step p {
  margin-top: 10px; 
}






.android-technology-stack-section {
  background: linear-gradient(135deg, #0C5671, #4cc5f1); 
  color: white; 
  padding: 50px 60px; 
}

.stack-heading {
  font-size: 2.5rem; 
  margin-bottom: 20px; 
  text-align: left; 
  padding-top: 50px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.technology-icons {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-around;
  align-items: center; 
  gap: 20px; 
}

.icon-wrapper {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  width: 100px; 
}

.icon-wrapper  i{
  color: white;
}

.icon {
  font-size: 2rem; 
  margin: 10px 0; 
  color: white; 
  transition: transform 0.3s, color 0.3s; 
}

.icon:hover {
  transform: scale(1.1); 
}

.icon-name {
  font-size: 1rem; 
  color: white; 
}


@media (max-width: 992px) {
  .stack-heading {
      font-size: 2rem; 
  }
  .icon {
      font-size: 1.8rem; 
  }
  .icon-wrapper {
      width: 80px; 
  }
}

@media (max-width: 768px) {
  .stack-heading {
      font-size: 1.8rem;
  }
  .icon {
      font-size: 1.6rem; 
  }
  .technology-icons {
      justify-content: center; 
  }
}

@media (max-width: 576px) {
  .stack-heading {
      font-size: 1.5rem; 
  }
  .icon {
      font-size: 1.4rem; 
  }
  .icon-name {
      font-size: 0.9rem; 
  }
} 


/* data strategy */
.data-hero-section {
  background: linear-gradient(135deg, #03181b, #1fafe4); 
  color: white;
  height: 95vh;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.data-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.data-content p {
  font-size: 1.2rem;
  margin-bottom: 45px;
}

.start-project-btn {
  background-color: #1976D2;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 15px; 
}

.start-project-btn:hover {
  background-color: #1565C0;
  color: white;
}


.data-image img {
  width: 100%;
}


@media (max-width: 992px) {
  .data-content h2 {
      font-size: 2.2rem;
  }

  .data-content p {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .data-content h2 {
      font-size: 2rem;
  }

  .data-content p {
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .data-hero-section {
      height: auto;
      padding-top: 50px;
      padding-bottom: 50px;
  }

  .data-content h2 {
      font-size: 1.8rem;
  }

  .data-content p {
      font-size: 0.9rem;
  }
  
  .start-project-btn {
      font-size: 0.9rem;
      padding: 10px 15px;
  }

  .data-content {
      text-align: center;
  }

  .data-image img {
      max-width: 100%;
      margin-top: 20px;
      border-radius: 10px;
  }
}




.data-services-section {
  background: linear-gradient(to bottom, #e7f3f3, #bad3dd); 
  padding: 40px 0;

}

.services-title {
  color: #0C5671;
  font-size: 2.5rem;
}

.services-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.data-service {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.data-service .icon {
  font-size: 2.5rem;
  color: #0C5671;
  margin-bottom: 20px;
}

.data-service h2 {
  font-size: 1.5rem;
  color: #0C5671;
  margin-bottom: 15px;
}

.data-service p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-intro {
    font-size: 1rem;
  }
  
  .data-service h2 {
    font-size: 1.3rem;
  }
  
  .data-service p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .data-service {
    padding: 20px;
  }
}

/* digital marketing */
.digital-hero-section {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.digital-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/digital-marketing-1.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(44%);
  z-index: 1;
}

.digital-content-overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.digital-content-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(218, 216, 216, 0.5);
}

.digital-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #257c8d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .digital-content-overlay {
      padding: 10px;
      margin: 150px 10px;
  }

  .digital-content-overlay h2 {
      font-size: 1.8rem;
  }

  .digital-content-overlay p {
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .digital-content-overlay {
      margin: 100px 10px;
  }

  .digital-content-overlay h2 {
      font-size: 1.5rem;
  }

  .digital-content-overlay p {
      font-size: 0.9rem;
  }
}

.overview-custom-heading{
color: #0C5671;
font-size: 2rem;
font-weight: bold;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.overview-custom-paragraph {
color:#0C5671 ;
font-weight: bold;

}

.overview-custom-paragraph2 {
color:#292828 ;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* .img-fluid {
max-width: 100%;
height: auto; 
} */

/* graphic designing */

.graphic-hero-section{
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.graphic-hero-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/graphic-design-cp.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(50%);
  z-index: 1;
}

.graphic-content-overlay{
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.graphic-content-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(207, 202, 202, 0.5);
}

.graphic-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #26626e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .graphic-content-overlay {
    padding: 10px;
    margin: 150px 10px;
  }

  .graphic-content-overlay h2 {
    font-size: 1.8rem;
  }

  .graphic-content-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .graphic-content-overlay {
    margin: 100px 10px;
  }

  .graphic-content-overlay h2 {
    font-size: 1.5rem;
  }

  .graphic-content-overlay p {
    font-size: 0.9rem;
  }

}

.services-title {
  font-size: 2em; 
  color: #0C5671; 
  font-weight: bold;
  margin-bottom: 20px; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding-top: 20px;
}

.serices-intro {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #0d6f92;
  font-size: 16px;
  line-height: 1.5;
}

.services-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #e7f3f3, #e4ebee); 
  border-radius: 8px;   
}


.services-section h1 {


  font-size: 20px;
  color: #0C5671;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.services-section .tagline {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px
}
.service {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.service:hover {
  transform: scale(0.98); 
  box-shadow: 0 8px 16px rgba(0, 0, 2, 0.6); 
}

.service .icon {
  font-size: 3em;
  color: #0C5671; 
  margin-bottom: 15px;
}


.service h2 {
  font-size: 1.5em;
  color: #0C5671;
  margin-bottom: 10px;
}

.service p {
  color: #555;
  font-size: 1em;
  line-height: 1.5;
}


/* video editing */
.video-hero-section {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  
}

.video-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/video-editing-cp.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(37%);
  z-index: 1;
}

.video-content-overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.video-content-overlay h1 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(218, 216, 216, 0.5);
 
}

.video-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #257c8d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .videocontent-overlay {
      padding: 10px;
      margin: 150px 10px;
  }

  .video-content-overlay h2 {
      font-size: 1.8rem;
  }

  .video-content-overlay p {
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .video-content-overlay {
      margin: 100px 10px;
  }

  .video-content-overlay h2 {
      font-size: 1.5rem;
  }

  .video-content-overlay p {
      font-size: 0.9rem;
  }
}


.video-editing-service {
  
  padding: 40px 0; 
  color: #333;
}

.services-title {
  font-size: 2.5rem;
  font-weight: bold; 
  margin-bottom: 1rem; 
}

.services-intro {
  font-size: 1.25rem; 
  margin-bottom: 2rem; 
}


.service {
 
 
  padding: 30px;
  text-align: center; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s; 
}

.service:hover {
  transform: translateY(-5px); 
}

.icon {
  font-size: 3rem; 
  color: #007bff; 
  margin-bottom: 1rem; 
}

.service h2 {
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
}

.service p {
  font-size: 1rem; 
  color: #6c757d; 

}

/* ios developement */

.ios-hero-section{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.ios-hero-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/ios-cp.png');
  background-size: cover;
  background-position: center;
  filter: brightness(95%);
  z-index: 1;
}

.ios-content-overlay{
  position: relative;
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  z-index: 2;
  margin: 170px 150px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.ios-content-overlay h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 7px rgba(207, 202, 202, 0.5);
}

.ios-content-overlay p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.start-project-btn {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #26626e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
}

.start-project-btn:hover {
  text-decoration: none;
  background-color: #19788b;
}

@media (max-width: 768px) {
  .ios-content-overlay {
    padding: 10px;
    margin: 150px 10px;
  }

  .ios-content-overlay h2 {
    font-size: 1.8rem;
  }

  .ios-content-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ios-content-overlay {
    margin: 100px 10px;
  }

  .ios-content-overlay h2 {
    font-size: 1.5rem;
  }

  .ios-content-overlay p {
    font-size: 0.9rem;
  }

}




.ios-services-title {
  font-size: 2.3em; 
  color: #0C5671; 
  margin-bottom: 15px; 
  font-weight: bold; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
}

.ios-services-intro {
  font-size: 1.2em; 
  color: #666; 
  margin-bottom: 30px; 
  line-height: 1.6; 
  max-width: 800px; 
  margin-left: auto; 
  margin-right: auto; 
  
}


.ios-services-section {
  padding: 50px 20px; 
  background: linear-gradient(to bottom, #e7f3f3, #bad3dd); 
}

.ios-service {
  background-color: #ffffff; 
  border-radius: 10px; 
  padding: 20px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.ios-service:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}


.ios-service h2 {
  font-size: 1.5em;
  color: #0C5671; 
  margin-bottom: 10px; 
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
  font-weight: bold;
}

.ios-service p {
  color: #555; 
  font-size: 1em; 
  line-height: 1.5; 
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}


@media (max-width: 768px) {

    .ios-services-title {
        font-size: 1.8em; 
    }
  
    .ios-services-intro {
        font-size: 1em; 
    }
  
  

  .ios-services-section {
    padding: 30px 10px; 
  }
}






.ios-bg-section {
  background: linear-gradient(135deg, #1e6c8b, #08445a); 
  padding: 60px 0;
  color: #fff;
}

.ios-content h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
}

.ios-content p {
  font-size: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.ios-description {
  position: relative;
  padding-left: 40px; 
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.vertical-line {
  position: absolute;
  left: 10px; 
  top: 0;
  bottom: 0;
  width: 3px; 
  background-color: white;
}

@media (max-width: 768px) 
{ 
  .vertical-line {
    display: none; 
  }


  .ios-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  

  .ios-content p {
    font-size: 1.2rem;
    text-align: center;
  }

}

.ios-description p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* blogs */
.blog-section1 {
  background: linear-gradient(to right, #021c42, #20bbf3);
  padding: 80px 0 35px; 
  color: white;
}

.blog-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.blog-info {
  padding: 50px;
  text-align: left;
}

.blog-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 80px;
  text-shadow: 2px 2px 8px rgba(204, 204, 204, 0.8);
  text-align: center;
  color: white;
}

.blog-info p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-top: 5px;
}

.custom-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  background-color: white;
  border-radius: 8px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
              0 1px 3px rgba(0, 0, 0, 0.06); 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.custom-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.custom-card-img {
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
}

.card-body {
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body h5{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #0C5671;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}

.card-body h6{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #00000067;
  font-size: 20px;
  text-align: center;
}

.card-body p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #257c8d;
  font-size: 14px;
}






.category-filter {
  margin-top: 20px;
  text-align: center;
}

.category-filter .custom-select {
  background-color: #f8f9fa; 
  border: 1px solid #ccc; 
  border-radius: 30px; 
  padding: 10px 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem; 
  transition: all 0.3s ease-in-out; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}


.category-filter .custom-select:hover {
  background-color: #ffffff;
  border-color: #007bff;
  box-shadow: 0px 6px 10px rgba(0, 123, 255, 0.2);
}

.category-filter .custom-select:focus {
  outline: none;
  border-color: #007bff; 
  box-shadow: 0px 6px 10px rgba(0, 123, 255, 0.3);
}


.category-filter .row {
  justify-content: center;
}

@media (max-width: 768px) {
  .category-filter .custom-select {
      font-size: 0.9rem;
      padding: 8px 15px;
  }
}



.search-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
}

.search-bar {
  background-color: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 10px 45px 10px 20px; 
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.search-button {
  position: absolute;
  top: 50%;
  right: 15px; /* Adjust distance from the edge */
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #007bff;
  cursor: pointer;
}

.search-button i {
  font-size: 1.2rem;
}

.search-button:hover {
  color: #0056b3;
}

@media (max-width: 768px) {
  .search-bar {
    font-size: 0.9rem;
    padding: 8px 40px 8px 15px;
  }
  .search-button {
    right: 10px; /* Adjust icon placement for smaller screens */
  }
}


.suggestions-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f1f1f1;
}

.no-suggestions {
  padding: 10px;
  color: #999;
}





.read-more{
  background-color: #0C5671;
  color: white;
  border-radius: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.read-more:hover{
  color: white;
  font-weight: 600;
}


/* blog-detail */
.blog-content h1{
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 70px;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.category{
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  color: #c7dbdb;
}

.blog-para{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #0C5671;
}


.comment-section {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  /* background-color: #e7e5e5; */
  background: linear-gradient(360deg, #98d8f0, #ffffff);
}

.comment-heading {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0C5671;
  text-align: center;
}

.comment-name {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.input-group {
  display: flex;
  width: 100%;
}

.comment-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.comment-submit {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comment-submit:hover {
  background-color: #0056b3;
}

.comments-container {
  margin-top: 20px;
}

.comment-item {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
}

.comment-author {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.comment-text {
  margin-bottom: 10px;
  color: #555;
}

.reply-link {
  font-size: 0.9rem;
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}

.reply-link:hover {
  color: #0056b3;
}

.reply-box {
  margin-top: 10px;
  display: none;
}

.reply-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.reply-submit {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reply-submit:hover {
  background-color: #1e7e34;
}

.modal-title{
  text-align: center;
  font-size: 1.5rem;
  color: #0C5671;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.modal-body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #005f5f;
}

.close-button{
  background-color: #0C5671;
  color: white;
}

.close-button:hover{
  color: white;
  text-decoration: underline;
}
.no-blogs {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-top: 20px;
}









