* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f39c12;
    --accent-color: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
}
.product-introduction {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://sspark.genspark.ai/cfimages?u1=eGiMzlynhKdB0i8ayKgzZiGugh9BkaiD%2FkaQsijjPz2EKBg4ooU63d5YLhrteDjpkw2Fdxw5uWaqbDUSkehDsCE5CpjuKh%2BiibS7u4%2BbMngESOMwpayowrL%2FyNFIcdlu3OW7mNm81TBkLHvb9hjnxciOQGz5T2toqVqQPlHzNRG4tVLc%2BeT1p9r9AuM0Dd0qq0KEylKkjdCnFcGZKcdC8Yw3prXi0LeC%2B6tNSWsooLxHZLMVFp8%3D&u2=nyQH4%2BoiJBL5dtfB&width=2560');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    color: var(--text-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

/* Company Overview */
.company-overview {
    background: var(--bg-light);
}

.overview-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Header & Footer (native CSS) */
:root {
    --header-bg: #111;
    --header-border: #1f1f1f;
    --header-text: #f2f2f2;
    --header-text-muted: #cfcfcf;
    --accent: #f39c12;
    --footer-bg: #0f0f0f;
    --footer-border: #1f1f1f;
}

.top-bar {
    background: #000;
    color: #fff;
    padding: 8px 0;
}
.bar-container, .nav-shell, .footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}
.bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.contact-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.contact-link:hover { color: var(--header-text-muted); }
.icon-16 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }
.icon-24 { width: 24px; height: 24px; }
.me-6 { margin-right: 6px; }
.me-8 { margin-right: 8px; }

.top-actions { display: flex; align-items: center; gap: 12px; }
.social-links { display: flex; gap: 10px; }
.social-link { color: inherit; transition: color .2s; }
.social-link:hover { color: var(--header-text-muted); }
.search-button { background: transparent; border: none; color: inherit; cursor: pointer; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}
.nav-shell { padding: 0 16px; }
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    color: var(--header-text);
}
.logo-wrap { display: flex; align-items: center; }
.logo-link { display: inline-flex; align-items: center; }
.logo-img {
    height: auto;
    width: auto;
    max-height: 36px;
    max-width: 180px;
    object-fit: contain;
}
.logo-text { color: var(--header-text); font-size: 22px; font-weight: 700; text-decoration: none; }

