body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}


.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #1e1e1e;
  flex-wrap: wrap;
}

/* Navigation links (left side) */
.nav-left {
  display: flex;
  gap: 20px;
}
.nav-left a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.nav-left a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #00f0ff, #ff00f0);
  transition: width 0.3s ease-in-out;
}
.nav-left a:hover::after {
  width: 100%;
}

/* Brand name (center) */
.brand-center {
  text-align: center;
  flex: 1;
}
.brand-center h1 {
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to right, #00f0ff, #ff00f0);
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
}
.tagline {
  color: #ccc;
  font-size: 14px;
  margin-top: 4px;
}

/* Logo (right side) */
.nav-right img {
  height: 100px;
  width: auto;
}

/* Responsive mobile view */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: center;
  }

  .nav-left {
    margin-bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-right {
    margin-top: 10px;
  }

  .brand-center {
    margin: 10px 0;
  }
}



.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1, h2 {
  color: #ffffff;
}

.service {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
}

.service button, form button {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service button:hover, form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgb(217, 0, 255);
}
form {
  max-width: 600px;
  margin: 0 auto;                    
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: rgb(0, 0, 0);
}

form label {
  font-weight: bold;
  display: block;
  margin: 15px 0 5px;
  text-align: left;
}

form input, form textarea, form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;              
}

form input::placeholder, form textarea::placeholder {
  color: rgba(255,255,255,0.6);       
}

form input:focus, form textarea:focus, form select:focus {
  outline: none;
  background-color: rgba(0,0,0,0.8);  
  border-color: rgba(255,255,255,0.5);
}

form button {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  margin-top: 10px;
}

form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
footer {
  background: rgba(0, 0, 0, 0.7);
  padding: 50px 20px;
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
}

.footer-about {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.footer-about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 10px 0;
  font-size: 1rem;
}

.footer-contact a {
  color: #00c6ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}
#testimonials {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: rgb(12, 11, 11);
  text-align: center;
}

#testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial {
  margin-bottom: 30px;
}

.testimonial p {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial h4 {
  font-size: 1rem;
  text-align: right;
  color: #0e0d0d;
}
html {
  scroll-behavior: smooth;
}
.contact-popup {
  display: none; 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
  z-index: 9999;
  text-align: center;
}

.contact-popup p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.contact-popup a {
  color: #00c6ff;
  text-decoration: none;
}

.contact-popup a:hover {
  text-decoration: underline;
}

.contact-popup button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  background: #00c6ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-popup button:hover {
  background: #0072ff;
}
.admin-message {
  background: #ffffff;
  color: #000000;
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin: 60px 0;
  
}

.admin-message h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0072ff;
  font-family: 'Times New Roman', Times, serif;
}

.admin-message p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .header-center {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .tagline {
    font-size: 14px;
  }

  .nav-left a {
    display: block;
    margin: 5px 0;
  }

  .nav-right img {
    width: 40px;
    height: auto;
  }

  header {
    padding: 10px;
  }
}

.required{
  color:red;
}
.feedback-section {
  padding: 40px 20px;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
}

.feedback-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.feedback-section p {
  font-size: 1em;
  margin-bottom: 30px;
  color: #ddd;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1em;
}

.feedback-form button {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.feedback-form button:hover {
  background-color: #0196a3;
}
.notification-banner {
  background: linear-gradient(90deg, #ff4d4d, #ff9900);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  animation: fadeIn 0.6s ease-out;
}

#notifText {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  flex: 1;
}

.notif-close {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-left: 15px;
  transition: color 0.2s ease;
}
.notif-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.category-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px;
  scroll-behavior: smooth;
}

.category-container {
  display: flex;
  gap: 20px;
  min-width: max-content;
}

.category-card {
  flex: 0 0 auto;
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-weight: bold;
  text-align: center;
  min-width: 200px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.category-card:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00f0ff, #ff00f0);
  color: white;
  cursor: pointer;
}

/* Optional: Hide Scrollbar for Chrome/Safari */
.category-wrapper::-webkit-scrollbar {
  height: 10px;                /* Scrollbar height */
}

.category-wrapper::-webkit-scrollbar-track {
  background: #111;            /* Background behind scrollbar */
  border-radius: 20px;
}

.category-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #00c6ff, #0072ff); /* Gradient color */
  border-radius: 10px;
  box-shadow: 0 0 5px #0072ff;
  transition: background 0.3s ease;
}

.category-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #ff00f0, #00f0ff); /* On hover */
}
.category-link {
  text-decoration: none;
  display: inline-block;
  color: #000;
}

.template-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.template-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.template-scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px;
  scroll-behavior: smooth;
}

.template-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: left;
}

.template-card:hover {
  transform: translateY(-5px);
}

.template-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.template-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
}

.template-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.preview-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.preview-btn:hover {
  background: #0059b3;
}

.template-section {
  padding: 40px 20px;
  background-color: #f4f4f4;
}
.template-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff4f8b;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.template-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-behavior: smooth;
}
.template-slider::-webkit-scrollbar {
  display: none;
}

.template-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgb(255, 0, 247);
}
.template-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.template-card h3 {
  text-align: center;
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #333;
}
.template-card p {
  text-align: center;
  font-size: 0.9rem;
  padding: 0 10px;
  color: #666;
}
.preview-btn {
  display: block;
  margin: 15px auto 20px;
  padding: 8px 20px;
  background: linear-gradient(90deg, #a100ff, #ff4f8b);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s ease;
}
.preview-btn:hover {
  background: linear-gradient(90deg, #ff4f8b, #a100ff);
  transform: scale(1.05);
}

/* Scroll Arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #ff4f8b;
  border: 2px solid #ff4f8b;
  font-size: 24px;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}
.scroll-btn:hover {
  background: #ff4f8b;
  color: #fff;
}
.scroll-btn.left {
  left: -15px;
}
.scroll-btn.right {
  right: -15px;
}

.admin {
  color: #00aaff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.admin:hover {
  color: #ff00fb;
  text-shadow: 0 0 5px #ff5500, 0 0 10px #ff5500, 0 0 15px #ff5500;
  text-decoration: underline;
}

