    html {
    scroll-behavior: smooth;
}
.index-body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 80px; /* adjust based on navbar height */
}
* {
    box-sizing: border-box;
}


.index-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 20px; /* reduce from 30px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    z-index: 1000;
}

/* Logo section */
.index-logo-section {
    display: flex;
    align-items: center;
}

.index-logo {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.index-company-name {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c; /* nice red */
}

/* Navigation */
.index-nav-links a {
    margin-left: 20px;
    margin-left: 20px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
}

.index-nav-links a:hover {
    color: #27ae60;
}
/* 🏠 Hero Section */
.index-hero {
    text-align: center;
    padding: 60px 20px;
    background: #34495e;
    color: white;
}

.index-hero h1 {
    font-size: 32px;
}

/* 🧩 Services */
.index-services {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    flex-wrap: wrap;
}

.index-service-box {
    background: white;
    padding: 20px;
    width: 220px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* 🔘 Buttons */
.index-btn {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.index-btn-secondary {
    background: #2980b9;
}

/* 📄 Footer */
.index-footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}

/*login.php style*/
.login-body {
        font-family: Arial;
        background: #f4f6f9;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-box {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        width: 400px;
    }

    .login-input {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
    }

    .login-button {
        width: 100%;
        padding: 10px;
        background: #2c3e50;
        color: white;
        border: none;
        cursor: pointer;
    }

    .login-error {
        color: red;
        margin-bottom: 10px;
    }
    .login-register-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    background: #27ae60;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.login-register-btn:hover {
    background: #219150;
}




/*about style*/
   .about {
    padding: 80px 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* TEXT */
.about-text {
    flex: 1;
}

.about-section-tag {
    color: #27ae60;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.about-text p {
    color: #666;
    line-height: 1.6;
}

/* HIGHLIGHTS */
.about-highlights {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.about-highlights h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


/*services style*/
.services-body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* 🏠 HERO */
.services-hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(to right, #2c3e50, #27ae60);
    color: white;
    text-align: center;
}

/* 🧩 SERVICES GRID */
.services {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #27ae60;
}

/* 🔘 BUTTON */
.services-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }
}



/*contact style*/
.contact-body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* 🔷 NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

/* 🏠 HERO */
.contact-hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(to right, #2c3e50, #27ae60);
    color: white;
    text-align: center;
}

/* 📞 MAIN CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    display: flex;
    gap: 40px;
}

/* 📍 INFO SECTION */
.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #2c3e50;
}

.contact-info p {
    margin: 10px 0;
    color: #555;
}

/* 📝 FORM SECTION */
.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.contact-button {
    padding: 10px 15px;
    background: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}