* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", sans-serif; }
body { background: hsl(0, 0%, 93%); color: #333; line-height: 1.6; font-family: "Poppins", "Segoe UI", sans-serif; }
a { text-decoration: none; }

/* NAVBAR */
.navbar {
  background: linear-gradient(90deg, rgba(44, 89, 44, 1) 0%, rgba(59, 209, 91, 0.98) 50%, rgba(60, 117, 65, 1) 100%);
  padding: 0.3rem 1.5rem; color: white; position: sticky; top: 0; z-index: 999;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; }
.logo { font-size: 1.5rem; font-weight: bold; }
.hamburgers { display: none; justify-content: center; align-items: center; }
.hamburger { cursor: pointer; position: relative; }
.hamburger input { position: absolute; width: 100%; height: 100%; margin: 0; cursor: pointer; opacity: 0; z-index: 2; }
.bar { display: block; width: 30px; height: 3px; margin: 6px auto; border-radius: 40px; transition: all 0.3s cubic-bezier(0.37, -1.11, 0.79, 2.02); background-color: white; }
.hamburger input:checked ~ .bar:nth-child(2) { transform: translateY(9.5px) rotate(45deg); }
.hamburger input:checked ~ .bar:nth-child(3) { opacity: 0; }
.hamburger input:checked ~ .bar:nth-child(4) { transform: translateY(-8px) rotate(-45deg); }
.nav-links { list-style: none; display: flex; gap: 1.2rem; justify-content: center; align-items: center; transition: all 0.4s ease; }
.nav-links li a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.nav-links li a:hover, .nav-links li a.active { color: #1f1f1f; }
@media (max-width: 768px) {
  .hamburgers { display: flex; }
  .nav-links { flex-direction: column; position: absolute; top: 60px; left: 50%; transform: translateX(-50%) scaleY(0); background: #f1ffee; width: 90%; padding: 20px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transition: all 0.4s ease; transform-origin: top center; z-index: 999; }
  .nav-links.show { transform: translateX(-50%) scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-links li { margin: 10px 0; }
  .nav-links li a { color: #379e1e; font-size: 1.1rem; }
}

/* HERO */
/* --- PREMIUM SERVICES HERO (CLEAN & PROFESSIONAL) --- */
.services-hero {
    height: 70vh; /* Shorter, more professional height for service pages */
    min-height: 500px;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%); /* Deep, rich professional green */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

/* Background Animated Shapes for modern feel */
.services-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
    animation: floatShape 10s infinite linear;
}

.services-hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
    animation: floatShape 15s infinite linear reverse;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 40px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -2px;
}

.hero-title span {
    color: #ffd54f;
    display: block;
    font-family: 'Playfair Display', serif;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 35px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-btn-primary {
    background: #ffffff;
    color: #1b5e20;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary:hover {
    background: #ffd54f;
    color: #1b5e20;
    transform: translateY(-3px);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
}

@media (max-width: 600px) {
    .services-hero { height: auto; padding: 100px 20px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-content { padding: 0; }
}



/* INTRO SECTION */
.intro-section {
  max-width: 1100px; margin: 0 auto; padding: 70px 20px; font-family: "Poppins", "Segoe UI", sans-serif; color: #333; line-height: 1.8;
}
.intro-section h2 { font-size: 2.4rem; font-weight: 700; color: #1f3d2b; margin-bottom: 25px; position: relative; }
.intro-section h2::after { content: ""; width: 80px; height: 4px; background-color: #4caf50; display: block; margin-top: 10px; border-radius: 2px; }
.intro-section p { font-size: 1.1rem; margin-bottom: 15px; color: #444; }

/* SERVICES GRID SECTION */
.services-main { padding: 60px 20px; text-align: center; }
.services-main h2 {
  font-size: 2.4rem; font-weight: 700; color: #1b5e20; margin-bottom: 40px; position: relative; display: inline-block;
}
.services-main h2::after {
  content: ""; width: 50%; height: 4px; background-color: #2e7d32; position: absolute; bottom: -10px; left: 25%; border-radius: 5px;
}
.service-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: #ffffff; padding: 25px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); text-align: left;
  display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}
/* Glowing effect on hover */
.service-card::before {
  content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(76, 175, 80, 0.1), transparent 50%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.img-container {
  background: #abdebd; height: 80px; width: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease;
}
.service-card:hover .img-container {
  transform: rotate(10deg);
}
.img-container i { font-size: 2.2rem; color: #1b5e20; }
.card-details { flex-grow: 1; }
.card-details h3 { color: #1b5e20; margin-bottom: 10px; font-size: 1.4rem; font-weight: 700; }
.card-details p { color: #555; font-size: 0.95rem; margin-bottom: 15px; }
.card-details ul { padding-left: 20px; margin-bottom: 15px; }
.card-details ul li { margin-bottom: 5px; font-size: 0.9rem; color: #444; }
.card-details ul li::marker { color: #4caf50; }

/* WHY CHOOSE US */
.why-choose-us {
  max-width: 1100px; margin: 50px auto; padding: 60px 20px; font-family: "Poppins", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #f0fdf4, #ffffff); border-radius: 20px; box-shadow: 0 15px 40px rgba(76, 175, 80, 0.1);
  text-align: center;
}
.why-choose-us h2 { font-size: 2.4rem; font-weight: 700; color: #1b5e20; margin-bottom: 40px; position: relative; display: inline-block; }
.why-choose-us h2::after { content: ""; width: 50%; height: 4px; background-color: #2e7d32; position: absolute; bottom: -10px; left: 25%; border-radius: 5px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.feature-item { background: #fff; padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; align-items: center; transition: 0.3s; text-align: left; }
.feature-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15); }
.feature-item i { font-size: 2.2rem; color: #4caf50; margin-right: 15px; }
.feature-item h4 { font-size: 1.1rem; color: #333; font-weight: 600; }

/* GUJARATI SECTION */
.gujarati-section {
  max-width: 900px; margin: 50px auto; padding: 30px; background: rgba(240, 255, 240, 0.95);
  border-left: 6px solid #4caf50; border-radius: 12px; box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
}
.gujarati-section h3 { font-size: 1.6rem; color: #1b5e20; margin-bottom: 15px; }
.gujarati-section p { font-size: 1.1rem; color: #2e7d32; line-height: 1.7; font-family: 'Poppins', sans-serif;}

/* CTA SECTION */
.cta-section {
  padding: 60px 20px; background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-radius: 20px; box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1); margin: 60px auto; max-width: 800px; text-align: center;
}
.cta-section h2 { color: #2e7d32; font-size: 2.2rem; margin-bottom: 20px; position: relative; display: inline-block; }
.cta-section h2::after { content: ''; width: 50%; height: 3px; background: #4caf50; position: absolute; bottom: -10px; left: 25%; border-radius: 5px; }
.cta-section p { color: #555; font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  background: linear-gradient(135deg, #4caf50, #2e7d32); color: white; padding: 12px 25px; border-radius: 8px; font-size: 1.1rem; font-weight: 600;
  cursor: pointer; transition: transform 0.2s ease, box-shadow 0.3s ease; text-decoration: none; border: none; display: inline-block;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4); }
.cta-btn.outline { background: transparent; border: 2px solid #2e7d32; color: #2e7d32; }
.cta-btn.outline:hover { background: #2e7d32; color: white; }

/* FOOTER */
footer {
  background: linear-gradient(270deg, rgba(44, 89, 44, 1), rgba(59, 209, 91, 0.98), rgba(60, 117, 65, 1));
  background-size: 600% 600%; animation: gradientShift 15s ease infinite; color: white; padding: 2rem 1rem; font-size: 1rem; margin-top: 2rem;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.footer-container { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-section { flex: 1; min-width: 250px; }
.footer-section h2, .footer-section h3 { margin-bottom: 1rem; }
.footer-section p { margin: 0.5rem 0; line-height: 1.6; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin: 0.5rem 0; }
.footer-section a { color: #ffeb3b; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
.footer-section a:hover { color: #cddc39; transform: scale(1.05); }
.social-icons { margin-top: 1rem; }
.social-icons a { display: inline-block; margin-right: 0.5rem; font-size: 1.4rem; transition: transform 0.3s ease; }
.social-icons a:hover { transform: scale(1.3) rotate(10deg); }
.created-by { margin-top: 1rem; font-size: 0.9rem; }
@media (max-width: 768px) { .footer-container { flex-direction: column; text-align: center; } .social-icons a { margin: 0 0.5rem; } }
