/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --success-color: #10b981; /* Tailwind's green-600 */
    --error-color: #ef4444; /* Tailwind's red-500 */
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 1rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Layout
============================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a:hover::after,
.main-navigation a:focus::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Hero Section
============================== */

.hero-section {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5rem 0;
    text-align: center;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-content .cta-button {
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.hero-content .cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* ===========================
   Product Showcase
============================== */

.product-showcase {
    padding: 3rem 0;
    background-color: var(--white-color);
    text-align: center;
}

.product-showcase h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: var(--background-color);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.product-card h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--text-color);
}

.product-card p {
    margin-top: 0.5rem;
    color: var(--light-text-color);
}

/* ===========================
   Floating Inquiry Form
============================== */

.floating-inquiry-form {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.floating-inquiry-form button {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.floating-inquiry-form button:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.floating-inquiry-form form {
    display: none;
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    width: 300px;
}

.floating-inquiry-form form.active {
    display: block;
}

.floating-inquiry-form form input,
.floating-inquiry-form form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
}

.floating-inquiry-form form button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    width: 100%;
}

.floating-inquiry-form form button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

/* ===========================
   Footer Styles
============================== */

footer {
    background-color: var(--white-color);
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container .logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-container .contact-info,
.footer-container .social-media {
    margin-bottom: 1rem;
}

.footer-container .contact-info p {
    text-align: center;
    color: var(--light-text-color);
}

.footer-container .social-media a {
    color: var(--light-text-color);
    margin: 0 0.5rem;
    transition: color var(--transition-speed) ease;
}

.footer-container .social-media a:hover {
    color: var(--primary-color);
}

.footer-container .copyright {
    text-align: center;
    color: var(--light-text-color);
}

/* ===========================
   Responsive Styles
============================== */

@media (min-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-navigation {
        display: block;
    }

    #nav-toggle {
        display: none;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-container .contact-info,
    .footer-container .social-media {
        margin-bottom: 0;
    }

    .footer-container .contact-info {
        text-align: left;
    }

    .footer-container .social-media {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }
}
.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher img {
    width: 24px;
    height: auto;
    cursor: pointer;
    transition: transform var(--transition-speed) ease;
}

.language-switcher img:hover {
    transform: scale(1.1);
}

.main-navigation .nav-link.active::after {
    width: 100%;
}

/* Fixed Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--white-color);
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

.footer a {
    color: var(--primary-color);
    margin: 0 8px;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    z-index: 1000;
}

.cookie-modal h3 {
    margin-bottom: 1rem;
}

.cookie-modal button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#accept-cookies {
    background: var(--success-color);
    color: white;
}

#customize-cookies {
    background: var(--accent-color);
    color: white;
}

#close-modal {
    background: var(--error-color);
    color: white;
}


/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --success-color: #10b981; /* Tailwind's green-600 */
    --error-color: #ef4444; /* Tailwind's red-500 */
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 1rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Layout
============================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a:hover::after,
.main-navigation a:focus::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Tabs Section
============================== */

.tabs-section {
    padding: 2rem 0;
}

.tabs-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.tabs {
    display: flex;
    flex-direction: column;
    width: 200px;
    gap: 0.5rem;
}

.tab-link {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.tab-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tab-content {
    display: none;
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--primary-color);
    background-color: var(--white-color);
}

.tab-content.active {
    display: block;
}

/* ===========================
   Responsive Styles
============================== */

@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }

    .tabs {
        flex-direction: row;
        width: 100%;
        gap: 1rem;
    }

    .tab-link {
        width: 100%;
    }
}
.products-gallery {
    padding: 3rem 0;
    background: var(--white-color);
    text-align: center;
}

.products-gallery h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 1rem;
    --font-family-primary: 'Roboto', sans-serif;
    --font-family-secondary: 'Open Sans', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a.active::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Office Section
============================== */

.office-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .office-section {
        height: 40vh;
    }
}

/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 1rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content="space-between";
    padding: 1rem 0;
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a.active::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Contact Section
============================== */

.contact-section {
    padding: 2rem 0;
}

