body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Kept dark for theme, good for privacy sites */
    color: #fff; /* High contrast white text */
}
a {
    text-decoration: none;
    color: #ffeb00;
    font-weight: bold;
}
.navbar {
    background-color: #c10789;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.5em;
    font-style: italic;
    color: #fff; /* Softer pink for logo, more appealing */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e91e63; /* Matching hover for engagement */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 4px;
    width: 30px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

header {
    position: relative;
    margin-top: 70px;
    text-align: center;
}


.banner-video {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    width: auto;
    margin: 0 auto;
    padding: 20px;
    background-color: #5e1849;
}

h1 {
    color: #fff700; /* Softer red for headings, better for call to action */
    text-align: center;
    margin-top: 20px;
}

h2, h3 , h4 {
    color: #fff700; /* Consistent red accents */
}

p{font-size:18px;
color:#fff;
font-weight:400;
font-family: math;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.services-table th {
    background-color: #c62828; /* Softer red for table header */
    color: white;
    padding: 10px;
    text-align: left;
}

.services-table td {
    background-color: #009bf5;
    padding: 10px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.profile-card {
    background: #06143c;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 0;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.profile-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.watermark {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #c62828; /* Matching red watermark */
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.profile-card h3 {
    color: #fff;
    margin: 10px 0 5px;
}

.stars {
    color: #ffc107; /* Brighter gold for stars, better visibility */
    margin: 0;
    font-size: 1.2em;
}

.contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #000;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.btn {
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.call { background-color: #4caf50; } /* Kept green for call */
.whatsapp { background-color: #25d366; } /* Kept */

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.faq-item h3 {
    color: #ffe000; /* Pink for FAQ questions */
    cursor: pointer;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.testimonial-card {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card h4 {
    margin: 10px 0;
    color: #fff;
}

.testimonial-card .stars {
    color: #ffc107;
}

.site-footer {
  background: #0f0b14;
  color: #c9b8d6;
  padding: 60px 0 30px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  border-top: 1px solid #3a1f5c;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3, .footer-column h4 {
  color: #e0c0ff;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.footer-column p, .footer-column ul {
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #b89ee6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  background: rgba(20, 10, 30, 0.6);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid #4a2b6e;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid #2a1a45;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #a88cd5;
  margin: 0 10px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.social-icons a {
  margin-left: 15px;
  color: #c9b8d6;
  font-weight: bold;
}

.social-icons a:hover {
  color: #e0c0ff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
    .profiles {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .btn {
        width: 100%;
    }
}
/* ... your existing CSS ... */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}