.desktop-nav { flex: 1; display: flex; justify-content: center; margin-left: 24px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--header-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all .2s;
}
.nav-link:hover { color: var(--accent); background: #1b1b1b; }
.nav-link.is-active { color: var(--accent); background: #1b1b1b; }
.nav-link.disabled { opacity: .5; cursor: default; }
.dropdown-arrow { transition: transform .2s; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    width: 220px;
    background: #0f0f0f;
    border: 1px solid var(--header-border);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s, transform .2s;
    transform: translateY(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    z-index: 50;
}
.has-dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
    display: block;
    padding: 10px 14px;
    color: var(--header-text);
    text-decoration: none;
    transition: all .2s;
}
.dropdown-link.small { font-size: 14px; }
.dropdown-link:hover { color: var(--accent); background: #1b1b1b; }
.dropdown-link.is-active { color: var(--accent); background: #1b1b1b; border-left: 2px solid var(--accent); }
.dropdown-link.disabled { color: var(--header-text-muted); cursor: default; }
.sub-dropdown { border-left: 1px solid var(--header-border); margin-left: 10px; padding-left: 10px; }

.lang-switcher { display: none; align-items: center; }
.lang-dropdown { position: relative; }
.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--header-border);
    color: var(--header-text);
    cursor: pointer;
    transition: all .2s;
}
.lang-trigger:hover { color: var(--accent); background: #1b1b1b; border-color: #2a2a2a; }
.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 220px;
    background: #0f0f0f;
    border: 1px solid var(--header-border);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
    z-index: 60;
}
.lang-dropdown:hover .lang-menu { opacity: 1; visibility: visible; }
.lang-menu-header { padding: 10px 12px; border-bottom: 1px solid var(--header-border); }
.lang-menu-title { font-size: 12px; color: #999; letter-spacing: 1px; text-transform: uppercase; }
.lang-menu-list { list-style: none; margin: 0; padding: 6px 0; }
.lang-menu-item {
    display: block;
    padding: 10px 14px;
    color: var(--header-text);
    text-decoration: none;
    transition: all .2s;
}
.lang-menu-item:hover { color: var(--accent); background: #1b1b1b; }
.lang-menu-item.is-active { color: var(--accent); background: #1b1b1b; }
.lang-menu-row { display: flex; align-items: center; justify-content: space-between; }
.lang-code { font-size: 12px; color: #777; }
.text-accent { color: var(--accent); }

.mobile-actions { display: flex; align-items: center; gap: 10px; }
.mobile-icon-btn {
    background: transparent;
    border: 1px solid var(--header-border);
    border-radius: 8px;
    padding: 8px;
    color: var(--header-text);
    cursor: pointer;
    transition: all .2s;
}
.mobile-icon-btn:hover { background: #1b1b1b; border-color: #2a2a2a; color: var(--accent); }
.mobile-lang-menu {
    position: absolute;
    right: 0;
    margin-top: 8px;
    width: 180px;
    background: #0f0f0f;
    border: 1px solid var(--header-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    padding: 6px 0;
}
.mobile-lang-list { list-style: none; margin: 0; padding: 0; }
.mobile-lang-item {
    display: block;
    padding: 10px 14px;
    color: var(--header-text);
    text-decoration: none;
}
.mobile-lang-item.is-active { color: var(--accent); background: #1b1b1b; }

.mobile-menu {
    background: #0f0f0f;
    color: var(--header-text);
    padding: 12px 0 16px;
}
.mobile-menu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-link {
    display: block;
    padding: 10px 14px;
    color: var(--header-text);
    text-decoration: none;
    border-radius: 6px;
    transition: all .2s;
}
.mobile-link-row { display: flex; align-items: center; }
.mobile-link-row.between { justify-content: space-between; gap: 10px; }
.mobile-link.child { padding-left: 10px; }
.mobile-link.grandchild { padding-left: 16px; font-size: 14px; }
.mobile-link:hover { background: #1b1b1b; color: var(--accent); }
.mobile-link.is-active { background: #1b1b1b; color: var(--accent); }
.mobile-link.disabled { color: var(--header-text-muted); cursor: default; }
.mobile-submenu { list-style: none; margin: 8px 0 0; padding-left: 14px; }
.mobile-submenu-toggle {
    background: transparent;
    border: none;
    color: var(--header-text);
    cursor: pointer;
    padding: 6px;
}

.is-hidden { display: none !important; }
.hidden { display: none !important; }

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: #ccc;
    padding: 48px 0 32px;
    margin-top: 48px;
}
.footer-container { max-width: 1440px; margin: 0 auto; padding: 0 16px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.footer-title.small { font-size: 14px; }
.footer-title.center { text-align: center; }
.footer-subtitle { color: #fff; font-size: 14px; margin-bottom: 6px; }
.footer-logo { height: 40px; width: auto; }
.footer-text { color: #b5b5b5; font-size: 14px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link { color: #aaa; transition: color .2s; }
.footer-social-link:hover { color: #fff; }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-link { color: #ccc; text-decoration: none; transition: color .2s; }
.footer-link:hover { color: #fff; }
.contact-list { gap: 10px; }
.contact-row { display: flex; align-items: center; gap: 8px; }
.lang-row { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.footer-lang { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-lang-chip {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid #444;
    border-radius: 999px;
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    transition: all .2s;
}
.footer-lang-chip:hover { color: #fff; border-color: #777; }
.footer-lang-chip.is-active { background: #1e1e1e; color: #fff; border-color: #777; }
.footer-divider {
    border-top: 1px solid var(--footer-border);
    margin-top: 28px;
    padding-top: 20px;
}
.footer-friends { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.text-center { text-align: center; }

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .lang-switcher { display: flex; }
    .mobile-actions { display: none; }
    .mobile-menu { display: none !important; }
}

@media (max-width: 767px) {
    .desktop-nav { display: none; }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    .articles-grid { grid-template-columns: repeat(4, 1fr); }
}

.overview-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #555;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission, .vision {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission h4, .vision h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Services Section */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Products Section */
.products {
    background: var(--bg-light);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.product-image {
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2.5rem;
}

.product-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.25rem;
}

.product-specs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.spec-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: rgba(243, 156, 18, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Featured Articles */
.articles-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.article-image {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    font-size: 0; /* hide alt text fallback */
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    color: #333;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #dcdcdc;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

.article-tag {
    background: rgba(243, 156, 18, 0.15);
    color: var(--secondary-color);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.article-date { color: #999; font-size: 0.85rem; }

.article-title {
    font-size: 1.3rem;
    margin: 8px 0;
    color: var(--primary-color);
    display: block;
    max-width: 100%;
    overflow:hidden; 
    text-overflow:ellipsis;
    display:-webkit-box; 
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2; 
}

.article-excerpt {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555;
}

.mt-48 { margin-top: 48px; }

/* Portfolio Section */
.portfolio-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: #ddd;
    font-size: 0.95rem;
}

/* Global Presence */
.global-presence {
    background: var(--primary-color);
    color: var(--text-light);
}

.global-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.global-content .section-title {
    color: var(--text-light);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.region-item {
    text-align: center;
}

.region-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.region-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.region-item p {
    color: #aaa;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.info-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-text p {
    color: #666;
    font-size: 1.05rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase,
    .regions-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 1rem 5%;
    }
    .section-header{
        margin-bottom: 1rem;
    }
    .overview-text h3{
        font-size: 1.6rem;
    }
    .mission h4, .vision h4{
        font-size: 1.6rem;
    }
    .section-title{
        font-size: 2rem;
    }
    .service-card{
        padding: 16px;
    }
    .service-icon {
        margin-bottom: 1rem;
    }
    .services-grid{
        gap: 2rem;
    }
    .contact-form{
        padding: 1rem;
    }
    .site-footer{
        margin-top: 0px!important;
    }
    .contact-content{
        gap: 2rem;
    }
    .regions-grid{
        gap: 1rem;
        margin-top: 1rem;
    }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (min-width: 1200px) {
    .articles-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
