* {
  margin: 0;
  padding: 0;
}
body {
    box-sizing: border-box;
    background-color: #eee;
    font-family: "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  html {
      scroll-behavior: smooth;
  }
  
/* Loading screen styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* */
.lds-ripple {
  /* change color here */
  color: #038675
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}



@keyframes l5 {to{transform: rotate(.5turn)}}
/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
  display: none;
}
.loader-hidden {
  display: none;
} 

/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
display: none;
}
.loader-hidden {
  display: none;
}

  /* -- Navbar -- */
    
  .navbar {
    position: absolute;
    width: 100%;
    z-index: 99;
    transition: ease-in-out 0.3s;
  }
  .navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
  .navbar img {
    position: relative;
    z-index: 9;
    width: 200px;
  }
    
  .menu {
    z-index: 9;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
    
    .menu li {
      padding: 0 30px;
    }
    
    .menu li a {
      position: relative;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      padding: 10px 0;
      font-weight: bold;
      transition: ease-in 0.2s;
    }
    
  .menu li a:before{
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: #00bfa5;
      border-radius: 12px;
      transition: all 0.4s ease;
    }
    .menu li a:hover:before{
      width: 100%;
    }
    .menu li.center a:before{
      left: 50%;
      transform: translateX(-50%);
    }
    .menu li.upward a:before{
      width: 100%;
      bottom: -5px;
      opacity: 0;
    }
    .menu li.upward a:hover:before{
      bottom: 0px;
      opacity: 1;
    }
    .menu li.forward a:before{
      width: 100%;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }
    .menu li.forward a:hover:before{
      transform: scaleX(1);
      transform-origin: left;
    }
  
    .menu .active a::after {
      content: '';
      position: absolute;
      bottom: 0px;
      z-index: 99;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #00bfa5, transparent);
  }
  
    .menu a:hover {
        color: #ccc;
    }
    
    .menu-icon {
      display: none;
      cursor: pointer;
    }
    
    .bar {
      display: block;
      width: 30px;
      height: 4px;
      background-color: #377e82;
      margin: 4px 0;
    }
    .btn {
      z-index: 9;
      display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      border: 2px solid #00bfa5;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      background-color: transparent;
      color: #fff;
      transition: color 0.3s ease;
      }
      
      .btn:before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #00bfa5;
      transform: skewX(-45deg);
      transition: left 0.3s ease;
      z-index: -1;
      }
      
      .btn:hover {
      color: #fff;
      transform: skewX(0deg);
      }
      
      .btn:hover:before {
        left: 0;
      }
    
    @media (max-width: 767px) {
    .btn {
    padding: 8px 16px;
    font-size: 14px;
    }
    }
    
    @media (min-width: 768px) and (max-width: 991px) {
    .btn {
    padding: 10px 18px;
    font-size: 15px;
    }
    }
    
    @media (min-width: 992px) {
    .btn {
    padding: 12px 24px;
    font-size: 16px;
    }
    }
  
  /* Additional CSS for fixed navbar */
  .navbar-fixed {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 20px 0;
      transition: ease-in-out 0.3s;
    }
    .navbar .content {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
    .navbar .btn {
        display: none;
    }
      .navbar img {
          width: 110px;
      }
      .menu {
        display: none;
        color: #fff;
      }
      .menu a:hover {
          color: #ccc;
      }
  
      .menu-icon {
        display: block;
      }
  
      .menu.active {
        display: flex;
        flex-direction: column;
        background-color: #377e82;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        padding: 10px;
      }
  
      .menu.active li {
        padding: 20px;
      }
  
      .menu li a {
          font-size: 16px;
      }
  }
  
  
  
  /* -- Hero -- */
  .hero {
    overflow: hidden;
    position: relative;
    display: flex;
    background: linear-gradient(135deg, #0b0b0b 0%, #2a2a2a 100%);
    justify-content: space-between;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;
    padding: 200px 0px;
  }
  
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
  background-size: 50px 50px;
  transform: rotate(30deg);
  z-index: 1;
}

