/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

#nav {
  padding: 0.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(78, 77, 77, 0.1);
  /* backdrop-filter: blur(15px);  Remove this line */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 280px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  margin-left: 300px;
  margin-right: 80px;
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
  font-family: "PT Serif", serif;
  font-size: 1.2rem;
}

nav a {
  color: rgb(67, 64, 64);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #059753;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: black;
}
.main {
  width: 100%;
}
/* Hero Section */
.hero {
  width: 100%;
  min-height: 100vh;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.3em;
  background-image: url("images/bgg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero img {
  margin-top: -55px;
  width: 500px; /* adjust as needed */
  height: auto;
  opacity: 0;
  transform: translateY(80px);
  animation: slideInUp 1s ease-out 0.3s forwards;
}
.hero-content {
  max-width: 1200px;
  margin-top: 150px;
  margin-left: 50px;
  padding: 2rem 2rem;
  opacity: 0;
  transform: translateY(80px);
  animation: slideInUp 1s ease-out 0.3s forwards;
}
/* Animations */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1 {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: .9;
}

.hero-content h1 .highlight {
 
  color: #666868;
  font-size: 4rem;
}
.hero-content h1 .statement {
   
  font-size: 1.3rem;
  font-weight: 200;
  font-family: 'latin', sans-serif;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: left;
}

.btn-primary {
  margin-top: 30px;
  background: #66b971cc;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #0f9d8e;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
}

/* About Section */
.about-section {
  padding: 40px 2rem;
  background: linear-gradient(
    rgba(144, 238, 144, 0.4),
    rgba(144, 238, 144, 0.4)
  );

  background: white;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h3 {
  
  color: green;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  color: #64748b;
  font-size: 1rem;
  font-family: "latin", sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  height: 100%;
}

/* Services Section */
.services-section {
  margin-top: 30px;
  padding: 50px 2rem;
  padding-top: 100px;
  background-image: url("images/new2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  color: green;
  font-size: 2.8rem;

  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #14b8a6;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.8rem;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-content p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
  font-family: "latin", sans-serif;
}

/* Why Choose Section */
.why-choose-section {
  padding: 200px 2rem;
  background: white;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  color: green;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1rem;
  color: black;
  line-height: 1.8;
  font-family: "latin", sans-serif;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
}

.why-icon {
  background: #d1fae5;
  color: #059669;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.why-content p {
  font-size: 1rem;
  font-family: "latin", sans-serif;
  color: #64748b;
  line-height: 1.8;
}
/* Gallery Section */
.gallery-section {
  padding: 80px 2rem;
  background: #f8fafc;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-header h3 {
  color: green;
  font-size: 2.8rem;

  margin-bottom: 0.5rem;
}
.gallery-header h2 {
  color: black;
  font-size: 1rem;
  font-family: "latin", sans-serif;
  margin-bottom: 0.5rem;
}

.gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Before After Section */
.before-after-section {
  padding: 150px 2rem;
  background: ;
}
.ba-header {
  color: #059669;
  font-size: 1.8rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.before-after-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.before-after-item h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-image {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

.comparison-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #14b8a6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-label.after {
  background: #14b8a6;
}
.testimonials {
  background: url("images/splash1.png") no-repeat center center/cover;
  padding: 12rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #d4a574;
  border-radius: 2px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #555;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4a574;
}

.author-info h4 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Adjustments of testimonals*/
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 1.8rem;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 3rem 1rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-author img {
    width: 40px;
    height: 40px;
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
}
/* Contact Section */
.contact-section {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  padding: 2.5rem;
  border-radius: 30px;
  color: white;
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.contact-info .subtitle {
  font-size: 1rem;
  font-family: "latin", sans-serif;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: "latin", sans-serif;
}

.info-text p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.3;
  font-family: "latin", sans-serif;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 1.5rem;
}

.contact-form h3 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #334155;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input {
  padding: 0.1rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}
.contact-form textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #14b8a6;
  background: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.char-count {
  text-align: right;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: -0.5rem;
}

.submit-btn {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: white;
  padding: 0.3rem 2rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    position: relative;
    top: 0;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 1.25rem;
  }

  .contact-info {
    padding: 2.5rem 2rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 2.5rem 2rem;
  }

  .contact-form h3 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 1rem;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .contact-form h3 {
    font-size: 1.4rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .info-text h4 {
    font-size: 1rem;
  }

  .info-text p {
    font-size: 0.9rem;
  }
}
/* Footer */
footer {
  background: white;
  color: black;
  padding: 60px 1.5rem 30px;
}
 .footer-logo-image {
  font-family: "Arima", cursive;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: #535c68;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: #334155;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.social-link:hover {
  background: #14b8a6;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #535c68;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #14b8a6;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #535c68;
}
/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 1.5rem 20px;
  }

  .footer-logo-image {
    width: 200px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-about h3 {
    font-size: 1.3rem;
  }

  .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 1rem 20px;
  }

  .footer-logo-image {
    width: 150px;
  }

  .footer-container {
    gap: 2rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.9rem;
  }
}
/* =========================================================
   RESPONSIVE MEDIA QUERIES FOR HOME ABOUT SERVICES SECTIONS 
   ========================================================= */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
  #nav {
    padding: 0rem 1.5rem;
  }

  .logo img {
    width: 220px;
  }

  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 3rem;
    margin: 0;
    gap: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(78, 77, 77, 0.2);
  }

  nav ul.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding-top: 100px;
    
    text-align: center;
  }

  .hero img {
    display: none;
  }

  .hero-content {
    margin-top: 50px;
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 4.5rem;
  }

  .hero-content h1 .highlight {
    font-size: 3.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-container {
    display: flex;
    flex-direction: column; /* if elements stack vertically */
    align-items: center; /* centers horizontally */
    gap: 3rem;
  }
  .about-container button {
    width: 200px;
  }
  .about-image {
    display: none;
  }
  .about-content h3,
  .about-content h2 {
    font-size: 2.4rem;
    text-align: center;
  }
  .section-header h3,
  .section-header h2 {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  /* Why Choose Section - 1024px */
  .why-choose-section {
    padding: 120px 2rem;
  }

  .why-choose-header {
    margin-bottom: 3.5rem;
  }

  .section-label {
    font-size: 2.4rem;
  }

  .why-choose-grid {
    gap: 2.5rem;
  }

  .why-content h3 {
    font-size: 1.7rem;
  }
  .gallery-header h3 {
    font-size: 2.4rem;
  }
}

/* Tablet Portrait - 820px and 768px */
@media (max-width: 820px) {
  #nav {
    padding: 0rem 1.5rem;
  }

  .logo img {
    width: 200px;
  }

  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 3rem;
    margin: 0;
    gap: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(78, 77, 77, 0.2);
  }

  nav ul.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding-top: 80px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero img {
    width: 380px;
  }

  .hero-content {
   
    padding: 1.5rem 1rem;
    margin-top: 30px;
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    text-align: center
    ;
  }

  .hero-content h1 .highlight {
    font-size: 2.8rem;
    text-align: center;
  }

  .hero-content h1 .statement {
    font-size: 1.3rem;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    align-items: center;
    width: 100%;
    max-width: 300px;
  }

  .about-section {
    padding: 60px 1.5rem;
    padding-top: 100px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content h3 {
    margin-top: 0;
  }

  .about-content h3,
  .about-content h2 {
    font-size: 2rem;
  }

  .services-section {
    padding: 60px 1.5rem;
    padding-top: 90px;
  }

  .section-header h3,
  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Why Choose Section - 820px and 768px */
  .why-choose-section {
    padding: 100px 1.5rem;
  }

  .why-choose-header {
    margin-bottom: 3rem;
  }

  .section-label {
    font-size: 2rem;
  }
  .ba-header {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.95rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-item {
    gap: 1.5rem;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .why-content h3 {
    font-size: 1.5rem;
  }

  .why-content p {
    font-size: 0.95rem;
  }
  .gallery-header h3 {
    font-size: 2rem;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  #nav {
    padding: 0rem 1rem;
  }
  .logo img {
    width: 180px;
  }

  nav ul {
    top: 60px;
    height: calc(100vh - 60px);
    padding-top: 2rem;
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .hero img {
    width: 300px;
  }

  .hero-content {
    padding: 1rem;
    margin-top: 20px;
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1;
  }

  .hero-content h1 .highlight {
    font-size: 1.3rem;
  }

  .hero-content h1 .statement {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 0.5;
  }

  .btn-primary {
    text-decoration: none;
    padding: 0.8rem 1.3rem;
    font-size: 0.5rem;
    max-width: 150px;
  }

  .about-section {
    padding: 50px 1rem;
    padding-top: 80px;
  }

  .about-content h3,
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .services-section {
    padding: 50px 1rem;
    padding-top: 70px;
  }

  .section-header h3,
  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-card {
    border-radius: 12px;
  }

  .service-image {
    height: 200px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }

  /* Why Choose Section - 480px */
  .why-choose-section {
    padding: 80px 1rem;
  }

  .why-choose-header {
    margin-bottom: 2.5rem;
  }

  .section-label {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.95rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-item {
    gap: 1.2rem;
  }

  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .why-content h3 {
    font-size: 1.3rem;
  }

  .why-content p {
    font-size: 0.95rem;
  }
  /* Gallery Section - 480px */
  .gallery-section {
    padding: 60px 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery-header h3 {
    font-size: 1.8rem;
  }

  .gallery-item {
    height: 250px;
    border-radius: 12px;
  }

  /* Before After Section - 480px */
  .before-after-section {
    padding: 60px 1rem;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .before-after-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .ba-header {
    font-size: 1.4rem;
  }

  .comparison {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparison-image {
    height: 220px;
    border-radius: 10px;
  }

  .comparison-label {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  #nav {
    padding: 0rem 0.8rem;
  }
  .logo img {
    width: 150px;
  }
 .hero-content {
    padding: 1rem;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .hero img {
    width: 250px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h1 .highlight {
    font-size: 1.9rem;
  }

  .hero-content h1 .statement {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    max-width: 220px;
  }

  .about-content h3,
  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .section-header h3,
  .section-header h2 {
    font-size: 1.6rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
