/* ===== MAIN COLORS ===== */
:root {
    --primary-color: #2E7D32;   /* Dark Green - main theme */
    --secondary-color: #FFFFFF;  /* White - for text and background */
    --accent-color: #A5D6A7;     /* Light Green - highlights */
    --highlight-color: #FFC107;  /* Amber - small pops for buttons or hover */
    --text-color: #1B5E20;       /* Darker green for headings/text */
}

/* ===== GLOBAL STYLING ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.home * {
    position: relative;
    z-index: 1;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

/* ===== HEADER ===== */
/* Remove header background */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0, 0, 0, 0.3); /* semi-transparent */
    backdrop-filter: blur(8px);    /* blur effect */
    -webkit-backdrop-filter: blur(8px);

    z-index: 1000;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    transition: 0.3s ease;
}
nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}
header .logo img {
    height: 50px;   /* smaller logo */
    width: auto;
}


nav ul li a:hover {
    color: var(--accent-color);
}

/* HOME SECTION / HERO IMAGE */
.home {
    position: relative;
    background: url('images/night.webp') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-top: 0;  /* remove any header overlap */
    padding-top: 100px;
}
/* darkoverlay */
.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* lighter overlay */
    z-index: 0;
}

/* Make text appear above overlay */
.home h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.home p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 1; /* remove dim effect */
    color: #f5f5f5; /* slightly softer white */
}

.home .button {
    background-color: var(--highlight-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.home .button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .home h1 {
        font-size: 3rem;
    }

    .home p {
        font-size: 1.2rem;
    }

    header {
        padding: 15px 20px;
    }

    nav ul {
        gap: 15px;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

header .logo img {
    height: 50px;   /* smaller logo */
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}


nav ul li a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* ===== HOME SECTION ===== */
.home {
    background-image: url('images/night.webp'); /* make sure this path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color); /* white text */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    z-index: 0;  /* make sure it's behind header */
}

.home h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.home p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.home .button {
    background-color: var(--highlight-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.home .button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .home {
        height: auto;
        padding: 80px 20px;
    }

    .home h1 {
        font-size: 3rem;
    }

    .home p {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 15px;
    }
}
@media (max-width: 900px) {
    .why-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
/* ===== WHY SECTION ===== */

.why {
    padding: 100px 60px;
    background-color: #f8f9fa; /* soft light background */
    text-align: center;
}

.why h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1B5E20; /* deep green */
}

.why-intro {
    max-width: 700px;
    margin: 0 auto 60px auto;
    font-size: 1.2rem;
    color: #555;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 15px;
    color: #2E7D32;
}

.card p {
    color: #666;
}
/* ===== CTA CONTACT SECTION ===== */

.cta-contact {
    padding: 100px 20px;
    background-color: #458a2a; /* milky soft white-green */
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-contact h2 {
    font-size: 2.5rem;
    color: #1B5E20; /* deep green */
    margin-bottom: 10px;
}

.cta-contact h3 {
    font-size: 1.5rem;
    color: #2E7D32;
    margin-bottom: 25px;
    font-weight: 500;
}

.cta-contact p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #90e995; /* pure green */
    color: #ffffff;
    font-weight: bold;
    border-radius: 40px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(46,125,50,0.3);
}

.cta-btn:hover {
    background-color: #000c01; /* darker green */
    transform: translateY(-3px);
}
/* ===== SOCIAL CONNECT SECTION ===== */

.social-connect {
    padding: 80px 20px;
    background-color: #becebe; /* clean white */
    text-align: center;
}

.social-connect h2 {
    font-size: 2.3rem;
    color: #2de67a;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    width: 70px;
    height: 70px;
    background-color: #f6fff8; /* milky green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #2E7D32;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.social-link:hover {
    background-color: #2E7D32; /* pure green */
    color: #ffffff;
    transform: translateY(-6px);
}
/* ===== LOCATION SECTION ===== */

.location {
    padding: 100px 20px;
    background-color: #f6fff8; /* milky white-green */
    text-align: center;
}

.location h2 {
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 15px;
}

.location p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #444;
}

.map-container {
    max-width: 1000px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 35px;
    background-color: #2E7D32;
    color: white;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s ease;
}

.map-btn:hover {
    background-color: #1B5E20;
    transform: translateY(-3px);
}
html {
    scroll-behavior: smooth;
}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
    will-change: opacity, transform;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* ===== style.css ===== */

/* Reset & basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
}

/* Contact Section */
#contact {
  background-color: #ebcfb2;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#contact h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
}

#contact ul {
  list-style: none;
  margin-bottom: 20px;
}

#contact ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

#contact a {
  color: #5dad3d;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

#contact button {
  background-color: #133312;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

#contact button:hover {
  background-color: #267e26;
}
/* --- Contact Page Styles --- */
.contact-page {
    padding: 80px 20px;
    background-color: #F3F8F3; /* Light Green Tint */
    min-height: 80vh;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: #FDFFF7; /* Milky White */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-info-wrapper h2 {
    color: #2E7D32;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.sub-text {
    color: #666;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card i {
    background: #4CAF50;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.info-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2E7D32;
}

