body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.btn-nav {
    background: #ff8800;
    padding: 8px 14px;
    border-radius: 5px;
    color: white !important;
}

.hero {
    padding: 60px 0;
    background: #f9f9f9;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 40px;
    color: #111;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

.hero-card {
    flex: 0.8;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.hero-card ul {
    padding: 0;
    list-style: none;
}

.hero-card ul li {
    margin: 10px 0;
}

.btn-primary {
    display: inline-block;
    background: #ff8800;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    display: inline-block;
    background: #222;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}

.gray-bg {
    background: #f6f6f6;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.card, .product-card {
    background: white;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
}

.card h3, .product-card h3 {
    margin-top: 0;
    color: #111;
}

.page-header {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    margin: 0;
    font-size: 35px;
}

.footer {
    background: #111;
    color: white;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

form textarea {
    height: 120px;
}

form button {
    border: none;
    cursor: pointer;
}

.list {
    line-height: 2;
}
.logo-img{
    height: 55px;
    width: auto;
}
.navbar {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.06);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.logo-box {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.logo-link:hover {
    text-decoration: none !important;
}

.logo-img {
    height: 55px;
    width: auto;
}

/* Company Text */
.company-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.company-sub {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.4px;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff8800;
}

.btn-nav {
    background: #ff8800;
    padding: 10px 18px;
    border-radius: 6px;
    color: white !important;
}

.btn-nav:hover {
    background: #ff6600;
}
a {
    text-decoration: none;
}
/* CONTACT PAGE DESIGN */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: start;
}

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.05);
}

.contact-form-box h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #ff8800;
    box-shadow: 0px 0px 6px rgba(255,136,0,0.3);
}

.contact-form-box textarea {
    height: 150px;
    resize: none;
}

.contact-form-box button {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

.contact-office-box {
    background: white;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.05);
}

.contact-office-box h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.office-card {
    background: #f9f9f9;
    padding: 18px;
    border-radius: 12px;
    border-left: 6px solid #ff8800;
    margin-bottom: 18px;
}

.office-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.office-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.office-phone {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.office-phone a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
}

.office-phone a:hover {
    color: #ff8800;
}

.office-footer {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 10px;
}

.office-footer a {
    text-decoration: none;
    font-weight: 600;
    color: #ff8800;
}

.office-footer a:hover {
    color: #ff5500;
}

/* Responsive Contact Page */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
