/* Reset */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #111;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0,0,0,0.85);
    position: fixed;
    width: 100%;
    z-index: 999;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    margin-right: 15px;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.6));
}

.company-info h1 {
    font-size: 22px;
    color: #f4b400;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.company-info .tagline {
    font-size: 14px;
    color: #ccc;
    margin-top: 3px;
}

/* Nav */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Mobile default: hidden */
.nav .nav-links { display: none; flex-direction: column; gap: 12px; }

/* When toggled */
.nav .nav-links.show { display: flex; }

/* Desktop */
@media (min-width: 768px) {
  .menu-icon { display: none; }
  .nav .nav-links { display: flex; flex-direction: row; gap: 16px; }
}


.nav-links li a:hover {
    color: #f4b400;
}

.menu-icon {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.new-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(17,17,17,0.7), rgba(34,34,34,0.6));
    z-index: 1;
}

.new-hero-text {
    position: relative;
    z-index: 2;
    background: rgba(17,17,17,0.8);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    text-align: center;
    animation: fadeInUp 1.5s ease;
}

.new-hero-text h1 {
    font-size: 54px;
    color: #D4AF37; /* Royal Gold */
    text-shadow: 0 0 10px rgba(212,175,55,0.6);
    margin-bottom: 20px;
}

.new-hero-text p {
    font-size: 22px;
    color: #f1f1f1;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
/* tool hero */
.hero-section {
  background: linear-gradient(to right, #1a1a1a, #0d0d0d);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  background-image: url('/images/golden-bg-texture.jpg'); /* use your golden texture image */
  background-size: cover;
  background-blend-mode: overlay;
  opacity: 0.1;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f1c40f;
}

.hero-content .highlight {
  color: #ffc107;
}

.hero-content p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #ffc107;
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #ffdb4d;
  color: #000;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
    padding: 80px 20px;
    position: relative;
    text-align: center;
}

.section-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #f4b400;
}

.content p, .content ul li {
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
    text-align: left;
}

/* Spacer to avoid continuous images */
.spacer {
    height: 50px;
    background: #111;
}

/* Packages */
.package-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.package {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.package-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.package {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package:hover {
  background: rgba(255, 215, 0, 0.15); /* light golden glow */
  transform: translateY(-5px);
}

.package-boxes a.package {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background: rgba(7, 7, 7, 0.8);
  transition: 0.3s;
}

.package-boxes a.package:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}



/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery .horizontal {
    width: 48%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery .vertical {
    width: 30%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Contact */
.icons {
    display: flex;
    gap: 12px;
    justify-content: flex-start; /* or center depending on your design */
    align-items: center;
    margin-top: 10px;
}

.icons img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    background: #f1f1f1;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.icons img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}




.centered-email {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.centered-email a {
    color: #f4b400;
    text-decoration: none;
}

.meeting {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #ccc;
}




/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.85);
    color: #999;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1.5s ease;
}

/* Responsive */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .gallery .horizontal, .gallery .vertical {
        width: 80%;
    }

    .package-boxes {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Tools Page Styling --- */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
}

.nav {
  background: #0a2e50;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.note {
  font-size: 0.9rem;
  color: #ffcc00;
}

.tools-container {
  padding: 2rem;
  display: grid;
  gap: 2rem;
}

.tool-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tool-card h2 {
  color: #0a2e50;
}

input, select, button {
  margin-top: 0.5rem;
  display: block;
  width: 100%;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

button {
  background-color: #0a2e50;
  color: white;
  cursor: pointer;
}

.output {
  font-weight: bold;
  color: #0a2e50;
}





