body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color:white;
    color: #d4af37;
}
 /* Hero section styling */
.hero {
    position: relative;
    background: url('3.jpg') no-repeat center center/cover; /* Replace 'bg.jpg' with your image */
    height: 500px; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}

/* Overlay for text */
.overlay {
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    color: white;
    padding: 50px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 20px;
    background-color:#295f98fd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero button:hover {
    background-color: #FFC300;
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #FFC300; 
  padding: 30px 0; /* Add some padding for better spacing */ 
}

.stat {
  text-align: center;
  margin: 35px; /* Add some spacing between stats */
}

.stat h2 {
  font-size: 4rem; /* Adjust font size as needed */
  font-weight: bold;
  margin-bottom: 5px;
  color: #211e1ed5;
}

.stat p {
  font-size: 1.2rem;
  color: #333; /* Darker text color for better readability */
  margin-left: 10px;
}
/* Header Styles */
.header {
  background: linear-gradient(to right, #ffe259, #ffa751);
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.logo img {
  width: 70px; /* Adjust logo image width as needed */
  margin-left: 0px;
}

/* Navigation Styles */
.navigation {
  display: flex;
  align-items: center;
}

.navigation li {
  position: relative; /* Required for dropdown */
  display: inline-block;
  margin-right: 20px;
}

.navigation a {
  text-decoration: none;
  color: #295f98fd;
  font-weight: 520;
}

.navigation a:hover {
  color: #000;
}

.navigation ul li {
  list-style: none;
  display: inline-block;
  margin: 0 15px;
  position: relative;
}

.navigation a {
  text-decoration: none;
  color: #333; 
  padding: 10px 15px; 
}

/* Search Bar Styles */
.search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-bar input {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-bar button {
  padding: 5px 10px;
  border: none;
  background-color:white;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}
/*
   servies
*/
.categories {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #fff, #eaeaea);
}

.categories h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 5px solid #ff9000; /* Accent color */
}

.category-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.category-item:hover .category-overlay {
  transform: translateY(0);
}

.category-overlay h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff9000;
}

.category-overlay p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

 /* Testimonials Section */
.testimonials {
  background-color: #295f98fd; /* Same background color as previous sections */
  color: #fff;
  padding: 60px 0;
  text-align: center;
  overflow: hidden; /* Hide overflowing content */
}

.testimonials .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffc400; /* Accent color */
}

.testimonial-carousel {
  display: flex;
  gap: 20px; /* Space between testimonials */
  animation: scroll-testimonials 15s linear infinite; /* Continuous scrolling */
  width: 100%;
}

.testimonial {
  background-color: rgba(0, 0, 0, 0.1); /* Subtle background color */
  border-radius: 8px;
  padding: 20px;
  flex: 0 0 300px; /* Fixed width for each testimonial */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  margin: 0;
}

.testimonial .client-name {
  font-weight: bold;
  font-style: italic;
  margin-top: 15px;
  color: #ffc400; /* Accent color for client names */
}

/* Infinite scrolling animation */
@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Duplicate content for seamless scrolling */
.testimonial-carousel::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}
 /*services.html*/
.services-page {
  font-family: 'Poppins', sans-serif; /* Modern font for a sleek look */
  padding: 40px;
  background-color: #f9f9f9;
}

.service-section {
  margin-bottom: 60px;
}

.service-section h2 {
  text-align: center;
  font-size: 28px;
  color: #444;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 20px;
  justify-items: center;
  padding: 0 20px;
}

.service-gallery img {
  width: 180px; /* Larger size */
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 4px solid #fff;
  background-color: #eee;
}

.service-gallery img:hover {
  transform: scale(1.2); /* Zoom effect */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  border-color: #ff6f61; /* Highlight border on hover */
}

.service-section:nth-child(even) .service-gallery img {
  border-radius: 50%; /* Circular images for alternating sections */
}