.hero iframe {
  width: 500px;
  height: 500px;
}

  .hero-text {
    z-index: 9;
    flex: 1;
    max-width: 600px;
    margin-right: 40px;
  }
  
  .hero h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
  }
  
  .hero h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #eee;
  }
  
  .hero p {
    font-size: 18px;
    line-height: 2.1;
    margin-bottom: 32px;
    color: #eee;
  }
  
  .hero-image {
    z-index: 9;
    position: relative;
    max-width: 600px;
  }
  
  .hero-image img {
    z-index: 999;
    width: 100%;
    height: auto;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    width: 100%;
}

#model-container {
    z-index: 9;
    height: 500px; /* Adjust as needed */
    max-width: 500px; /* Adjust as needed */
}

canvas {
    width: 100% !important;
    height: 100% !important;
}
@media (max-width: 768px) {
  #model-container {
    max-width: 250px;
    height: 250px
  }
  .hero-content {
    justify-content: center;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero {
    padding: 150px 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero {
    padding: 60px 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media only screen and (max-width : 768px) {
	.demo-1 .main-title {
		font-size: 3em;
	}
}
  @media (max-width: 992px) {
    .hero {
      flex-direction: column;
      padding: 60px 20px;
    }
  
    .hero-text {
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 40px;
      text-align: center;
    }
  
    .hero-image {
      max-width: 100%;
    }
  }







/* What we offer section */


/* Header */
.large-header {
	position: absolute;
	width: 100%;
  left: 0;
  top: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	z-index: 9;
}

#large-header {
	background-image: url('bg.mp4');
}

.demo-1 .main-title {
	text-transform: uppercase;
	font-size: 4.2em;
	letter-spacing: 0.1em;
}

.main-title .thin {
	font-weight: 200;
}

  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');
  
  .video-section {
      background: #0b0b0b;
      text-align: center;
  }

  .video-section {
      height: 600vh; /* determines the scrolling length for video */
      position: relative;
  }

  .video-container {
      width: 100%;
      height: 100vh;
      position: sticky;
      top: 0;
      left: 0;
      overflow: hidden;
      background: #0b0b0b;
  }
  .video-section h2 {
    padding-top: 50px;
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 52px;
  }
  .video-section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      z-index: 99;
      left: 0;
      width: 90%;
      height: 3px;
      background: linear-gradient(90deg, #00bfa5, transparent);
  }

  #bgVideo {
      width: 70%;
      height: 100%;
      right: 0;
      float: right;
      object-fit: cover;
  }

  .inner-text {
    font-family: 'Raleway', sans-serif;
      position: absolute;
      font-size: 36px;
      max-width: 550px;
      color: white;
      text-align: left;
      left: 15%;
      padding: 20px;
      background: rgba(0, 0, 0, 0.7);
      border-left: 5px solid #00bfa5;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
  }

  .inner-text::before {
      content: '"';
      font-size: 72px;
      position: absolute;
      left: -40px;
      top: -10px;
      color: #00bfa5;
      font-family: Georgia, serif;
  }

  .inner-text:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

  @media (max-width: 768px) {

  .video-section h2 {
    padding-top: 30px;
    font-size: 24px;
  }
  
  .video-section h2::after {
    width: 100%;
  }
  
  #bgVideo {
    width: 100%; /* Full width for smaller screens */
    float: none;
  }
  
  .inner-text {
    font-size: 18px;
    max-width: 90%;
    left: 10%;
    right: 10%;
    padding: 15px;
  }
  
  .inner-text::before {
    font-size: 48px;
    left: -30px;
    top: -5px;
  }
}



  /* -- Values -- */


.core-values {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, 
      #0b0b0b 0%,
      #0b0b0b 30%,
      #280d6f 110%
    );
    padding: 100px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}


.content-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-section {
    flex: 1;
    max-width: 500px;
    margin-right: 50px;
}

.text-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.text-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #00bfa5, transparent);
}

.text-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #00bfa5;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #00bfa5;
    color: #fff;
}

.icon-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 500px;
}

.icon-container {
    width: 150px;
    height: 150px;
    margin: 15px;
    perspective: 1000px;
}

.icon-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: ease-in-out 0.3s;
    transform-style: preserve-3d;
}
/*
.icon-container:hover .icon-wrapper {
    transform: rotateY(180deg);
    left: 50px;
}
*/
.icon-front, .icon-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 25px;
}

.icon-back {
    transform: rotateY(180deg);
    background: #00bfa5;
}

.icon-wrapper i {
    font-size: 40px;
    margin-bottom: 10px;
}

.icon-wrapper p {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .text-section {
        margin-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .text-section h2::after {
        left: 25%;
        width: 50%;
    }

    .icon-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
  .core-values {
    padding: 50px 20px;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .text-section {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .text-section h2 {
    font-size: 24px;
  }

  .text-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .text-section p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .icon-section {
    max-width: 90%;
    margin-top: 20px;
    left: -10px;
  }

  .icon-container {
    width: 120px;
    height: 120px;
    margin: 10px;
    padding-left: 0;
    margin-left: 0;
  }

  .icon-front, .icon-back {
    padding: 15px;
  }

  .icon-wrapper i {
    font-size: 30px;
  }

  .icon-wrapper p {
    font-size: 12px;
  }
}

.icon-section {
  position: relative;
  width: 400px;
  height: 400px;
}

.icon-container {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container:nth-child(1) {
  top: 80px;
  left: 0px;    
}

.icon-container:nth-child(2) {
  top: 80px;
  right: 0px;
}

.icon-container:nth-child(3) {
  bottom: 50px;
  right: 50px;
}

.icon-container:nth-child(4) {
  top: -50px;
  left: 46%;
  transform: translateX(-50%);
}

.icon-container:nth-child(5) {
  bottom: 50px;
  left: 50px;
}




  /* --- Projects --- */

.projects {
  position: relative;
  padding: 100px 20px;
  background: url("img/bg.jpg");
  background-size: cover;
  color: #fff;
}
.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a1; /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
  z-index: 8; /* to make sure the layer is on top of the image */
}
.projects .text {
  position: relative;
  z-index: 9 !important;
}
.projects h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.intro {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.project-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}

.project-card {
  flex-basis: calc(33.33% - 20px);
  margin-bottom: 30px;
  padding-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  z-index: 9;
  transition: ease-in-out 0.2s;
}
  
.project-card:hover {
  transform: translateY(-5px);
}

.project-card .text {
  padding: 20px;
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  padding: 20px 0 0 0;
  margin: 0;
}

.project-card p {
  color: #555;
}
  

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid #00bfa5;
  border-radius: 4px;
  color: #038675;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background-color: #038675;
  color: #fff;
}
  
  @media (max-width: 768px) {
    .project-card {
      flex-basis: 100%;
    }
  }




.services {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, 
    #280d6f 0%,
    #0b0b0b 10%,
    #280d6f 110%
  );
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}
  
.services h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    margin-bottom: 100px;
    color: #fff;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    z-index: 99;
    left: 0;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, #00bfa5, transparent);
}
  
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}
  
.service-card {
    text-align: left;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
  
.service-card:hover {
    transform: translateY(-5px);
}
  
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
  
.service-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    padding: 0 15px;
    color: #000;
}
  
.service-card p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 15px 15px;
    color: #333;
}
  
@media (max-width: 768px) {
    .service-grid {
      max-width: 300px;
    }
}
  
@media (max-width: 480px) {
    .service-grid {
      grid-template-columns: 1fr;
    }
}




/* Softwares */

.softwares {
  background: linear-gradient(-135deg, #280d6f 30%, #280d6f 90%);
  padding: 50px 20px;
  text-align: center;
}

.softwares h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
}

.software-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.software-logo {
  flex-basis: calc(50% - 15px);
  max-width: 300px;
  height: 100px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.software-logo:hover {
  transform: translateY(-5px);
}

.software-logo img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 768px) {

  .software-logo {
    width: 100%;
    max-width: none;
    height: 50px;
  }
}




/* Footer */

.footer {
  background: linear-gradient(135deg, #eee 0%, #fff 100%);
  color: #0b0b0b;
  padding: 50px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  margin: 20px;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #00bfa5;
}

.footer-section p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  color: #555;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #00bfa5;
}

.footer-section.links ul {
  list-style-type: none;
  padding: 0;
}

.footer-section.links ul li {
  margin-bottom: 10px;
}

.footer-section.links ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
  color: #00bfa5;
}

.footer-section.contact p {
  display: flex;
  align-items: center;
}

.footer-section.contact i {
  margin-right: 10px;
  color: #00bfa5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  color: #555;
}

.footer-bottom p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin: 20px 0;
  }
}