.info-card p {
    margin: 0;
    color: #555;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
    font-family: inherit;
}

.submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2E7D32;
    transform: translateY(-2px);
}

/* Review Button */
.feedback-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.google-btn:hover {
    background: #ea4335;
    color: white;
    border-color: #ea4335;
}

@media (max-width: 850px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

.site-footer {
    background-color: #1a1a1a; /* Deep Black/Charcoal */
    color: #e0e0e0;
    padding: 70px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
    /* Attractive Top Line (Gradient from Green to Gold) */
    border-top: 3px solid transparent;
    border-image: linear-gradient(to right, #4CAF50, #ffd700, #4CAF50);
    border-image-slice: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Decorative Vertical Lines for Desktop */
@media (min-width: 992px) {
    .footer-column:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 20px;
    }
}

.footer-column h3 {
    color: #4CAF50; /* Fresh Green Title */
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Underline for each header */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #ffd700; /* Gold accent line */
}

.footer-logo {
    font-size: 1.8rem !important;
    font-weight: bold;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #bbb;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700; /* Gold on hover */
    padding-left: 8px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    border: 1px solid #4CAF50;
    color: #4CAF50;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px; /* Square with slight roundness */
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.footer-socials a:hover {
    background: #4CAF50;
    color: #1a1a1a;
    transform: rotate(360deg); /* Playful spin */
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #777;
}

.developer-tag a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.developer-tag a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container { text-align: center; }
    .footer-column h3::after { left: 50%; transform: translateX(-50%); }
    .footer-socials { justify-content: center; }
}
/* --- Elegant Dark Footer --- */
.site-footer {
    background-color: #0f0f0f; /* Pure dark theme */
    color: #ffffff;
    padding: 80px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Glowing Accent Line at Top */
.footer-line-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4CAF50, #ffd700, #4CAF50, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Header Styling */
.footer-column h3 {
    color: #4CAF50; /* Green accents */
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Gold Accent Underline */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background-color: #ffd700; /* Gold line */
}

.footer-logo {
    font-size: 2rem !important;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    background: -webkit-linear-gradient(#fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #bbbbbb;
}

/* Links with Hover Effect */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: #bbbbbb;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffd700;
    transform: translateX(10px); /* Moves slightly right on hover */
}

/* Social Icon Boxes */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* Footer Bottom Credit */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    position: relative;
}

.footer-line-bottom {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
    margin: 5px 0;
}

.dev-credit a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive vertical divider removal */
@media (max-width: 768px) {
    .footer-container { text-align: center; }
    .footer-column h3::after { left: 50%; transform: translateX(-50%); }
    .footer-socials { justify-content: center; }
}


