* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background: #ffffff;
    line-height: 1.7;
    color: #1e293b;
    font-size: 16px;
}

header {
    background: #ffffff;
    color: #1e293b;
    padding: 0 0 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 110px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 110px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e293b;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.9;
}


.logo {
    height: 110px;
    width: auto;
    max-width: 350px;
    max-height: 110px;
    object-fit: contain;
    object-position: left center;
    margin-right: 25px;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;*/
    filter: none;
}

/*.logo:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}*/

.logo-text {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

header h1 {
    font-size: 1.8rem;
    margin: 0;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    padding: 5px 10px;
}

nav a:hover {
    color: #2563eb;
    text-decoration: underline;
}

nav a.active {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 5px;
    padding: 5px 15px;
    font-weight: 600;
}

.container {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    /*padding: 15px 20px;*/
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
    padding: 30px 20px 0 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    color: #64748b;
    opacity: 0.9;
    font-weight: 400;
}

.about {
    padding: 40px 0;
    background: #ffffff;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about h2 {
    color: #0f172a;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px auto;
    padding: 30px 0;
}

.product-card {
    background: #ffffff;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: #4a90e2;
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.product-card p {
    color: #475569;
    font-size: 0.95rem;
}

.contact-section {
    padding: 40px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.contact-info h3 {
    color: #0f172a;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.info-item {
    margin-bottom: 20px;
    color: #475569;
    font-size: 1rem;
}

.info-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #ffffff;
    color: #1e293b;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: #2563eb;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.contact-form button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

footer {
    background: #ffffff;
    color: #1e293b;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Enhanced Hero Section */
.hero-home {
    padding: 0;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    /*padding: 70px 20px;*/
    text-align: center;
}

.hero-subtitle {
    font-size: 1.8rem !important;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.hero-description {
    font-size: 1.1rem !important;
    margin-bottom: 30px;
    color: #64748b;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Section Styling */
.section-title {
    text-align: center;
    color: #0f172a;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 20px 0 0 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #4a90e2;
    background: #ffffff;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: #0f172a;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Preview Section */
.about-preview-section {
    padding: 25px 0;
    background: #ffffff;
}

.about-preview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.about-preview-text {
    flex: 1;
    text-align: left;
}

.about-preview-text h2 {
    color: #0f172a;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: left;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-preview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Founder Section */
.founder-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.founder-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
}

.founder-position {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    text-align: center;
    font-style: italic;
}

/* Why Us Section */
.why-us-section {
    padding: 25px 0;
    background: #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-us-item {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #4a90e2;
    background: #ffffff;
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.why-us-item h3 {
    color: #0f172a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-us-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Products Preview Section */
.products-preview-section {
    padding: 25px 0;
    background: #ffffff;
}

.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-preview-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.product-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.product-preview-card h3 {
    color: #0f172a;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-preview-card p {
    color: #475569;
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 25px 0;
    background: #f8fafc;
    color: #1e293b;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #64748b;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-section .btn-primary {
    background: #2563eb;
    color: #fff;
}

.contact-cta-section .btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-cta-section .btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.contact-cta-section .btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

/* About Page Styles */
.about-page {
    /*padding: 40px 0;*/
    background: #ffffff;
}

.about-intro {
    text-align: center;
    /*margin-bottom: 40px;*/
    padding: 0 0 30px 0;
}

.about-intro .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
    padding: 10px 30px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-section h2 {
    color: #0f172a;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a90e2;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #4a90e2;
}

.service-item h3 {
    color: #0f172a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.value-item:hover {
    border-color: #4a90e2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.value-item h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-item p {
    color: #475569;
    font-size: 0.95rem;
    margin: 0;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.why-us-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: #ffffff;
    border-left: 4px solid #4a90e2;
    border-radius: 5px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.why-us-list li strong {
    color: #0f172a;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    color: #0f172a;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.cta-section h2 {
    color: #0f172a;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #64748b;
}

.cta-section .btn-primary {
    background: #2563eb;
    color: #fff;
}

.cta-section .btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Footer Enhancement */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
    text-align: left;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0f172a;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0f172a;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo {
    margin-top: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
    opacity: 1;
    display: block;
    background: transparent;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s;
    filter: none;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #475569;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-bottom {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .about-preview-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-preview-text {
        text-align: center;
    }

    .about-preview-text h2 {
        text-align: center;
    }

    .founder-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .founder-name {
        font-size: 1.1rem;
    }

    .founder-position {
        font-size: 0.9rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2, .hero-home h2 {
        font-size: 2rem;
    }

    .hero p, .hero-subtitle {
        font-size: 1.2rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    .hero-home {
        min-height: 400px;
    }

    .hero-content {
        padding: 50px 20px;
    }

    .logo {
        height: 80px;
        width: auto;
        max-width: 220px;
        object-fit: contain;
        padding: 0;
        background: transparent;
    }
    
    header {
        min-height: 90px;
        padding: 12px 0;
    }
    
    .logo-container {
        min-height: 80px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    header {
        min-height: 70px;
        padding: 10px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .products, .services-grid, .why-us-grid, .products-preview-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .about-section {
        padding: 25px 20px;
    }

    .services-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
