/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Georgia', serif;
  color: #2b2b2b;
  background-color: #fff9f6;
  line-height: 1.6;
  font-size: 16px; /* Base size bumped up */
}

/* Top Info Bar */
.top-bar {
  background-color: #f5f0ea;
  padding: 0.75rem;
  text-align: center;
  font-size: 2rem;
  color: #666;
}

/* Main Navigation */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-left li {
  list-style: none;
}
.nav-left a,
.nav-right a {
  text-decoration: none;
  font-size: 2rem;
  color: #333;
}
.insta {
  font-size: 1.5rem;
  font-weight: lighter;
  text-align: center;
  background-color:#ecd6c0;
  height: 50px;
  width: 200px;
  border-radius: 10px;
  padding-top: 5px;
}
.insta a{
  text-decoration: none;
  color: #000000;
}
.logo span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #888;
}
.btn {
  padding: 0.6rem 1.2rem;
  background-color: #1c064a;
  color: white;
  border-radius: 3px;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  flex-wrap: wrap;
  background-color: #fff9f6;
}
.hero-text {
  flex: 1;
  padding: 2rem;
}
.hero-text h1 {
  font-size: 5rem;
  color: #334c2c;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 3rem;
  color: #6a6a6a;
  margin-bottom: 1.5rem;
}
.details-btn {
  background-color: #ecd6c0;
  padding: 0.8rem 1.4rem;
  color: #333;
  text-decoration: none;
  font-size: 2rem;
  text-transform: uppercase;
  border-radius: 4px;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  height: auto;
}
/* About Us Section */
.about-us {
  background-color: #fff;
  padding: 2rem 1.5rem;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 3rem;
  color: #334c2c;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.services-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #334c2c;
}
.services-section h3{
  font-size: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 💡 This makes it responsive */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff9f6;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.service-card img {
  max-width: 180px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #4d6346;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}
.contact-section {
  background-color: #fef9f6;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: 3rem;
  color: #2f4e2f;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 3rem;
  color: #666;
  margin-bottom: 2rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .top-bar{
        font-size: 1rem;
    }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .nav {
    display: flex;
    gap: 1rem;
  }

  .nav-left,
  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
.insta {
  font-size: 1.2rem;
  font-weight: lighter;
  text-align: center;
  background-color:#ecd6c0;
  height: 45px;
  width: 120px;
  border-radius: 10px;
  padding-top: 5px;
}
  .hero-text h1 {
    font-size: 1.5rem;
  }

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

  .details-btn {
    font-size: 0.55rem;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.55rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .logo span {
    font-size: 0.8rem;
  }
  .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.8rem;
  }

  .about-image img {
    width: 55%;
    max-width: 450px;
    margin: 0 auto;
    height: auto;
  }
   .services-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 1.8rem;
  }
  .service-card img {
    max-width: 55px;
  }
  .service-card h3 {
    font-size: 1.15rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
    .contact-content h2 {
  font-size: 1.5rem;
  color: #2f4e2f;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #25D366;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 15px;
  height: 15px;
}
}

@media (max-width: 600px) {
    .top-bar{
        font-size: 0.8rem;
    }
  .hero-text h1 {
    font-size: 1.8rem;
  }

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

  .details-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo span {
    font-size: 0.75rem;
  }
  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 1rem;
  }
  .service-card img {
    max-width: 75px;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .services-section {
    padding: 3rem 1rem;
  }
    .contact-content h2 {
  font-size: 1rem;
  color: #2f4e2f;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #25D366;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 15px;
  height: 15px;
}
}
/* Mobile nav hidden by default */
@media (max-width: 768px) {
    .top-bar{
        font-size: 1rem;
    }
  .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .insta {
  font-size: 1.3rem;
  font-weight: lighter;
  text-align: center;
  background-color:#ecd6c0;
  height: 35px;
  width: 120px;
  border-radius: 10px;
  padding-top: 3px;
}
    .about-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }

  .about-image img {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 1.5rem;
  }
  .service-card img {
    max-width: 80px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 400px){
    .top-bar{
        font-size: 0.6rem;
    }
   .nav-left a,
  .nav-right a {
    font-size: 0.7rem;
  }
    .services-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* force override */
    gap: 1rem;
  }
  .service-card img {
    max-width: 80px;
  }
  .insta {
  font-size: 0.8rem;
  font-weight: lighter;
  text-align: center;
  background-color:#ecd6c0;
  height: 25px;
  width: 80px;
  border-radius: 10px;
  padding-top: 3px;
}
  .contact-content h2 {
  font-size: 0.8rem;
  color: #2f4e2f;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 0.5rem;
  color: #666;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #25D366;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 15px;
  height: 15px;
}
}
@media(max-width:1024){
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-left,
  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
.insta {
  font-size: 0.8rem;
  font-weight: lighter;
  text-align: center;
  background-color:#ecd6c0;
  height: 25px;
  width: 80px;
  border-radius: 10px;
  padding-top: 3px;
}
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 2rem;
  }

  .details-btn {
    font-size: 1.3rem;
  }

  .nav-left a,
  .nav-right a {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 2rem;
  }

  .logo span {
    font-size: 1rem;
  }
  .about-container {
    display: flex;
    gap: 4rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-text p {
    font-size: 2rem;
  }

  .about-image img {
    width: 65%;
    max-width: 450px;
    margin: 0 auto;
    height: auto;
  }
   .services-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 1.8rem;
  }
  .service-card img {
    max-width: 75px;
  }
  .service-card h3 {
    font-size: 2rem;
  }
    .contact-content h2 {
  font-size: 0.8rem;
  color: #2f4e2f;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 0.3rem;
  color: #666;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #25D366;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.3rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 15px;
  height: 15px;
}
}
@media (max-width: 270px){
    .top-bar{
        font-size: 0.8rem;
    }
   .nav-left a,
  .nav-right a {
    font-size: 0.5rem;
  }
    .services-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* force override */
    gap: 1rem;
  }
  .service-card img {
    max-width: 80px;
  }
  .insta {
  font-size: 0.5rem;
  font-weight: lighter;
  text-align: center;
  background-color:#ecd6c0;
  height: 15px;
  width: 60px;
  border-radius: 3px;
  padding-top: 1px;
}
.hero-text {
  flex: 1;
  padding: 2rem;
}
.hero-text h1 {
  font-size: 1rem;
  color: #334c2c;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 0.8rem;
  color: #6a6a6a;
  margin-bottom: 1.5rem;
}
.details-btn {
  background-color: #ecd6c0;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.5rem;
  text-transform: uppercase;
  border-radius: 4px;
}
.about-container {
    display: flex;
    gap: 1px;
    text-align: center;
    padding: 0 1.5rem;
  }

  .about-text h2 {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 0.7rem;
  }
 .service-card img {
    max-width: 65px;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .services-section h2 {
    font-size: 1rem;
  }
  .contact-content h2 {

  font-size: 0.8rem;
  color: #2f4e2f;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 0.3rem;
  color: #666;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #25D366;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.3rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 15px;
  height: 15px;
}
}
