@charset "utf-8";
/* CSS Document */

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #333;
            padding-top: 110px; /* For sticky header */
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            padding: 40px 0;
        }

        /* ================= Header ================= */

        header {
            background: #fff;
            color: #0d3b2f;
            padding: 15px 0;
            text-align: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        

        header h1 {
            margin: 0;
            font-size: 26px;
        }

        header p {
            margin: 3px 0 0;
            font-size: 14px;
            color: #555;
        }

        /* ================= Section Titles ================= */

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 32px;
            color: #0d3b2f;
        }

        /* ================= About ================= */

.about{
	display: block;
	margin: 50px 0;
    padding: 100px 10px;
    width: 100%;
	height: 230px;
    background: url("../images/header-top-bg-11.jpg")top center #55ba47;
    color: #fff;
    z-index: 998;
}        

.about p {
            font-size: 17px;
            text-align: justify;
            margin-bottom: 15px;
        }

        /* ================= Videos ================= */

        .video-box {
            margin-bottom: 50px;
        }

        .video-box h3 {
            text-align: center;
            margin-bottom: 15px;
            color: #0d3b2f;
        }

        iframe {
            border-radius: 8px;
            width: 100%;
        }

        /* ================= Contact ================= */

        .contact-info {
            text-align: center;
            margin-bottom: 30px;
            font-size: 17px;
        }

        .contact-info p {
            margin: 5px 0;
        }

        /* ================= Form ================= */

        form {
            max-width: 700px;
            margin: auto;
        }

        .form-group {
            margin-bottom: 15px;
        }

        input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        button {
            background: #0d3b2f;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
        }

        button:hover {
            background: #08664f;
        }

        /* ================= Map ================= */

        .map-section iframe {
            width: 100%;
            height: 450px;
            border: 0;
            border-radius: 10px;
        }

        /* ================= Footer ================= */

        footer {
            background: #063400;
            color: #fff;
            text-align: center;
            padding: 15px 0;
        }

        footer p {
            margin: 0;
            font-size: 14px;
        }

        /* ================= Responsive ================= */

        @media(max-width:768px) {

            body {
                padding-top: 95px;
            }

            header h1 {
                font-size: 22px;
            }

            .section-title h2 {
                font-size: 26px;
            }

            iframe {
                height: 320px;
            }
        }
		
		/* Sticky Header */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url("../images/header-top-bg.jpg")top center #55ba47;
    color: #fff;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 15px 0;
    text-align: center;
}

#mainHeader img {
    max-height: 106px;
}

/* After Scroll */
#mainHeader.scrolled {
    background: #ffffff;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#mainHeader.scrolled h1 {
    color: #0d3b2f;
}

/* Space for fixed header */
body {
    padding-top: 120px;
}

#siteLogo {
    transition: all 0.3s ease;
}