/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: 'Righteous', sans-serif;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    color: #cdd9e5;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
} */

body {
  position: relative;
  background-color: #0e0e0e;
  font-family: 'Righteous', cursive;
  color: #dfe6ec;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("img/background.jpg") center center / cover no-repeat;
  filter: grayscale(100%) blur(8px);
  z-index: -1;
  opacity: 0.5;
}

.container,
.service-area,
.footer-wrapper {
  background-color: rgba(15, 15, 25, 0.85);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 15px #00000066;
}

/* Container with a translucent dark panel and subtle glow */
.container, .service-area, .footer-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(10, 25, 45, 0.85);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow:
        0 0 8px #008aff88,
        inset 0 0 10px #003d99aa;
}

/* Logo styling */
.logo {
    max-width: 160px;
    display: block;
    margin: 0 auto 30px auto;
    filter: drop-shadow(0 0 6px #008affcc);
}

/* Headings with Righteous and neon effect */
h1, h2 {
    font-family: 'Righteous', cursive;
    color: #a0d8ff; /* brighter blue */
    text-align: center;
    /* Keep the existing shadow for glow */
    text-shadow:
        0 0 3px #006bb3,
        0 0 6px #004c80,
        0 0 9px #003353;
    margin-bottom: 25px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2rem;
}

/* Paragraph text */
p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #cbd5e1;
    text-shadow: 0 0 2px #00000088;
}

/* Service area table */
.service-area table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    color: #a0b8d1;
    box-shadow: inset 0 0 8px #003d9955;
}

.service-area td {
    padding: 12px;
    border: 1px solid #005f99aa;
    text-align: center;
    background: rgba(0, 138, 255, 0.1);
    transition: background 0.3s;
}

.service-area td:hover {
    background: rgba(0, 138, 255, 0.25);
    color: #e0f0ff;
    cursor: default;
}

/* Footer styling */
.footer-wrapper {
    margin: 60px auto 40px auto;
    padding: 30px 40px;
    background: rgba(10, 25, 45, 0.85);
    border-radius: 12px;
    box-shadow:
        0 0 12px #008affcc,
        inset 0 0 10px #003d9955;
    text-align: center;
    color: #a0c8ff;
}

.footer .phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a0d8ff;
    margin-bottom: 20px;
    text-shadow:
        0 0 5px #00b0ff,
        0 0 10px #008aff;
}

/* Social icon links */
.social-links a {
    margin: 0 15px;
    color: #a0d8ff;
    font-size: 1.8rem; /* Reduced from 2.5rem */
    transition: color 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 5px #008affaa);
    display: inline-block;
}

.social-links a:hover {
    color: #80c8ff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #80c8ffcc);
}

/* Links inside paragraphs or elsewhere */
a {
    color: #00b0ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #80c8ff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 40px 0;
}

.gallery h2 {
  grid-column: 1 / -1; /* Span the full width of the grid */
  justify-self: center; /* Center horizontally inside the grid */
  text-align: center;
  font-family: 'Righteous', cursive;
  color: #a0d8ff;
  margin-bottom: 25px;
  text-shadow:
    0 0 3px #006bb3,
    0 0 6px #004c80,
    0 0 9px #003353;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px #008aff88;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #008affcc;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .container, .service-area, .footer-wrapper {
        padding: 20px 25px;
        margin: 30px auto;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .social-links a {
        font-size: 2rem;
        margin: 0 15px;
    }

    p {
        font-size: 1rem;
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeSlideUp 1s ease forwards;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 8px #003d9955;
        background-color: rgba(0, 138, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 20px #007fff88;
        background-color: rgba(0, 138, 255, 0.25);
    }
}

.service-area table td:hover {
    animation: pulseGlow 2s infinite ease-in-out;
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: default;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 45, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 25px #008affcc;
}

.lightbox .close {
  position: fixed;
  top: 25px;
  right: 30px;
  color: #008aff;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.lightbox .close:hover {
  color: #80c8ff;
}

::selection {
  background-color: #3c8bc3; /* Highlight background color */
  color: #a0d8ff;            /* Highlighted text color */
}