/* General resets and typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
  line-height: 1.6;
  animation: fadeIn 0.5s ease-in;
}

/* Fade-in animation on load */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navigation */
nav {
  background-color: #1e1e1e;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

nav .logo {
  font-size: 1.6em;
  font-weight: bold;
  color: #ff7eb9;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

#nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

#nav-links li a:hover,
#nav-links li a.active {
  color: #ff7eb9;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 20px;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  }

  #nav-links.active {
    display: flex;
  }

  #nav-links li {
    margin: 10px 0;
  }
}

/* Header Image */
.header-image {
  width: 100%;
  height: 300px;
  background: url("../assets/TNGT-Enhanced-2560-1632.jpg") no-repeat center center;
  background-size: cover;
  margin-bottom: 60px;
  border-bottom: 4px solid #ff7eb9;
}

/* Content Blocks */
.content {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 40px 20px;
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Headings */
.heading {
  font-size: 2.5em;
  color: #ff7eb9;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

/* Sections */
section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.light-section,
.dark-section {
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.light-section {
  background-color: #1e1e1e;
}

.dark-section {
  background-color: #181818;
}

section:hover {
  transform: translateY(-3px);
}

section h2 {
  color: #ff7eb9;
  margin-bottom: 20px;
  font-size: 2em;
}

section p {
  color: #e0e0e0;
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: #222;
  color: #f0f0f0;
  padding: 60px 30px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.4em;
  color: #ff7eb9;
  margin-bottom: 30px;
}

/* Service Category */
.service-category {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.service-category:hover {
  transform: translateY(-4px);
}

.service-category h3 {
  font-size: 1.6rem;
  color: #6082b6;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

/* Services List */
.services-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.services-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  transition: background-color 0.2s ease;
}

.services-list li i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ff7eb9;
  flex-shrink: 0;
}

.services-list li:hover {
  background-color: #333;
  padding: 8px;
  border-radius: 8px;
}

/* Contact Section */
.contact {
  margin-top: 40px;
  text-align: center;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #3a579a;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact a:hover {
  background-color: #2d4373;
  transform: scale(1.1);
}

.contact i {
  font-size: 24px;
}

/* Responsive two-column layout for services */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
  padding-left: 0;
}

@media (min-width: 600px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
}

.services-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 15px;
  line-height: 1.4;
  padding: 0 10px;
}

.services-list li i {
  color: #ff7eb9;
  font-size: 1.2rem;
  margin-right: 12px;
  min-width: 24px;
  text-align: center;
}

.services-list li span {
  display: inline-block;
  width: 100%;
}