body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f7eded;
}

.navbar {
    background-color: #fc0505;
    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.7em;
    font-style: italic;
    color: #f2f3ef;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 12px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff69b4;
}

.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: #1a1a1a;
}

h1 {
    color: #fc0505;
    text-align: center;
	font-size: 6em;
    margin-top: 20px; /* Space after video */
}

h2 {
    color: #fc0505;
}


h3 {
    color: #fc0505;
}
h4 {
    color: #fc0505;
}
h5 {
    color: #fc0505;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.services-table th, .services-table td {
    border: 1px solid #333;
    padding: 8px;
    text-align: center;
}

.services-table th {
    background-color: #222;
}

.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: #d32f2f;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.profile-card h3 {
    color: #fff;
    margin: 10px 0 5px;
}

.stars {
    color: #ffd700;
    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; /* Match theme */
    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; }
.whatsapp { background-color: #25d366; }


footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px; /* Space for fixed buttons */
    border-top: 1px solid #333;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
    margin: 0 5px;
}

@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: 20px 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);
    }

    .profiles {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: row; /* Keep row if space allows, or column if needed */
        gap: 5px;
        padding: 5px;
    }

    .btn {
        padding: 8px 15px; /* Smaller on mobile */
    }

    h1 {
        font-size: 2.8em;
    }
}
/* ... previous styles ... */

.models-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.models-table th {
    background-color: #d32f2f; /* Red header */
    color: white;
    padding: 10px;
    text-align: left;
}

.models-table td {
    background-color: #000;
    padding: 10px;
    border-bottom: 1px solid #333; /* Subtle row separator */
    text-align: left;
}
/* ... previous styles ... */

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.faq-item h3 {
    color: #ff0808;
    cursor: pointer; /* For potential accordion */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.testimonial-card {
    background: #f70606;
    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: #ffd700;
}
/* ... previous styles ... */

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px; /* Space for buttons */
    border-top: 1px solid #333;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.locations-grid a {
    color: #ffeb3b; /* Goldish */
    text-decoration: none;
    font-weight: bold;
    background-color: #111; /* Darker bg for each cell */
    padding: 10px;
    border-radius: 4px;
    display: block;
}

.locations-grid a:hover {
    background-color: #222;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}

.wrapper-div {
            margin: 40px 0;
            padding: 20px;
            background: #fc0505;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .heading {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fa0909
        }
        
        .hd2 {
            font-size: 26px;
            font-weight: bold;
            color: #f6efef;
        }
        
        .viemore {
            background: #d32f2f;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
        }

        .carowrap {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 10px 0;
            scroll-behavior: smooth;
        }
        
        .carowrap::-webkit-scrollbar {
            height: 8px;
        }
        
        .carowrap::-webkit-scrollbar-thumb {
            background: #d32f2f;
            border-radius: 10px;
        }

        .carocol {
            flex: 0 0 230px;
        }

        .anim-block {
            position: relative;
            width: 211px;
            height: 310px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .anim-block:hover {
            transform: scale(1.05);
        }

        .escprtpic img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .topanim, .botanim {
            position: absolute;
            left: 0;
            width: 100%;
            transition: all 0.4s ease;
        }
        
        .topanim {
            top: -60px;
            text-align: center;
        }
        
        .botanim {
            bottom: -90px;
            background: #fc0505
            color: white;
            padding: 10px;
        }

        .anim-block:hover .topanim { top: 15px; }
        .anim-block:hover .botanim { bottom: 0; }

        .erctbtn {
            background: #fc0505;
            color: white;
            padding: 12px;
            display: block;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
        }

        .erctdet {
            text-align: center;
        }
        
        .hd3 {
            font-size: 18px;
            margin: 8px 0 5px;
        }
		
		
		
body {
    font-family: 'Arial', sans-serif;     
    font-size: 16px;                      
    line-height: 1.6;                     
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
}



body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #fcfbf9;
    text-align: justify;
}


}

  .scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #4b5563;
  }
  .scroll-container::-webkit-scrollbar {
    width: 6px;
  }
  .scroll-container::-webkit-scrollbar-thumb {
    background: #ec4899;
    border-radius: 20px;
  }
  .scroll-container::-webkit-scrollbar-track {
    background: rgb(255, 0, 0);
  }
  
  
.popular-categories {
    padding: 60px 15px;
  }

  .categories-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .category-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    justify-content: center;
  }

  .category-item {
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
  }

  .category-item:hover {
    transform: translateY(-8px);
  }

  .icon-circle {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
    background: #1f0033;
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    transition: all 0.4s;
  }

  .category-item:hover .icon-circle {
    border-color: #ff00ff;
    box-shadow: 0 12px 25px rgba(255, 0, 255, 0.3);
    transform: scale(1.08);
  }

  .icon-circle img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 50%;
  }

  .category-name {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 8px;
    color: #f00;
  }

  /* Responsive */
  @media (max-width: 576px) {
    .icon-circle {
      width: 110px;
      height: 110px;
    }
    .category-name {
      font-size: 0.95rem;
    }
  }
  
  
  <style>
    a { color: #f4d902 !important; }
    a:hover { color: #fcca05 !important; }
    a:visited { color: #ff3366 !important; }
    
    .navbar a { color: #fff !important; }
    .navbar a:hover { color: #ff3366 !important; }
</style>




