@charset "UTF-8";
/* ============================================
   COLOR PALETTE - Change colors here
   ============================================ */
:root {
  --dark-slate: #1A1F2B; /* Primary background */
  --accent-blue: #00A8FF; /* Accent color */
  --accent-teal: #2EE6D6;
  --accent-violet: #7F6BFF;
  --accent-amber: #FFB347;
  --text-light: #F5F7FA; /* Light text */
  --text-muted: #B8C5D0; /* Muted text */
  --card-bg: #222B3A; /* Card background */
  --border-color: #35404F; /* Border color */
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: var(--text-light);
  background: radial-gradient(circle at top, rgba(46, 168, 255, 0.25), transparent 55%) fixed, linear-gradient(135deg, #0F111A 0%, var(--dark-slate) 45%, #111827 100%);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 5rem;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 2rem;
  z-index: 1100;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 25, 40, 0.85);
}

.brand-icon {
  width: 42px;
  height: 42px;
}

.brand-wordmark {
  height: 24px;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  gap: 0.5rem;
  background: rgba(46, 59, 68, 0.9);
  padding: 0.5rem;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(0, 168, 255, 0.1);
  border-color: var(--accent-blue);
}

.lang-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
}

/* ============================================
   LANGUAGE CONTENT
   ============================================ */
.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

/* ============================================
   HEADER / HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.2), rgba(17, 24, 39, 0.8));
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero.full-screen {
  width: 100%;
  max-width: 100%;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.hero-logo {
  width: 100%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 30px rgba(0, 168, 255, 0.35));
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  letter-spacing: -1px;
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero .sub-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #0099E6;
}

#showcase {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: -4rem;
}

#showcase .lang-content {
  text-align: center;
}

.showcase-header {
  margin-bottom: 2rem;
}

.showcase-lede {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.carousel {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34, 43, 58, 0.9), rgba(26, 31, 43, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 25px 65px rgba(2, 8, 20, 0.65);
}

.carousel-track {
  position: relative;
  min-height: 420px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateX(40px);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.carousel-slide img {
  width: 55%;
  height: 100%;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
}

.carousel-info {
  flex: 1;
  text-align: left;
}

.asset-label {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.carousel-name {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.carousel-caption {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 15, 28, 0.9);
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.carousel-btn.prev {
  left: 1.5rem;
}

.carousel-btn.next {
  right: 1.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-dot.active {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  transform: scale(1.2);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--text-light);
  font-weight: 600;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--card-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 2px dashed var(--border-color);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: background-color 0.3s ease;
  border: 1px solid var(--border-color);
  border-top: 3px solid transparent;
}

.service-card:hover {
  background: #445561;
  border-color: var(--accent-blue);
}

.services-grid .service-card:nth-child(1) {
  border-top-color: var(--accent-blue);
}

.services-grid .service-card:nth-child(2) {
  border-top-color: var(--accent-teal);
}

.services-grid .service-card:nth-child(3) {
  border-top-color: var(--accent-violet);
}

.services-grid .service-card:nth-child(4) {
  border-top-color: var(--accent-amber);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--accent-blue);
}

.service-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}

.project-card:hover {
  border-color: var(--accent-blue);
}

.project-image {
  width: 100%;
  height: 200px;
  background: var(--dark-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.project-content {
  padding: 2rem;
}

.project-card h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.project-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-card h3 a:hover {
  color: var(--text-light);
}

.project-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: var(--text-light);
}

.project-link::after {
  content: " →";
  margin-left: 0.5rem;
}

/* ============================================
   TESTIMONIALS / IMPACT SECTION
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.testimonial-metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-info p {
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--text-light);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-icon:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--dark-slate);
  color: var(--text-light);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: var(--accent-blue);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  font-family: inherit;
}

.submit-btn:hover {
  background-color: #0099E6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1E2A33;
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  body {
    padding-top: 4.5rem;
  }
  .site-header {
    left: 1rem;
  }
  .lang-toggle {
    top: 1rem;
    right: 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .tagline {
    font-size: 1.2rem;
  }
  .hero .sub-text {
    font-size: 1rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .carousel {
    padding: 2rem 1.5rem;
  }
  .carousel-slide {
    flex-direction: column;
  }
  .carousel-slide img {
    width: 100%;
  }
  .carousel-info {
    text-align: center;
  }
  .carousel-btn {
    display: none;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }
  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .tagline {
    font-size: 1rem;
  }
  section {
    padding: 3rem 1rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .asset-label {
    font-size: 0.75rem;
  }
  .carousel-caption {
    font-size: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */