* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  background-image: url('image/1111.png'); 
  background-size: 120% auto; /* Slightly increase width to crop more from left and right */
  background-position: center;
  height: 90vh; /* Reduce height to shrink the image from the bottom */
  display: flex;
  justify-content: flex-start; /* Slightly move content to the left */
  align-items: center; /* Center content vertically */
  text-align: left; /* Align text to the left */
  padding-left: 30px; /* Add a small left padding */
  padding-top: 20px; /* Add padding to move the image down */
  background-repeat: no-repeat;
  margin-top: -40px; /* Adjust to move the image up */
}

.hero-content {
  margin-left: 250px; /* Increase margin from the left */
}

.hero-content h1 {
  color: white;
  font-size: 4rem; /* Increase size */
  font-weight: 500; /* Make it less bold */
  margin-bottom: 10px; /* Adjust spacing */
}

.hero-content .subtext {
  color: white; /* Same color as heading */
  font-size: 1.2rem; /* Smaller size */
  font-weight: 300; /* Lighter font weight */
  margin-top: 5px; /* Add spacing below heading */
}

.hero-content p {
  color: white;
  font-size: 1rem;
  gap:5px
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

header {
  
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute; /* Position the header on top of the image */
  top: 0;
  width: 100%; /* Ensure the header spans the full width */
  z-index: 1000;
  background-color: #300755; /* Add background color to navbar */
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 150px;
  margin-right: 150px;
}

.navbar a {
  color: white; /* Ensure links are visible */
  text-decoration: none;
  font-size: 1.2rem; /* Increase text size */
  font-weight: 700; /* Make text bolder */
  line-height: 1.8; /* Increase line gaps */
  transition: color 0.3s, border-bottom 0.3s;
}

.navbar a:hover {
  color: #d796dd;
  border-bottom: 2px solid #d796dd;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background-color: #300755 !important;
    position: absolute;
    top: 60px;
    right: 0;
    width: calc(100vw - 40px); /* 8px margin on both sides */
    margin-left: 20px;
    margin-right: 20px;
    display: none;
    padding: 10px 0;
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .navbar ul.active {
    display: flex;
    gap: 2px;
  }

  .menu-icon {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px 5px 10px 5px;
    height: auto;
    min-height: 50vh;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 5px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-section {
    flex-direction: column;
    padding: 5px;
    gap: 15px;
  
  }

  .about-section .about-text {
    font-size: 0px;
    padding-left: 0;
    padding-top: 10px;
    max-width: 100%;
    text-align: center;
  }
  .about-section .about-text p {
    font-size: 12px;
  }


  .about-section .about-image img {
    max-width: 100%;
  }

  .services-grid,
  .blog-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card img,
  .blog-card img {
    height: 140px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .footer-col {
    max-width: 100%;
    text-align: left;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
  }

  .whatsapp-float {
    font-size: 22px;
    bottom: 10px;
    right: 10px;
  }

  .contact-form-section {
    padding: 15px 5px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Add horizontal margin to all main content containers for better readability */
  .hero-section,
  .about-section,
  .services-section,
  .blog-section,
  .contact-form-section,
  .service-card,
  .blog-card,
  .footer-col,
  .footer-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  /* Prevent double padding on sections that already have padding */
  .services-section,
  .blog-section,
  .contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --- Responsive Layout Improvements --- */

/* Large screens (default) already handled by existing code */

/* Medium screens */
@media (max-width: 1200px) {
  .services-grid,
  .blog-container,
  .footer-cols {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
  }
}



/* Tablet screens */
@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .about-section .about-text {
    max-width: 100%;
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
  .about-section .about-image img {
    max-width: 80%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .blog-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-cols {
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content {
    margin-left: 0;
    padding: 0 10px;
    text-align: center;
  }
  .hero-section {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    min-height: 60vh;
    text-align: center;
    justify-content: center;
  }
}



/* Small screens (mobile) */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background-color: #300755 !important;
    position: absolute;
    top: 60px;
    right: 0;
    width: calc(100vw - 16px); /* 8px margin on both sides */
    margin-left: 8px;
    margin-right: 8px;
    display: none;
    padding: 10px 0;
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px 5px 10px 5px;
    height: auto;
    min-height: 50vh;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 5px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-section {
    flex-direction: column;
    padding: 15px 5px;
    gap: 15px;
  }

  .about-section .about-text {
    padding-left: 0;
    padding-top: 10px;
    max-width: 100%;
    text-align: center;
  }

  .about-section .about-text p {
    font-size: 12px;
  }

  .about-section .about-image img {
    max-width: 100%;
  }

  .services-grid,
  .blog-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card img,
  .blog-card img {
    height: 140px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .footer-col {
    max-width: 100%;
    text-align: left;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
  }

  .whatsapp-float {
    font-size: 22px;
    bottom: 10px;
    right: 10px;
  }

  .contact-form-section {
    padding: 15px 5px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Add horizontal margin to all main content containers for better readability */
  .hero-section,
  .about-section,
  .services-section,
  .blog-section,
  .contact-form-section,
  .service-card,
  .blog-card,
  .footer-col,
  .footer-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  /* Prevent double padding on sections that already have padding */
  .services-section,
  .blog-section,
  .contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Extra small screens */
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .section-title,
  .blog-title {
    font-size: 1.5rem;
  }
  .footer-cols {
    gap: 10px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .services-section,
  .blog-section {
    padding: 20px 2px;
  }
}

/* Ensure form fields stack and are touch-friendly */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form-section {
    padding: 15px 5px;
  }
  .contact-form {
    padding: 0;
  }
}

/* Ensure address block columns stack on mobile */
@media (max-width: 768px) {
  .footer-address-block {
    flex-direction: column;
    gap: 10px;
  }
}

.hero-content .read-more-btn,
.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add more margin above the button */
  margin-left: -139px;
}

.hero-content .read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  margin-left: 10px; /* Add spacing between buttons */
  transition: border 0.3s, background-color 0.3s;
}

.hero-content .contact-us-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent; /* Remove background color */
  padding: 50px 40px; /* Reduced padding for better fit */
  gap: 40px; /* Add gap between text and image */
}

.about-section .about-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
  padding-left: 200px; /* Reduced from 200px */
  padding-top: 40px;  /* Reduced from 100px */
}

.about-section .about-text h2 {
  font-size: 2.5rem;
  color: #300755;
  margin-bottom: 20px;
}

.about-section .about-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.about-section .about-image {
  flex: 1;
  max-width: 100%;
  text-align: center;
  padding-left: 0; /* Removed padding */
}

.about-section .about-image img {
  max-width: 90%; /* Slightly smaller image */
  height: auto;
  border-radius: 10px;
}

.read-more-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
}

.read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.services-section {
  padding: 60px 20px;
  background-color: #ffffff; /* Add very light pink background */
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: left;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.service-content a {
  background-color: #d796dd; /* Match button color */
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px; /* Adjust padding */
  border-radius: 10px; /* Rounded corners */
  display: inline-block;
  margin-top: 15px; /* Add spacing above the button */
  transition: background-color 0.3s, transform 0.3s;
}

.service-content a:hover {
  background-color: #c06cbf; /* Slightly darker shade on hover */
  transform: translateY(-2px); /* Add hover effect */
}

.blog-section {
  background-color: transparent; /* Remove background color */
  padding: 60px 30px; /* Add padding for spacing */
}

.blog-title {
  font-size: 2.5rem;
  color: #300755;
  margin-bottom: 40px;
  text-align: center; /* Center the heading */
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: #300755;
  margin-bottom: 10px;
}

.blog-content .blog-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.blog-content .read-more-link {
  font-size: 0.9rem;
  color: #d796dd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: inline-block; /* Ensure proper spacing */
  margin-top: 10px; /* Add space between content and button */
}

.blog-content .read-more-link:hover {
  color: #ff1493;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

footer {
  background-color: #300755; /* Add background color */
  color: white; /* Ensure text is visible */
  padding: 20px;
  text-align: left;
}

footer a {
  color: #d796dd; /* Match button color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

footer a:hover {
  color: #ff1493; /* Match hover color of buttons */
}

form {
  background-color: #ffe6f0; /* Match services section background */
  padding: 40px; /* Add padding for spacing */
  border-radius: 12px; /* Rounded corners for the form */
  border: 2px solid #d796dd; /* Add border matching button color */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhance shadow for better visibility */
}

form .submit-now-btn {
  background-color: #d796dd; /* Match button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add spacing above the button */
}

form .submit-now-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

/* Utility and layout classes for all pages */
.hero-btns {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.about-bg {
  background-color: #ffe6f0;
}

.about-read-more {
  text-align: center;
  margin-top: 20px;
}

.blog-bg {
  background-color: #ffe6f0;
}

.contact-form-section {
  background-color: #ffffff;
  padding: 40px;
  margin-top: 40px;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
}

.form-row textarea {
  width: 100%;
  resize: vertical;
}

.form-submit {
  text-align: center;
}

.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.contact-details-title {
  color: #300755;
  margin-bottom: 20px;
}

.contact-link {
  color: #300755;
}

footer {
  background-color: #300755;
  color: #fff;
  padding: 40px 60px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-col.right-align {
  margin-left: auto;
  text-align: right;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  max-width: 25%;
  margin-bottom: 20px;
}

.footer-col p {
  margin: 8px 0;
}

.footer-col strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #d796dd;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  text-decoration: none;
  z-index: 999;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  .services-grid,
  .blog-container,
  .footer-cols {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .about-section .about-text {
    max-width: 100%;
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
  .about-section .about-image img {
    max-width: 80%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .blog-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-cols {
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content {
    margin-left: 0;
    padding: 0 10px;
    text-align: center;
  }
  .hero-section {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    min-height: 60vh;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background-color: #300755 !important;
    position: absolute;
    top: 60px;
    right: 0;
    width: calc(100vw - 16px); /* 8px margin on both sides */
    margin-left: 8px;
    margin-right: 8px;
    display: none;
    padding: 10px 0;
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px 5px 10px 5px;
    height: auto;
    min-height: 50vh;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 5px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-section {
    flex-direction: column;
    padding: 15px 5px;
    gap: 15px;
  }

  .about-section .about-text {
    padding-left: 0;
    padding-top: 10px;
    max-width: 100%;
    text-align: center;
  }

  .about-section .about-text p {
    font-size: 12px;
  }

  .about-section .about-image img {
    max-width: 100%;
  }

  .services-grid,
  .blog-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card img,
  .blog-card img {
    height: 140px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .footer-col {
    max-width: 100%;
    text-align: left;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
  }

  .whatsapp-float {
    font-size: 22px;
    bottom: 10px;
    right: 10px;
  }

  .contact-form-section {
    padding: 15px 5px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Add horizontal margin to all main content containers for better readability */
  .hero-section,
  .about-section,
  .services-section,
  .blog-section,
  .contact-form-section,
  .service-card,
  .blog-card,
  .footer-col,
  .footer-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  /* Prevent double padding on sections that already have padding */
  .services-section,
  .blog-section,
  .contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Extra small screens */
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .section-title,
  .blog-title {
    font-size: 1.5rem;
  }
  .footer-cols {
    gap: 10px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .services-section,
  .blog-section {
    padding: 20px 2px;
  }
}

/* Ensure form fields stack and are touch-friendly */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form-section {
    padding: 15px 5px;
  }
  .contact-form {
    padding: 0;
  }
}

/* Ensure address block columns stack on mobile */
@media (max-width: 768px) {
  .footer-address-block {
    flex-direction: column;
    gap: 10px;
  }
}

.hero-content .read-more-btn,
.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add more margin above the button */
  margin-left: -139px;
}

.hero-content .read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  margin-left: 10px; /* Add spacing between buttons */
  transition: border 0.3s, background-color 0.3s;
}

.hero-content .contact-us-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent; /* Remove background color */
  padding: 50px 40px; /* Reduced padding for better fit */
  gap: 40px; /* Add gap between text and image */
}

.about-section .about-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
  padding-left: 200px; /* Reduced from 200px */
  padding-top: 40px;  /* Reduced from 100px */
}

.about-section .about-text h2 {
  font-size: 2.5rem;
  color: #300755;
  margin-bottom: 20px;
}

.about-section .about-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.about-section .about-image {
  flex: 1;
  max-width: 100%;
  text-align: center;
  padding-left: 0; /* Removed padding */
}

.about-section .about-image img {
  max-width: 90%; /* Slightly smaller image */
  height: auto;
  border-radius: 10px;
}

.read-more-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
}

.read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.services-section {
  padding: 60px 20px;
  background-color: #ffffff; /* Add very light pink background */
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: left;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.service-content a {
  background-color: #d796dd; /* Match button color */
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px; /* Adjust padding */
  border-radius: 10px; /* Rounded corners */
  display: inline-block;
  margin-top: 15px; /* Add spacing above the button */
  transition: background-color 0.3s, transform 0.3s;
}

.service-content a:hover {
  background-color: #c06cbf; /* Slightly darker shade on hover */
  transform: translateY(-2px); /* Add hover effect */
}

.blog-section {
  background-color: transparent; /* Remove background color */
  padding: 60px 30px; /* Add padding for spacing */
}

.blog-title {
  font-size: 2.5rem;
  color: #300755;
  margin-bottom: 40px;
  text-align: center; /* Center the heading */
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: #300755;
  margin-bottom: 10px;
}

.blog-content .blog-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.blog-content .read-more-link {
  font-size: 0.9rem;
  color: #d796dd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: inline-block; /* Ensure proper spacing */
  margin-top: 10px; /* Add space between content and button */
}

.blog-content .read-more-link:hover {
  color: #ff1493;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

footer {
  background-color: #300755; /* Add background color */
  color: white; /* Ensure text is visible */
  padding: 20px;
  text-align: left;
}

footer a {
  color: #d796dd; /* Match button color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

footer a:hover {
  color: #ff1493; /* Match hover color of buttons */
}

form {
  background-color: #ffe6f0; /* Match services section background */
  padding: 40px; /* Add padding for spacing */
  border-radius: 12px; /* Rounded corners for the form */
  border: 2px solid #d796dd; /* Add border matching button color */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhance shadow for better visibility */
}

form .submit-now-btn {
  background-color: #d796dd; /* Match button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add spacing above the button */
}

form .submit-now-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

/* Utility and layout classes for all pages */
.hero-btns {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.about-bg {
  background-color: #ffe6f0;
}

.about-read-more {
  text-align: center;
  margin-top: 20px;
}

.blog-bg {
  background-color: #ffe6f0;
}

.contact-form-section {
  background-color: #ffffff;
  padding: 40px;
  margin-top: 40px;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
}

.form-row textarea {
  width: 100%;
  resize: vertical;
}

.form-submit {
  text-align: center;
}

.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.contact-details-title {
  color: #300755;
  margin-bottom: 20px;
}

.contact-link {
  color: #300755;
}

footer {
  background-color: #300755;
  color: #fff;
  padding: 40px 60px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-col.right-align {
  margin-left: auto;
  text-align: right;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  max-width: 25%;
  margin-bottom: 20px;
}

.footer-col p {
  margin: 8px 0;
}

.footer-col strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #d796dd;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  text-decoration: none;
  z-index: 999;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  .services-grid,
  .blog-container,
  .footer-cols {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .about-section .about-text {
    max-width: 100%;
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
  .about-section .about-image img {
    max-width: 80%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .blog-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-cols {
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content {
    margin-left: 0;
    padding: 0 10px;
    text-align: center;
  }
  .hero-section {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    min-height: 60vh;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background-color: #300755 !important;
    position: absolute;
    top: 60px;
    right: 0;
    width: calc(100vw - 16px); /* 8px margin on both sides */
    margin-left: 8px;
    margin-right: 8px;
    display: none;
    padding: 10px 0;
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px 5px 10px 5px;
    height: auto;
    min-height: 50vh;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 5px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-section {
    flex-direction: column;
    padding: 15px 5px;
    gap: 15px;
  }

  .about-section .about-text {
    padding-left: 0;
    padding-top: 10px;
    max-width: 100%;
    text-align: center;
  }

  .about-section .about-text p {
    font-size: 12px;
  }

  .about-section .about-image img {
    max-width: 100%;
  }

  .services-grid,
  .blog-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card img,
  .blog-card img {
    height: 140px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .footer-col {
    max-width: 100%;
    text-align: left;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
  }

  .whatsapp-float {
    font-size: 22px;
    bottom: 10px;
    right: 10px;
  }

  .contact-form-section {
    padding: 15px 5px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Add horizontal margin to all main content containers for better readability */
  .hero-section,
  .about-section,
  .services-section,
  .blog-section,
  .contact-form-section,
  .service-card,
  .blog-card,
  .footer-col,
  .footer-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  /* Prevent double padding on sections that already have padding */
  .services-section,
  .blog-section,
  .contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Extra small screens */
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .section-title,
  .blog-title {
    font-size: 1.5rem;
  }
  .footer-cols {
    gap: 10px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .services-section,
  .blog-section {
    padding: 20px 2px;
  }
}

/* Ensure form fields stack and are touch-friendly */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form-section {
    padding: 15px 5px;
  }
  .contact-form {
    padding: 0;
  }
}

/* Ensure address block columns stack on mobile */
@media (max-width: 768px) {
  .footer-address-block {
    flex-direction: column;
    gap: 10px;
  }
}

.hero-content .read-more-btn,
.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add more margin above the button */
  margin-left: -179px;
}

.hero-content .read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  margin-left: 10px; /* Add spacing between buttons */
  transition: border 0.3s, background-color 0.3s;
}

.hero-content .contact-us-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent; /* Remove background color */
  padding: 50px 40px; /* Reduced padding for better fit */
  gap: 40px; /* Add gap between text and image */
}

.about-section .about-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
  padding-left: 200px; /* Reduced from 200px */
  padding-top: 40px;  /* Reduced from 100px */
}

.about-section .about-text h2 {
  font-size: 2.5rem;
  color: #300755;
  margin-bottom: 20px;
}

.about-section .about-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.about-section .about-image {
  flex: 1;
  max-width: 100%;
  text-align: center;
  padding-left: 0; /* Removed padding */
}

.about-section .about-image img {
  max-width: 90%; /* Slightly smaller image */
  height: auto;
  border-radius: 10px;
}

.read-more-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
}

.read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.services-section {
  padding: 60px 20px;
  background-color: #ffffff; /* Add very light pink background */
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: left;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.service-content a {
  background-color: #d796dd; /* Match button color */
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px; /* Adjust padding */
  border-radius: 10px; /* Rounded corners */
  display: inline-block;
  margin-top: 15px; /* Add spacing above the button */
  transition: background-color 0.3s, transform 0.3s;
}

.service-content a:hover {
  background-color: #c06cbf; /* Slightly darker shade on hover */
  transform: translateY(-2px); /* Add hover effect */
}

.blog-section {
  background-color: transparent; /* Remove background color */
  padding: 60px 30px; /* Add padding for spacing */
}

.blog-title {
  font-size: 2.5rem;
  color: #300755;
  margin-bottom: 40px;
  text-align: center; /* Center the heading */
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: #300755;
  margin-bottom: 10px;
}

.blog-content .blog-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.blog-content .read-more-link {
  font-size: 0.9rem;
  color: #d796dd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  display: inline-block; /* Ensure proper spacing */
  margin-top: 10px; /* Add space between content and button */
}

.blog-content .read-more-link:hover {
  color: #ff1493;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

footer {
  background-color: #300755; /* Add background color */
  color: white; /* Ensure text is visible */
  padding: 20px;
  text-align: left;
}

footer a {
  color: #d796dd; /* Match button color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

footer a:hover {
  color: #ff1493; /* Match hover color of buttons */
}

form {
  background-color: #ffe6f0; /* Match services section background */
  padding: 40px; /* Add padding for spacing */
  border-radius: 12px; /* Rounded corners for the form */
  border: 2px solid #d796dd; /* Add border matching button color */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhance shadow for better visibility */
}

form .submit-now-btn {
  background-color: #d796dd; /* Match button color */
  color: white;
  border: none;
  padding: 10px 40px; /* Horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add spacing above the button */
}

form .submit-now-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

/* Utility and layout classes for all pages */
.hero-btns {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.about-bg {
  background-color: #ffe6f0;
}

.about-read-more {
  text-align: center;
  margin-top: 20px;
}

.blog-bg {
  background-color: #ffe6f0;
}

.contact-form-section {
  background-color: #ffffff;
  padding: 40px;
  margin-top: 40px;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
}

.form-row textarea {
  width: 100%;
  resize: vertical;
}

.form-submit {
  text-align: center;
}

.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.contact-details-title {
  color: #300755;
  margin-bottom: 20px;
}

.contact-link {
  color: #300755;
}

footer {
  background-color: #300755;
  color: #fff;
  padding: 40px 60px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-col.right-align {
  margin-left: auto;
  text-align: right;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  max-width: 25%;
  margin-bottom: 20px;
}

.footer-col p {
  margin: 8px 0;
}

.footer-col strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #d796dd;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  text-decoration: none;
  z-index: 999;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  .services-grid,
  .blog-container,
  .footer-cols {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .about-section .about-text {
    max-width: 100%;
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
  .about-section .about-image img {
    max-width: 80%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .blog-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-cols {
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content {
    margin-left: 0;
    padding: 0 10px;
    text-align: center;
  }
  .hero-section {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    min-height: 60vh;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background-color: #300755 !important;
    position: absolute;
    top: 60px;
    right: 0;
    width: calc(100vw - 16px); /* 8px margin on both sides */
    margin-left: 8px;
    margin-right: 8px;
    display: none;
    padding: 10px 0;
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    padding: 20px 5px 10px 5px;
    height: auto;
    min-height: 50vh;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 5px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 11px;
    text-align: left;
  }

  .about-section {
    flex-direction: column;
    padding: 15px 5px;
    gap: 15px;
  }

  .about-section .about-text {
    padding-left: 0;
    padding-top: 10px;
    max-width: 100%;
    text-align: center;
  }

  .about-section .about-text p {
    font-size: 12px;
  }

  .about-section .about-image img {
    max-width: 100%;
  }

  .services-grid,
  .blog-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card img,
  .blog-card img {
    height: 140px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .footer-col {
    max-width: 100%;
    text-align: left;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
  }

  .whatsapp-float {
    font-size: 22px;
    bottom: 10px;
    right: 10px;
  }

  .contact-form-section {
    padding: 15px 5px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Add horizontal margin to all main content containers for better readability */
  .hero-section,
  .about-section,
  .services-section,
  .blog-section,
  .contact-form-section,
  .service-card,
  .blog-card,
  .footer-col,
  .footer-bottom {
    margin-left: 0px;
    margin-right: 0px;
    padding: 20px;
  }

  /* Prevent double padding on sections that already have padding */
  .services-section,
  .blog-section,
  .contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Extra small screens */
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1rem;
    margin-left: -150px;
    margin-top: 0px;
  }
  .section-title,
  .blog-title {
    font-size: 1.5rem;
  }
  /* .footer-cols {
    gap: 10px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-bottom {
    font-size: 12px;
  } */
  .services-section,
  .blog-section {
    padding: 20px 2px;
  }


/* Base Footer Styles (No changes here unless needed) */
/* Base Footer Styles (unchanged) */
footer {
  background-color: #300755;
  color: #fff;
  padding: 40px 60px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-col.right-align {
  margin-left: auto;
  text-align: right;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  max-width: 25%;
  margin-bottom: 20px;
}

.footer-col p {
  margin: 8px 0;
}

.footer-col strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #d796dd;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ffffff;
}

/* Mobile View - Simplified 2-column layout */
@media (max-width: 500px) {
  footer {
    padding: 20px;
  }

  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 20px;
    padding: 0;
  }

  .footer-col {
    min-width: auto;
    max-width: none;
    margin-bottom: 10px;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-col strong {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .footer-col p {
    font-size: 12px;
    margin: 6px 0;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 20px;
  }
}


/* Mobile Responsive Styles */
@media (max-width: 500px) {
  footer {
    padding: 20px;
  }

  .footer-cols {
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding: 0 10px;
  }

  .footer-col {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    margin-bottom: 0;
  }

  .footer-col.right-align {
    text-align: left;
    margin-left: 0;
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 12px;
  }
}

  .hero-content .read-more-btn,
.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 5px 20px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
  margin-top: 20px; /* Add more margin above the button */
  margin-left: -50px;
}

.hero-content .read-more-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.hero-content .contact-us-btn {
  background-color: #d796dd; /* Button color */
  color: white;
  border: none;
  padding: 5px 20px; /* Increase horizontal padding for elongation */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px; /* Increase border radius for more rounded buttons */
  cursor: pointer;
  margin-left: 10px; /* Add spacing between buttons */
  transition: border 0.3s, background-color 0.3s;
}

.hero-content .contact-us-btn:hover {
  border: 2px solid #ff1493; /* Dark pink border on hover */
  background-color: #c06cbf; /* Slightly darker shade on hover */
}

.about-section {
    flex-direction: column;
    padding: 5px;
    gap: 15px;
    margin-top: -80px;
  
  }

.about-section .about-text h2{
    margin-top: 50px;
  
  }
}

/* Ensure form fields stack and are touch-friendly */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form-section {
    padding: 15px 5px;
  }
  .contact-form {
    padding: 0;
  }
}

/* Ensure address block columns stack on mobile */
@media (max-width: 768px) {
  .footer-address-block {
    flex-direction: column;
    gap: 10px;
  }
}