:root {
  /* Backgrounds */
  --bg: #0b1208; /* dark green-black */
  --bg-secondary: #0f1a0f;

  /* Text */
  --text: #f5f5f5;
  --muted-text: rgba(255, 255, 255, 0.75);

  /* Glass Cards */
  --card: rgba(255, 215, 0, 0.08);

  /* GOLD + GREEN ACCENTS */
  --gold: #d4af37; /* premium gold */
  --gold-light: #f5d76e;

  --green: #2ecc71; /* emerald green */
  --green-dark: #1e9e57;

  /* Gradients */
  --accent-gradient: linear-gradient(135deg, var(--gold), var(--green));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, var(--bg), var(--bg-secondary));
  color: var(--text);
}

/* PARTICLES */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* -1 → 0 */
  pointer-events: none;
}

/* NAV */
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 6% 10px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-name {
  padding-bottom: -3px;
}
/* Logo */
.nav-logo {
  line-height: 3px;
  flex-direction: column;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
}
.nav-logo-content {
  margin-top: 16px;
}
.tagline {
  font-size: 0.84rem;
 display: inline-block;
 padding-top: 9px;
  border-top: 2px solid var(--gold);

}
.nav-logo img {
  height: 55px;
  width: 115%;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1.2rem;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: 0.4s;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 6%;
    background: var(--bg-secondary);
    flex-direction: column;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: scale(1);
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  /* align-items: center;
  justify-content: center; */
  padding: 0px 6% 40px 6%;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.hero-text,
.hero-image {
  flex: 1 1 140px; /* grow and shrink, min width 500px */
}

.hero-text {
  max-width: 80%;
}

.hero-text h1 {
  font-size: 3rem;
  
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
  transition: transform 0.4s;
}

/* HERO BUTTON */
.btn-hero {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  background: var(--accent-gradient);
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-hero:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.45);
  background: linear-gradient(270deg, var(--green), var(--gold));
}

/* H1 individual letters (inline-block) */
.animated-title span {
  display: inline-block;
  cursor: default;
}


/* Section */
.cards-section {
  padding: 80px 6%;
  background: radial-gradient(circle at top, var(--bg), var(--bg-secondary));
  position: relative;
  z-index: 1;
}

/* Section Headings */
.cards-heading {
  font-size: 2rem;
  margin: 60px 0 25px;
  color: var(--gold);
  border-left: 5px solid var(--gold);
  padding-left: 14px;
  letter-spacing: 0.5px;
}

/* Container */
.cards {
  display: block;
}

/* Each Row */
.card {
  margin-bottom: 20px;
}

/* Row Link */
.card-link {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.35s ease;
}

/* Hover (premium row highlight) */
.card-link:hover {
  background: rgba(212, 175, 55, 0.08);
  border-left: 6px solid var(--gold);
  transform: translateX(6px);
}

/* Top small text */
.card-top-text {
  font-size: 13px;
  color: var(--muted-text);
  margin-bottom: 6px;
  font-weight: 400;
}

/* Second line */
.card-top-text-2 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Main title */
.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-lang-switch {
  text-align: right;
}

.service-lang-switch button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-lang-switch button:hover {
  background: var(--accent-gradient);
  color: #000;
}

















/* Contact Section */
.contact-section {
  padding: 100px 6%;
  background: radial-gradient(circle at top, var(--bg), var(--bg-secondary));
  color: #fff;
  text-align: center;
  position: relative;
}

/* Heading */
.contact-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* Wrapper Flex */
.contact-wrapper {
  display: flex;
  gap: 160px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT: Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  padding: 45px 35px;
  border-radius: 25px;
  width: 400px;
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(212, 175, 55, 0.25);
}

/* Floating labels */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--gold);
}

/* Button */
.contact-btn {
  width: 100%;
  padding: 15px 0;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: var(--accent-gradient);
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
  background: linear-gradient(90deg, var(--green), var(--gold));
}

/* RIGHT: Contact Info + Socials */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 3rem;
  text-align: left;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.info-item:hover i {
  transform: scale(1.2);
}

/* Social Icons */
.contact-socials {
  display: flex;
  margin-top: 2rem;
  gap: 15px;
  justify-content: flex-start;
}

.social-link {
  font-size: 1.6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--gold);
  transform: translateY(-3px) scale(1.1);
  background: rgba(212, 175, 55, 0.12);
}

/* Responsive */
@media (max-width: 950px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .contact-form {
    width: 90%;
  }

  .contact-info-wrapper {
    align-items: center;
    text-align: center;
  }

  .contact-socials {
    justify-content: center;
  }
}

footer p {
  text-align: center;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 1em;
}
