/* General Styles */
:root {
  --primary-color: #0294FE;
  --dark-blue: #050A1C;
  --medium-blue: #0D1634;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
  --text-gray: #b0b7c3;
  --purple: #6857a4;
  --blue-button: #3cc0d8;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(to bottom, var(--dark-blue), var(--medium-blue));
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.highlight {
  color: var(--primary-color);
}

.container {
  padding: 0 20px;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.subtitle {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}


.sign-up-btn {
  background: linear-gradient(to right, var(--blue-button), var(--purple)) !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 6px 20px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  margin-left: 15px !important;
  transition: all 0.3s ease !important;
  color: white;
}

.sign-up-btn:hover {
  background-color: #0377ca;
}

/* Hero Section */
.hero-section {
  padding: 150px 0 80px;
  margin-top: 0;
  position: relative;
  background: url('../images/headerbg/headerbgimage.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  height: 90vh;
}
@media (max-width: 992px) {
  .hero-section {
   background: url('../images/headerbg/mobileheader.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  height: 90vh;
  padding: 150px 0 80px;
  }
}

.hero-section h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-section p.subtitle {
  color: var(--text-gray);
  font-size: 1rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
    background: #ffffff3d;
    border-radius: 100px;
    padding: 25px;
  
    justify-content: center;
    
}

.social-group {
  
  justify-items: center;
}

.social-icons {
  display: flex;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-right: 10px;
  transition: all 0.3s ease;
  margin-left: -10px;
  scale: 1.2;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.facebook {
  background-color: var(--primary-color);
}

.youtube {
  background-color: #f00;
}

.twitter {
  background-color: #1da1f2;
}

.linkedIn {
  background-color: #0077b5;
}

.hero-image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.vr-badge {
  position: absolute;
  top: -10px;
    left: 0px;
    background: none;
    display: flex;
    align-items: center;
    z-index: 2;
    scale: 0.8;
}
.vr-badge-right {
  position: absolute;
  top: 0px;
    right: 0px;
    background: none;
    display: flex;
    align-items: center;
    z-index: 2;
    scale: 0.8;
}

.vr-badge img {
  width: 72px;
  height: 72px;
  font-size: 1.5rem;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .vr-badge img {
    
  }
}

.vr-badge-text .small {
  font-size: 0.7rem;
  color: var(--text-gray);
  margin: 0;
}

.vr-badge-text .bold {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}
     .soc-hero {
  position: absolute;
  bottom: 10%;
  left: 25%;
  transform: translateX(-50%);
  z-index: 2;

  display: flex;
  justify-content: center;
}






/* General responsiveness */
@media (max-width: 992px) {
  .hero-section {
   
    padding: 100px 0 60px;
    text-align: center;
  }

  .soc-hero {
    transform: none;
        left: auto;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .cta-group {
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icon {
    margin: 5px;
  }

  .hero-image-container {
    margin-top: 20px;
  }
}

/* For small screens (phones) */
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section h3 {
    font-size: 1.2rem;
  }

  .cta-group {
    padding: 15px;
  }

  .social-title {
    font-size: 1rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    scale: 1.1;
  }
}











/* Client Logos Section */
.client-logos-section {
  padding: 30px 0;
  background-color: rgb(13 22 52);
}

@media (max-width: 992px) {.client-logos-section {padding: 15px 0;}}
@media (max-width: 576px) {.client-logos-section {padding: 5px 0;}}

.logos-container {
  width: 100%;
  overflow: hidden;
}

.logos-slider {
  display: flex;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.logos-slider img {
  height: 80px;
  width: auto;
  margin: 0 30px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logos-slider img:hover {
  filter: brightness(1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Experiences Section */
.experiences-section {
  padding: 80px 0;
  position: relative;
  background: url('images/bg.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.experience-card {
  background-color: rgba(13, 22, 52, 0.5);
  border: 1px solid #1a2647;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.experience-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(2, 148, 254, 0.1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(2, 148, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.experience-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.experience-card p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.explore-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-link:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.experience-images {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.exp-img {
  position: absolute;
  border-radius: 8px;
  opacity: 0.6;
}

.img1 {
  top: 10%;
  right: 20%;
  max-width: 200px;
}

.img2 {
  top: 30%;
  right: 5%;
  max-width: 180px;
}

.img3 {
  top: 60%;
  right: 15%;
  max-width: 160px;
}

.img4 {
  bottom: 10%;
  right: 25%;
  max-width: 200px;
}

.img5 {
  bottom: 20%;
  right: 5%;
  max-width: 180px;
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background-color: rgba(5, 10, 28, 0.9);
}

.projects-slider-container {
  position: relative;
  padding: 20px 0;
}

.projects-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.projects-slider::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 auto;
 
  margin: 0 10px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s ease;
  transform: scale(0.85);
  opacity: 0.7;
}

.project-card.active {
  transform: scale(1);
  opacity: 1;
  width: auto;
}

.project-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transition: all 0.3s ease;
}

.project-overlay h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.project-overlay p {
  color: var(--text-gray);
  font-size: 0.8rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--medium-blue);
  border: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
}

/* Story Section */
.story-section {
  padding: 50px 0;
  background-color: rgba(13, 22, 52, 0.6);
  background-image: url('https://images.unsplash.com/photo-1616096677132-39b65f4d3e10?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=500');
  background-position: center;
  background-size: cover;
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(13, 22, 52, 0.9), rgba(13, 22, 52, 0.7));
}

.story-content {
  position: relative;
  z-index: 1;
}

.story-content h3 {
  font-size: 2rem;
  color: var(--text-light);
}



/* Responsive typography */
@media (max-width: 768px) {
  .story-text h1 {
    font-size: 2rem;
  }

  .story-text .top-text,
  .story-text .sub-text {
    font-size: 1rem;
  }

  .story-text .description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .story-section {
    padding: 60px 0;
  }

  .story-text h1 {
    font-size: 1.5rem;
  }

  .story-text .top-text,
  .story-text .sub-text {
    font-size: 0.95rem;
  }

  .story-text .description {
    font-size: 0.9rem;
  }
}





/* Equipment Section */
.equipment-section {
  padding: 80px 0;
  background-color: #000000;
}

.equipment-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.equipment-content {
  background-color: rgba(13, 22, 52, 0.8);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equipment-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.equipment-content p {
  color: var(--text-gray);
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.equipment-content .btn {
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  align-self: flex-start;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.equipment-content .btn:hover {
  background-color: #0377ca;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: rgba(5, 10, 28, 0.7);
  background: url('../images/icons/tbg2.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  border: 1px solid #1a2647;
  color: black;
  justify-items: center;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-person h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

.testimonial-person p {
  color: #0d1634;
  font-size: 0.7rem;
  margin: 0;
  font-weight: 600;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: black;
  font-size: 0.85rem;
  text-align: center;
}











.vr-features-row {
  margin-top: 60px;
}

.features-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.features-content {
  padding: 20px;
}

.new-badge {
  display: inline-block;
  background-color: #dc3545;
  color: var(--text-light);
  font-size: 0.7rem;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.features-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.features-content p {
  color: var(--text-gray);
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(2, 148, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 0.7rem;
}

/* Footer */
.site-footer {
  padding: 80px 0 20px;
  background-color: var(--medium-blue);
}



.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  
}






.footer-logo img {
  height: 35px;
  width: auto;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-logo img {
    height: auto;
    width: auto;
    margin-right: 0;
  }
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.site-footer h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.site-footer p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background-color: var(--dark-blue);
  border: 1px solid #1a2647;
  border-radius: 5px 0 0 5px;
  padding: 10px 15px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 0 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #0377ca;
}

.qr-code {
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
  padding: 12px;
  border-radius: 8px;
}

.qr-code img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  margin-right: 15px;
}

.qr-text h5 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.qr-text p {
  color: var(--text-gray);
  font-size: 0.75rem;
  margin: 0;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #1a2647;
  text-align: center;
  justify-content: center;
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  
  
  .sign-up-btn {
    margin: 15px 0 0 0;
  }
  
  .hero-image-container {
    margin-top: 50px;
  }
  
  .experience-images {
    opacity: 0.3;
  }
  
  .equipment-content {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
 
  
  .vr-badge i {
    font-size: 1.2rem;
  }
  
  .experience-images {
    display: none;
  }
  
  .features-content {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 0 50px;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card {
    width: 220px;
  }
  
  .project-card.active {
    width: 250px;
  }
  
  .project-card img {
    height: 280px;
  }
}




    .container2 {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      padding: 20px;
    }

    .left-column {
      flex: 1;
      min-width: 400px;
          padding: 0 30px 0 0;
    }

    .left-column h1 {
      font-size: 42px;
      font-weight: 600;
      line-height: 1.3;
    }

    .left-column h1 span {
      color: #00e5ff;
    }

    .left-column p {
      margin: 20px 0 50px;
      font-weight: 300;
      line-height: 1.6;
      color: #ccc;
      padding: 50px 75px 0 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px 40px;
      padding: 50px 75px 0 0;
    }

    .feature-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background-color: #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border-bottom: 3px solid #00e5ff;
    }

    .feature-text h3 {
      font-size: 14px;
      margin: 0;
      text-transform: uppercase;
    }

    .feature-text p {
      font-size: 13px;
      color: #aaa;
      margin: 5px 0 0;
    }

    .right-column {
      min-width: 400px;
      display: grid;
      grid-template-areas:
        "top-left top-right"
        "middle middle"
        "bottom-left bottom-right";
      gap: 20px;
    }

    .image-box {
      width: 100%;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .top-left    { grid-area: top-left; }
    .top-right   { grid-area: top-right; }
    .middle      { grid-area: middle; border-radius: 50%; }
    .bottom-left { grid-area: bottom-left; }
    .bottom-right{ grid-area: bottom-right; }




  
    
   





.story-section {
  position: relative;
  height: 60vh;
  background: url('../images/wehelp.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.story-text {
  color: white;
  max-width: 800px;
}

.story-text .top-text {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #ccc;
}

.story-text h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}

.story-text .sub-text {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 500;
  color: #999;
}

.story-text .description {
  font-size: 14px;
  color: #ccc;
  margin-top: 20px;
  line-height: 1.6;
}









.equipment-section2 {
  padding: 80px 0 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
}

.equipment-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.equipment-image2 {
  max-width: 100%;
  height: auto;
  display: block;
}

.equipment-content2 {
  position: absolute;
  right: -150px;
  max-width: 400px;
  background: #1b1b1b;
  color: white;
  padding: 20px;
  border-radius: 8px;
  justify-items: center;
}

.equipment-content2 h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.equipment-content2 p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.equipment-content2 .btn {
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.equipment-content2 .btn:hover {
  background-color: white;
  color: #0056b3;
}


.testcard {
      position: relative;
    left: -120px;
    padding: 100px 0 100px 0;
}




/* Responsive Equipment Section */
@media (max-width: 992px) {
  .equipment-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .equipment-content2 {
    position: static;
    max-width: 90%;
    margin-top: 20px;
    right: auto;
  }

  .equipment-content2 p {
    text-align: center;
        font-size: 12px;
  }
  .equipment-content2 h2 {
    font-size: 18px;
  }
}

/* Responsive Testimonials Section */
@media (max-width: 1580px) {
  .testcard {
    left: 0;
  }
}

@media (max-width: 1080px) {
  .testcard {
    flex-direction: column;
    align-items: center;
  }

  .testcard.col-lg-8 {
      width: 100% !Important;
      justify-self: center;
  }

  .testcard .col-md-4 {
    max-width: 90%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .testimonial-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-header img {
    margin-bottom: 10px;
  }

  .testimonial-person h4 {
    font-size: 0.95rem;
  }

  .testimonial-person p {
    font-size: 0.65rem;
  }

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








.ps {
  max-width: 100%;
}



.footer-right {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-right i {
  color: #3cbfd9;
  margin-right: 8px;
}





.mycntnr {
  max-width: 100% !important; padding:0 125px 50px !important; display: flex; flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .mycntnr {
    padding: 0 50px 50px !important;
  }
}



.main-bg {
  background-color: #0d2b31;
}