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: #de092d;font-weight: bold;
}
.navbar {
    background-color: #000;
    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: #e91e63; /* 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
}

h1 {
    color: #c62828; /* Softer red for headings, better for call to action */
    text-align: center;
    margin-top: 20px;
}

h2, h3 , h4 {
    color: #c62828; /* Consistent red accents */
}

.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: #000;
    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: #000;
    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: #e91e63; /* 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;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px;
    border-top: 1px solid #333;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.locations-grid a {
    color: #ffc107; /* Gold for links, better clickability */
    text-decoration: none;
    font-weight: bold;
    background-color: #111;
    padding: 10px;
    border-radius: 4px;
    display: block;
}

.locations-grid a:hover {
    background-color: #222;
}

@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);
    }
}

.nowcalling {
			display: none;
}
@media only screen and (max-width: 768px) {
  .nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100% !important;
    z-index: 9999 !important;	
  }
.lcol {
  background-color: #ff007c;
}
.rcol {
  background-color: #00ff36;
}
.lcol a, .rcol a {
  display: block;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.lcol, .rcol {
  float: left;
  width: 50%;
}
}