@charset "utf-8";
:root {
  --gold: #D4AF37;
  --gold-light: #E8C55B;
  --gold-dark: #B8941F;
  --accent-orange: #FFA500;
  --light-bg: #f8f9fa;
  --light-cream: #faf8f3;
  --warm-white: #ffffff;
  --dark-bg: #1a1d2e;
  --darker-bg: #0d1117;
  --warm-grey: #2d3142;
  --text-dark: #2d3142;
  --text-medium: #5a5a5a;
  --color: #000000;
  --color-white: rgba(255, 255, 255, .9);
  --text-light: rgba(255, 255, 255, 0.85);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background: var(--darker-bg);
  color: var(--text-light);
}

.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.75) 0%, rgba(26, 29, 46, 0.65) 100%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
  text-align: center;
  color: var(--color-white);
}

.video-content h1 {
  font-size: 4rem;
  color: var(--light);
}

.logo-text {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.logo-subtitle {
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* CTA BUTTONS */
.cta-button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  color: var(--darker-bg);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  border: none;
  font-size: 1.1rem;
  margin: 0 0.5rem 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  color: var(--darker-bg);
}

.cta-button-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.cta-button-outline:hover {
  background: var(--gold);
  color: var(--darker-bg);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 100;
}

.scroll-indicator i {
  color: var(--gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.navbar {
  background: rgba(13, 17, 23, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  margin: 0 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.about-section {
  padding: 100px 0;
  background: var(--light-cream);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
}
.why-section .section-title, .process-section .section-title, .contact-section .section-title {
	background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
	background-clip: text;
}
.section-subtitle {
  color: var(--text-medium);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: var(--warm-white);
  border-radius: 15px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease;

}

.stat-box:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark-bg);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.why-section {
  padding: 100px 0;
  background: var(--dark-bg);
}
.why-section .section-subtitle {
    color: var(--text-light);
}
.why-card {
  
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(45, 49, 66, 0.6) 100%);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--darker-bg);
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.why-card h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-card p {
  line-height: 1.7;
  font-size: 1.05rem;
  color: var(--text-light);
}

#superpowers {
  padding: 100px 0 0;
  background: var(--light-bg);
  position: relative;
}

#superpowers .section-subtitle {
  color: var(--text-medium);
}

.part-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 30px;
  perspective: 1000px;
  cursor: pointer;
}

.part-wrap .face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 20px;

}

#superpowers h3 {
  color: var(--darker-bg);
}

.face1 {
  background: var(--warm-white);
  border: 2px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.face2 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.part-wrap:hover .face1 {
  transform: rotateY(180deg);
}

.part-wrap:hover .face2 {
  transform: rotateY(360deg);
}

.face1 h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  padding: 0 1rem;
}

.face2 .content {
  text-align: center;
}

.face2 p {
  color: var(--darker-bg);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.process-section {
  padding: 100px 0;
  background: var(--darker-bg);
}
.process-section .section-subtitle {
    color: var(--text-light);
}
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  min-width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--darker-bg);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 0 3rem;
}

.timeline-content h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--light-cream);
}

.testimonials-section .section-subtitle {
  color: var(--text-medium);
}

.testimonial-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 3rem;
  margin: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  display: flex;
	 flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--warm-white);
  font-weight: 700;
  margin-right: 1rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.author-info h4 {
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.author-info p {
  color: var(--text-medium);
  margin: 0;
}


.tech-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.tech-section .section-subtitle {
  color: var(--text-medium);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-item {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  color: var(--text-dark);

}

.tech-item:hover {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.tech-item i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tech-item img {
  max-height: 48px;
  margin-bottom: 1rem;
}

.tech-item p {
  margin: 0;
  font-weight: 600;
}

.tech-item:last-of-type {
  display: flex;
  align-items: center;
}

.contact-section {
  padding: 100px 0;
  background: var(--darker-bg);
}

.contact-section .section-subtitle {
  color: var(--text-light);
}

.contact-info {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  height: 100%;
}

.contact-info h3, .contact-info h4 {
  color: var(--gold-dark);
}

.contact-info p:first-of-type {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;

}

.contact-icon i {
  color: var(--warm-white);
  font-size: 1.3rem;
}

.contact-details h4 {
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.contact-form h3 {
  color: var(--gold-dark);
}

.form-control, .form-select {
  background: var(--light-cream);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-dark);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.form-control:focus, .form-select:focus {
  background: var(--warm-white);
  border-color: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
  color: rgba(90, 90, 90, 0.5);
}

.form-label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* WAVES */
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

footer {
  background: var(--darker-bg);
  padding: 3rem 0 1rem;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
}

footer h5 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1;
  color: var(--text-light);
	margin-bottom:0;
}

footer a:hover {
  color: var(--gold);
}

.btn2 {
  padding: 0;
  background-color: transparent;
  color: var(--text-light);
  border-color: transparent;
}

.modal {
  --bs-modal-width: 60% !important;
    color:#000000 !important;
}

.modal-body {
  text-align: left;
}

.modal-body h1, .modal-body h2, .modal-body h3 {
  text-align: left;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 2.5rem;
  }
	.video-content h1 {
		font-size: 2.5rem;
	}
  .logo-subtitle {
    font-size: 1rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .part-wrap {
    height: 300px;
  }
	.about-content{
		padding:1rem;
	}
	.why-card {
		padding: 1rem;
		text-align: center;
	}
	.why-icon {
		margin:0 auto 1.5rem;
	}
	.testimonial-card {
		padding: 1rem;
	}
	.contact-info {
		padding: 1rem;
	}
	.contact-form {
		padding: 1rem;
	}
  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: center;
  }
  .timeline-content {
    padding: 2rem 0 0 0;
    text-align: center;
  }
  .cta-button {
    display: block;
    margin: 1rem auto;
  }
  .modal {
    --bs-modal-width: 90% !important;
  }
}