.contact-section .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.contact-details {
    flex: 1;
    max-width: 400px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-form {
    flex: 1;
    max-width: 600px;
}

.contact-form h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* ===========================
   Map Section
============================== */

.map-container {
    flex: 1;
    max-width: 600px;
    height: 400px;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

@media (max-width: 1024px) {
    .contact-info-form {
        flex-direction: column;
        align-items: center;
    }

    .contact-details,
    .contact-form,
    .map-container {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 0.5rem;
    }
}


/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --light-background-color: #ffffff; /* White background for sections */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 2rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a.active::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Hero Section
============================== */

.hero-section {
    background-color: var(--primary-color);
    color: var(--white-color;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Overview Section
============================== */

.overview-section {
    padding: 3rem 0;
}

.overview-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.overview-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

/* ===========================
   Services Section
============================== */

.services-section {
    padding: 3rem 0;
    background-color: var(--light-background-color);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.service-card {
    background-color: var(--white-color);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--light-text-color;
}

/* ===========================
   Process Section
============================== */

.process-section {
    padding: 3rem 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.process-step {
    background-color: var(--white-color;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    position: relative;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--light-text-color;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
    z-index: -1;
}

/* ===========================
   Why Choose Us Section
============================== */

.why-choose-us-section {
    padding: 3rem 0;
}

.why-choose-us-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-choose-us-section ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.why-choose-us-section li {
    background-color: var(--white-color;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    width: 250px;
    text-align: center;
    position: relative;
}

.why-choose-us-section li i {
    color: var(--primary-color;
    margin-right: 0.5rem;
}

/* ===========================
   Contact Us Section
============================== */

.contact-us-section {
    padding: 3rem 0;
    background-color: var(--light-background-color;
}

.contact-us-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-us-section p {
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary-color;
    color: var(--white-color;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.contact-button:hover {
    background-color: var(--secondary-color;
}
/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --light-background-color: #ffffff; /* White background for sections */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 2rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a.active::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Hero Section
============================== */

.hero-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Product Gallery Section
============================== */

.product-gallery {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: var(--light-background-color);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-card p {
    font-size: 1rem;
    color: var(--light-text-color;
    margin-bottom: 1rem;
}

.enquire-button {
    display: inline-block;
    background-color: var(--primary-color;
    color: var(--white-color;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.enquire-button:hover {
    background-color: var(--secondary-color;
}

/* ===========================
   Video Section
============================== */

.video-section {
    padding: 3rem 0;
    background-color: var(--light-background-color;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --light-background-color: #ffffff; /* White background for sections */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 2rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a.active::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   About Us Section
============================== */

.about-us-section {
    padding: 3rem 0;
}

.about-us-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-us-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.about-us-section ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.about-us-section li {
    background-color: var(--white-color;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    width: 250px;
    text-align: center;
    position: relative;
}

.about-us-section li i {
    color: var(--primary-color;
    margin-right: 0.5rem;
}

/* ===========================
   Team Members Section
============================== */

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.team-member {
    background-color: var(--white-color;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    width: 250px;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-member p {
    font-size: 1rem;
    color: var(--light-text-color;
}
/* src/styles/main.css */

/* ===========================
   Custom Variables
============================== */

:root {
    --primary-color: #1e40af; /* Tailwind's indigo-800 */
    --secondary-color: #2563eb; /* Tailwind's indigo-600 */
    --accent-color: #60a5fa; /* Tailwind's indigo-400 */
    --background-color: #f0f2f5; /* Tailwind's gray-100 */
    --light-background-color: #ffffff; /* White background for sections */
    --text-color: #111827; /* Tailwind's gray-900 */
    --light-text-color: #6b7280; /* Tailwind's gray-700 */
    --white-color: #ffffff;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --container-padding: 2rem;
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Proxima Nova', sans-serif;
}

/* ===========================
   Global Styles
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    color: var(--text-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header Styles
============================== */

header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

.site-logo img {
    width: 150px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-weight: 600;
    position: relative;
}

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-navigation a.active::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===========================
   Tabs Section
============================== */

.tabs-section {
    padding: 2rem 0;
}

.tabs-pills {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.tab-link {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 2rem;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.tab-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tab-content {
    display: none;
    padding: 1rem 0;
}

.tab-content.active {
    display: block;
}

/* ===========================
   Team Members Section
============================== */

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.team-member {
    background-color: var(--white-color;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    width: 250px;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-member p {
    font-size: 1rem;
    color: var(--light-text-color;
}
