html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* section {
    height: 100vh;
} */

.navbar {
    background: white;
    border-bottom: 1px solid #eee;
    font-family: Arial, sans-serif;
    position: sticky;
    top: 0;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: #8428B1;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: #333;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -240px;
    height: 100%;
    width: 200px;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    margin: 15px 0;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: #8428B1;
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
    color: #333;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}






.header {
    /* background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
    ),
    url('header.png') center/cover no-repeat; */
    background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
    ),
    url('black1.png') center/cover no-repeat;
    
    color: white;
    padding: 100px 20px;
    text-align: center;
    scroll-margin-top: 71.33px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background-color: #8428B1;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #6a1f8c;
}













.about-section {
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    scroll-margin-top: 50px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}















.why-choose-section {
    background: #f9f9f9;
    padding: 50px 20px;

    color: #555;
    font-family: Arial, sans-serif;
}

.why-choose-section .container {
    max-width: 1100px;
    margin: auto;
}

.why-choose-section h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.why-choose-section .intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.why-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
}

.why-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(25% - 1rem);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8428B1;
}

.why-icon {
    width: 60px;
    margin: 0 auto 15px;
}

.why-item p {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .why-item h3 {
        min-height: 56px;
    }
}


















.facilities-section {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.facilities-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.facility {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.facility.reverse {
    flex-direction: row-reverse;
}

.facility-image {
    width: 500px;
    max-height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.facility-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.facility-text {
    width: calc(100% - 500px - 40px);
}

.facility-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8428B1;
}

.facility-text p {
    color: #444;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .facility {
        flex-direction: column;
        gap: 20px;
    }
    .facility.reverse {
        flex-direction: column;
    }

    .facility-image {
        width: 100%;
        max-height: 250px;
    }

    .facility-text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .facility-image {
        max-height: 200px;
    }
}















.customers {
    padding: 50px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.customers-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.customers h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.customers p {
    color: #555;
    margin-bottom: 2rem;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.customers-grid img {
    height: 60px;
    object-fit: contain;
    max-width: 100%;
}

/* Smaller screens: 2 columns */
@media (max-width: 768px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


















.contact-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-section p {
    margin-bottom: 2rem;
    color: #555;
}

.quick-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 5px;
    background-color: #fff;
    color: #8428B1;
    border: 2px solid #8428B1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    color: #fff;
    background-color: #8428B1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: calc(100% - 20px - 2px);
}

.contact-form button {
    background-color: #8428B1;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #6a1f8c;
}

textarea {
    resize: vertical;
}

.contact-form {
    max-width: 600px;
    margin: auto;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}














.footer {
    background-color: #212529;
    color: #fff;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-title {
    margin-bottom: 20px;
}

.footer-title h2 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-item {
    margin-bottom: 15px;
}

.footer-item-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
}

.footer-item-title span {
    font-weight: bold;
}

.footer-item p {
    margin: 5px 0 0 26px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}