/* ========================================= */
/* BASE & HERO SECTION */
/* ========================================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.hero-section {
    background-image: linear-gradient(rgba(16, 124, 65, 0.75), rgba(4, 75, 37, 0.9)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.btn {
    background-color: white;
    color: #107c41;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* ========================================= */
/* NAVBAR & LOGO STYLING (WITH BUTTON BORDERS) */
/* ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-img {
    height: 60px; /* Logo ka size 35px par set kar diya gaya hai */
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Normal Menu Links (Green Border) */
.nav-links li a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    padding: 8px 15px; /* Button jaisa look */
    border: 2px solid #107c41; /* Green border */
    border-radius: 5px;
    transition: 0.3s;
}

.nav-links li a:hover {
    background-color: #107c41;
    color: white;
}

/* Download Link in Menu (Blue Border) */
.nav-links li a.nav-download {
    border: 2px solid #007bff;
    color: #007bff;
}

.nav-links li a.nav-download:hover {
    background-color: #007bff;
    color: white;
}

/* Contact Us Button (Solid Green) */
.btn-contact {
    background-color: #107c41;
    color: white !important;
    border: 2px solid #107c41 !important;
    padding: 8px 15px;
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: #0c5e31 !important;
    border-color: #0c5e31 !important;
}

/* ========================================= */
/* SERVICES SECTION */
/* ========================================= */
.services-section {
    padding: 80px 8%;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #107c41;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #107c41;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* ========================================= */
/* ABOUT / FOUNDER SECTION STYLING */
/* ========================================= */
.about-section {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1050px;
    margin: 0 auto;
    text-align: left;
}

.founder-profile-card {
    flex-shrink: 0;
    text-align: center;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #107c41;
}

.founder-img {
    width: 150px !important;  
    height: 150px !important; 
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #107c41;
    margin-bottom: 15px;
}

.founder-name {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 8px 0;
}

.founder-designation {
    font-size: 1em;
    color: #107c41;
    font-weight: bold;
    margin: 0;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .founder-profile-card {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ========================================= */
/* DOWNLOAD SECTION (ALL IN ONE LINE) */
/* ========================================= */
.downloads-section {
    padding: 80px 8%;
    background-color: #f4f7f6;
    text-align: center;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1250px;
    margin: 0 auto;
}

.download-card {
    background-color: white;
    padding: 20px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #107c41;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.file-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.download-card h4 {
    margin: 0 0 8px 0;
    color: #107c41;
    font-size: 0.95em;
}

.download-card p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.8em;
    line-height: 1.4;
    flex-grow: 1;
}

/* Download Button ka Design (Blue Color Update) */
.btn-download-small {
    background-color: #007bff; /* Blue color */
    color: white;
    padding: 8px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85em;
    width: 90%; 
    transition: 0.3s;
}

.btn-download-small:hover {
    background-color: #0056b3; /* Dark blue on hover */
}

@media (max-width: 1024px) {
    .downloads-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .downloads-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .downloads-grid { grid-template-columns: 1fr; }
}

/* ========================================= */
/* CONTACT SECTION STYLING */
/* ========================================= */
.contact-section {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.contact-subtitle {
    color: #666;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #107c41;
    box-shadow: 0 0 5px rgba(16, 124, 65, 0.2);
}

.btn-submit {
    background-color: #107c41;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0c5e31;
}

/* ========================================= */
/* FOOTER STYLING */
/* ========================================= */
.footer {
    background-color: #222222;
    color: #f4f4f4;
    text-align: center;
    padding: 40px 20px 20px;
}

.footer-content h3 {
    color: #107c41;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.footer-content p {
    margin: 5px 0;
    font-size: 0.95em;
    color: #cccccc;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #444444;
    padding-top: 15px;
    font-size: 0.85em;
    color: #888888;
}