.service-gallery::after {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 20px;
  background: linear-gradient(to right, #ff6f61, #ff9966);
  border-radius: 10px;
}
/* Calligraphy Quote Section Styling */
.calligraphy-quote-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f5f5f5, #eaeaea);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calligraphy-quote-section::before,
.calligraphy-quote-section::after {
  content: '';
  position: absolute;
  top: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.calligraphy-quote-section::before {
  left: -50px;
}

.calligraphy-quote-section::after {
  right: -50px;
}

.quote-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #295f98fd;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 2px solid #dcdcdc;
  font-family: 'Pinyon Script', cursive;
}

.quote {
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
  color: whitesmoke;
  margin-bottom: 20px;
}

.author {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: right;
  font-family: 'Poppins', sans-serif;
}

.calligraphy-quote-section:hover .quote-container {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}
/* About Page Section */
.about-page-section {
  background-color: #fff;
  padding: 40px 20px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
}

.about-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-header h1 {
  font-size: 2.5rem;
  color: #8B4513; /* Golden Brown */
  margin-bottom: 10px;
}

.about-header p {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
}

/* Mission and Vision Section */
.mission-vision-section,
.values-section,
.founder-section,
.contact-section,
.social-media-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #8B4513;
  border-radius: 8px;
}

.mission-vision-section h2,
.values-section h2,
.founder-section h2,
.contact-section h2,
.social-media-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 2px solid #8B4513;
  padding-bottom: 5px;
}

/* Values Section */
.values-section ul {
  list-style: disc;
  padding-left: 40px;
  margin: 0;
}

.values-section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.values-section ul li strong {
  color: #8B4513;
}

/* Founder Section */
.founder-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* Contact Section */
.contact-section p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-section strong {
  color: #8B4513;
}

/* Social Media Section */
.social-media-section .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-media-section .social-icons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-section .social-icons a img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/*contact.html*/
.contact-section {
  text-align: center;
  padding: 60px 20px;
  background: #295f98fd;
  color: white;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: bold;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #f1c40f;
}

.contact-item p {
  font-size: 14px;
  margin: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.3);
}

textarea {
  resize: none;
}

input[type="submit"] {
  background: #f1c40f;
  color: black;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 12px;
}

input[type="submit"]:hover {
  background: #e1b40f;
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: whitesmoke;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 45px;
  height: 45px;
}
/* Minimal Footer Styling */
.minimal-footer {
  background: linear-gradient(to right, #d9b70c, #ffa751);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-socials {
  margin: 15px 0;
}

.footer-socials a {
  color: #fff;
  font-size: 18px;
  margin: 0 10px;
  transition: transform 0.3s, color 0.3s;
}

.footer-socials a:hover {
  transform: scale(1.2);
  color: #f39c12;
}

.footer-text {
  font-size: 12px;
  color: #dcdcdc;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Add icons */
.fab {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .container {
      max-width: 90%;
  }
  
  .hero {
      height: 400px;
      padding: 20px;
  }
  
  .hero h1 {
      font-size: 28px;
  }
  
  .stat h2 {
      font-size: 3rem;
  }
  
  .stat p {
      font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
      height: auto;
      flex-direction: column;
      text-align: center;
  }
  
  .overlay {
      padding: 30px;
  }
  
  .hero h1 {
      font-size: 24px;
  }
  
  .hero button {
      padding: 8px 15px;
  }
  
  .navigation {
      flex-direction: column;
      text-align: center;
  }
  
  .stats-container {
      flex-direction: column;
  }
  
  .testimonial-carousel {
      flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .hero {
      height: auto;
      padding: 15px;
  }
  
  .hero h1 {
      font-size: 20px;
  }
  
  .stat h2 {
      font-size: 2rem;
  }
  
  .stat p {
      font-size: 0.9rem;
  }
  
  .footer-logo {
      font-size: 18px;
  }
  
  .footer-socials a {
      font-size: 16px;
  }
}

