* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0052CC;
    --light-blue: #E8F1FF;
    --dark-blue: #003399;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --border-light: #E0E0E0;
    --accent-gold: #D4AF37;
    --success-green: #27AE60;
    --error-red: #E74C3C;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    width: 100%;
    min-height: 100%;
    
}

/* HEADER & NAVIGATION */
header {
    background: linear-gradient(139deg, #000000, #C0C0C0);
    box-shadow: 0 2px 10px rgba(0, 82, 204, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: 	#ececec;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logocolor{
    color: hwb(206 8% 23% / 0.868);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.cta-button-secondary:hover {
    background: var(--light-blue);
}

/* HERO SECTION */
.hero {
    color: var(--white);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">ircle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect fill="url(%23dots)" width="1200" height="600"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(60%); /* Darkens video for better text visibility */
}

.hero .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
}

.hero .cta-button:hover {
    background: var(--light-blue);
}

.hero .cta-button-secondary {
    border-color: var(--white);
    color: var(--primary-blue);
}

.hero .cta-button-secondary:hover {
    background: var(--light-blue);
}

/* PRODUCT HIGHLIGHTS */
.product-highlights {
    padding: 5rem 5%;
    background: var(--light-blue);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.2);
    border-color: var(--primary-blue);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-varieties {
    background: var(--light-blue);
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.view-details {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-details:hover {
    background: var(--dark-blue);
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 5rem 5%;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    background: var(--light-blue);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* GLOBAL REACH */
.global-reach {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.reach-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reach-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.reach-list {
    list-style: none;
    margin-bottom: 2rem;
}

.reach-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reach-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.world-map-placeholder {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.world-map-placeholder img{
    height: 300px;
    width: 800px;
    border-radius: 12px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* INQUIRY FORM */
.inquiry-section {
    padding: 5rem 5%;
    background: var(--light-blue);
    text-align: center;
}


.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.12);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ABOUT US SECTION */
.about-section {
    padding: 5rem 5%;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* FOUNDERS SECTION */
.founders-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    border-top: 2px solid var(--light-blue);
    padding-top: 3rem;
}

.founders-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 700;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.founder-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.15);
}

.founder-image {
    width: 140px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border: 4px solid var(--primary-blue);
    object-fit: cover;
}

.founder-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 150px;
    padding: 10px 0;
    border-radius: 6px;
    top: 30px;
}

.dropdown-content li {
    padding: 8px 12px;
}

.dropdown-content a {
    color: black;
}

.dropdown-content a:hover {
    background: #e6e6e6;
}

/* SHOW dropdown when active */
.dropdown.show .dropdown-content {
    display: block;
}

/* CONTACT PAGE */
.contact-section {
    padding: 5rem 5%;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label {
    display: block;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: var(--text-dark);
    font-size: 1rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section img {
    height: 150px;
    width: 200px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
    display: inline;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 1rem;
}

.modal-header h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-blue);
}

.modal-body {
    color: var(--text-dark);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--primary-blue);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.modal-body ul, .modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* PRODUCT SPECS */
.product-specs {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 82, 204, 0.2);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-blue);
}

.spec-value {
    color: var(--text-dark);
}

.packaging-section {
    margin: 2rem 0;
}

.packaging-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.packaging-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.packaging-badge {
    background: var(--light-blue);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero .cta-button,
    .hero .cta-button-secondary {
        width: 100%;
    }

    .reach-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a {
        display: inline;
        margin: 0 1rem 0.5rem 0;
    }
}

@media (max-width: 480px) {
    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }
}

/* ACCESSIBILITY */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary-blue);
}
