body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*Canvas CSS start*/
#renderSurface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -10;
  pointer-events: auto; 
}
/*Canvas CSS end*/

.bg-custom-dark {
  background-color: #000000;
}
.text-custom-light {
  color: #f9fafb;
}
.border-custom-light {
  border-color: #d1d5db;
}
.gradient-text {
  background: linear-gradient(to right, #6b7280, #9ca3af);
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0.25;
}

/*Nav buttons hover effect start*/
.roller-effect {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.roller-effect a {
  color: #f9fafb;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.roller-effect a::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: #f9fafb;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.roller-effect:hover a {
  transform: translateY(-100%);
}
.roller-effect:hover a::before {
  transform: translateY(-100%);
}
/*Nav buttons hover effect start*/



 /*Services Slider Section start */
.slider-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5vw;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.row {
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
}


@keyframes slideRightOnce {
  from { transform: translateX(0); }
  to { transform: translateX(25px); }
}

@keyframes slideLeftOnce {
  from { transform: translateX(0); }
  to { transform: translateX(-25px); }
}

.animate-once-right {
  animation: slideRightOnce 1s ease-out 0.3s forwards;
}

.animate-once-left {
  animation: slideLeftOnce 1s ease-out 0.3s forwards;
}

.slide {
  flex: none;
  width: clamp(220px, 36vw, 600px);
  aspect-ratio: 6/5;
  margin: 0 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide a {
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  overflow: hidden;
  transition: transform 0.3s ease;
}

.slide a:hover {
  transform: scale(1.05);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-section h2 {
  padding-top: 4vw;
  font-size: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 900px) {
  .slide {
    width: clamp(160px, 60vw, 400px);
  }
  .slider-section {
    gap: 9vw;
  }
}

@media (max-width: 600px) {
  .slide {
    width: clamp(120px, 80vw, 250px);
  }
  .slider-section {
    gap: 12vw;
  }
  .slider-section h2 {
    padding-top: 8vw;
    font-size: clamp(1.1rem, 6vw, 2rem);
  }
}
 /*Services Slider Section end */



.service-card {
  background-color: #1d2939;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transition-duration: 500ms;
  transition-property: transform, box-shadow;
  overflow: hidden;
  position: relative;
}

.service-card:hover {
  transform: translateY(-1rem) scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #f9fafb;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.service-card p {
  color: #d1d5db;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card a {
  color: #60a5fa;
  transition-colors: 300ms;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.service-card a:hover {
  color: #3b82f6;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(167, 139, 250, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover h3 {
  color: #fff;
}

.service-card:hover p {
  color: #e5e7eb;
}



/*Contact Us Section*/
.contact-section {
  background: #000000;
  color: #fff;
  padding: 64px 0 0 0;
  font-family: 'Inter', sans-serif;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: stretch;
}
.contact-info {
  flex: 1 1 400px;
  min-width: 320px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.contact-description p {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #232323;
  color: #fff;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  width: 100%;
  justify-content: center;
}
.contact-action-btn:hover {
  background: #333;
}
.action-icon {
  display: flex;
  align-items: center;
}
.contact-info-box {
  background: #121212;
  color: #fff;
  border-radius: 12px;
  padding: 18px 28px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.info-label {
  font-size: 1rem;
  color: #bdbdbd;
  font-weight: 300;
  margin-bottom: 4px;
}
.info-value {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 300;
  word-break: break-word;
}
.info-value a {
  color: #fff;
  text-decoration: underline;
}
.info-value a:hover {
  color: #c6c6c6;
}
.contact-image-wrapper {
  flex: 1 1 400px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-image {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }
  .contact-image-wrapper {
    justify-content: flex-start;
  }
}


 /*CONTACT FORM SECTION */
.contact-form-section {
  background: #000000;
  color: #fff;
  padding: 64px 0;
}
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 1rem;
  color: #bdbdbd;
}
.form-input {
  background: #232323;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.2s;
}
.form-input:focus {
  box-shadow: 0 0 0 2px #5b5b5b;
}
.form-submit-btn {
  background: #44494a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit-btn:hover {
  background: #00d1a7;
}

 /*FAQ SECTION */
.faq-section {
  background: #000000;
  color: #fff;
  padding: 64px 0;
}
.faq-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #232323;
  border-radius: 12px;
  padding: 18px 28px;
}
.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8px;
}
.faq-answer {
  color: #bdbdbd;
  font-size: 1rem;
  margin-left: 2px;
}

 /*FOOTER SECTION */
.site-footer {
  background: #080808;
  color: #fff;
  padding: 48px 0 24px 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.footer-contact,
.footer-pages,
.footer-social {
  flex: 1 1 200px;
}
.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-contact-links,
.footer-nav-links,
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-link:hover {
  color: #747474;
}
.footer-address {
  color: #bdbdbd;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin-top: 32px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
@media (max-width: 900px) {
  .contact-content,
  .footer-container,
  .footer-bottom {
    flex-direction: column;
    gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
    align-items: flex-start;
  }
  .contact-image-wrapper {
    justify-content: flex-start;
  }
}

