* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #6abcff;
    --secondary-color: #2563eb;
    --background-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    --section-spacing: 7.2rem;
    --card-spacing: 2.5rem;
    --section-padding: 3rem;
}

body {
    background: var(--background-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 188, 255, 0.2);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary-color), var(--text-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-right: 2rem;
    text-decoration: none;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 86, 87, 0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Menu Button Active State */
.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 2rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        z-index: 1001;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem;
        color: #ffffff !important;
        font-size: 1.1rem;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-color) !important;
    }

    .nav-button {
        display: none;
    }
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--card-spacing);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Hero Sections */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}


.hero-content {
    max-width: 80%;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.page-hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
}

.page-hero p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .btn {
    margin-top: 1rem;
}

/* Responsive Page Hero */
@media (max-width: 1200px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .page-hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        min-height: 40vh;
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding: 2.5rem 0;
        margin-top: 60px;
    }
    
    .page-hero-content {
        padding: 0 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 30vh;
        padding: 2rem 0;
    }
    
    .page-hero-content {
        padding: 0 1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}

/* Services Section */
.services-main {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}
.services-preview {
    padding: var(--section-padding) 0;
}
.service-category {
    margin-bottom: 4rem;
    padding: var(--section-padding) 0;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.category-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(106, 188, 255, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.service-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
    width: fit-content;
}

/* Products Main Section */
.products-main {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.product-section {
    margin-bottom: 4rem;
    padding: var(--section-padding) 0;
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-grid.reverse {
    direction: rtl;
}

.product-grid.reverse .product-content {
    direction: ltr;
}

.product-content {
    padding: 2rem;
}

.product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 2rem;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    color: var(--text-light);
}

.product-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

/* Upcoming Products Section */
.upcoming-products {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.upcoming-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upcoming-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
}

.upcoming-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.upcoming-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.upcoming-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding) 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
}

.why-choose-us .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 2rem;
    background: rgba(0,0,0,0.5);
}

.testimonials .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact Section */
.contact-main {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    padding: 3rem 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.office-card {
    padding: 3rem 2rem;
}

.office-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.office-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--text-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}

.footer-bottom p a{
        font-size: clamp(0.85rem, 1.6vw, 0.95rem);
        color: var(--text-light);
        text-decoration: none;
    }

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.seo-keywords {
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}
.seo-keywords h1 {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
}
.seo-keywords p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-muted);
}
.seo-keywords p a{
    color: var(--text-muted);
    text-decoration: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.seo-keywords p a:hover{
    color: var(--text-light);
}
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-grid,
    .products-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        order: 2;
    }
    
    .product-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 2.5rem 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-card,
    .product-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .service-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-card p,
    .product-card p,
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.9rem;
    }
    .seo-keywords {
     display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .btn,
    .nav-links a,
    .service-card,
    .product-card,
    .feature-card {
        transition: none;
    }
    
    .btn:hover,
    .nav-links a:hover {
        transform: none;
    }
    
    .service-card:hover,
    .product-card:hover,
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
}

.cta-section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}



/* About Page */
.about-main {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.about-section {
    margin-bottom: 4rem;
    padding: var(--section-padding) 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.about-card {
    text-align: center;
    padding: 3rem 2rem;
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



/* Contact Form Card */
.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.contact-form-card p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Contact Info Card */
.contact-info {
    padding: 2.5rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-info {
        padding: 2rem;
    }
}

/* Products Preview Section */
.products-preview {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.products-preview .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.products-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Original Product Card (for products.html) */
.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .product-content {
    flex: 1;
    padding-right: 2rem;
}

.product-card .product-image {
    width: 200px;
    height: 355px;
    overflow: hidden;
    border-radius: 10px;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.product-card .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Preview Product Card (for index.html) */
.preview-product-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.preview-product-card:hover {
    transform: translateY(-5px);
}

.preview-product-card .product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.preview-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-product-card .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.preview-product-card .product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.preview-product-card .product-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.preview-product-card .product-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-card .product-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .product-card .product-features {
        grid-template-columns: 1fr;
    }

    .product-card .feature-item {
        justify-content: center;
    }

    .preview-product-card {
        margin-bottom: 2rem;
    }

    .preview-product-card .product-image {
        height: 180px;
    }

    .preview-product-card .product-buttons {
        flex-direction: column;
    }

    .preview-product-card .product-buttons .btn {
        width: 100%;
    }
}

/* Location Content Section */
.location-content {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.location-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.location-content p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.city-group {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-group h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.city-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-group li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-group li::before {
    content: '•';
    color: var(--primary-color);
}

/* Responsive Design for Products and Location */
@media (max-width: 1200px) {
    .products-grid {
        gap: 2rem;
    }
    
    .cities-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 3rem auto;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .products-preview {
        padding: 4rem 0;
    }
    
    .products-preview h2 {
        margin-bottom: 2rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .product-buttons .btn {
        width: 100%;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .city-group {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .products-preview {
        padding: 3rem 0;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .product-content p {
        font-size: 0.95rem;
    }
    
    .city-group h3 {
        font-size: 1.1rem;
    }
    
    .city-group li {
        font-size: 0.95rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .product-card,
    .city-group {
        transition: none;
    }
    
    .product-card:hover,
    .city-group:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Products Page Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Products Hero */
    .products-main .page-hero {
        padding: 2rem 1rem;
    }

    .products-main .page-hero h1 {
        font-size: 2rem;
    }

    .products-main .page-hero p {
        font-size: 1rem;
    }

    /* Products Section */
    .products-main .product-section {
        margin-bottom: 3rem;
    }

    .products-main .product-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .products-main .product-grid.reverse {
        flex-direction: column-reverse;
    }

    .products-main .product-content {
        padding: 1rem;
    }

    .products-main .product-content h2 {
        font-size: 1.8rem;
    }

    .products-main .product-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .products-main .product-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-main .feature-item {
        padding: 0.75rem;
    }

    .products-main .feature-item i {
        font-size: 1.2rem;
    }

    .products-main .product-image {
        width: 100%;
        height: 250px;
    }

    .products-main .product-image img {
        object-fit: cover;
        border-radius: 12px;
    }

    /* Upcoming Products */
    .products-main .upcoming-products {
        padding: 1rem;
    }

    .products-main .upcoming-products h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .products-main .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-main .upcoming-card {
        padding: 1.5rem;
    }

    .products-main .upcoming-card i {
        font-size: 2rem;
    }

    .products-main .upcoming-card h3 {
        font-size: 1.4rem;
    }

    .products-main .coming-soon-badge {
        padding: 0.5rem 1rem;
    }

    /* CTA Section */
    .products-main .cta-section {
        padding: 1rem;
    }

    .products-main .cta-card {
        padding: 1.5rem;
    }

    .products-main .cta-card h2 {
        font-size: 1.6rem;
    }

    .products-main .cta-card p {
        font-size: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-main .product-grid {
        gap: 2rem;
    }

    .products-main .product-content {
        padding: 1.5rem;
    }

    .products-main .product-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-main .upcoming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* General Products Page Improvements */
.products-main .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
}

.products-main .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.products-main .feature-item i {
    color: var(--primary-color);
}

.products-main .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.products-main .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-main .product-image:hover img {
    transform: scale(1.05);
}

.products-main .upcoming-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.products-main .upcoming-card:hover {
    transform: translateY(-5px);
}

.products-main .coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Contact Page Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Contact Hero */
    .contact-main .page-hero {
        padding: 2rem 1rem;
    }

    .contact-main .page-hero h1 {
        font-size: 2rem;
    }

    .contact-main .page-hero p {
        font-size: 1rem;
    }

    /* Contact Grid */
    .contact-main .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Form */
    .contact-main .contact-form-card {
        padding: 1.5rem;
    }

    .contact-main .contact-form-card h2 {
        font-size: 1.8rem;
    }

    .contact-main .contact-form-card p {
        font-size: 1rem;
    }

    .contact-main .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-main .form-group {
        margin-bottom: 1rem;
    }

    .contact-main .form-group input,
    .contact-main .form-group select,
    .contact-main .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    /* Contact Info */
    .contact-main .contact-info-card {
        padding: 1.5rem;
    }

    .contact-main .office-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-main .office-card {
        padding: 1rem;
    }

    .contact-main .office-card i {
        font-size: 1.5rem;
    }

    .contact-main .contact-details {
        margin: 1.5rem 0;
    }

    .contact-main .contact-item {
        padding: 1rem;
    }

    .contact-main .contact-item i {
        font-size: 1.2rem;
    }

    .contact-main .social-links {
        margin-top: 1.5rem;
    }

    .contact-main .social-icons {
        gap: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-main .contact-grid {
        gap: 2rem;
    }

    .contact-main .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main .form-row {
        gap: 1.5rem;
    }
}

/* General Contact Page Improvements */
.contact-main .contact-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.contact-main .contact-form-card:hover {
    transform: translateY(-5px);
}

.contact-main .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-main .form-group input,
.contact-main .form-group select,
.contact-main .form-group textarea {
    width: 100%;
    padding: 1rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-main .form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

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

.contact-main .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236abcff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-main .office-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-main .office-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-main .office-card:hover {
    transform: translateY(-5px);
}

.contact-main .office-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-main .contact-details {
    margin: 2rem 0;
}

.contact-main .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.contact-main .contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-main .social-links {
    margin-top: 2rem;
}

.contact-main .social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.contact-main .social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-main .social-icons a:hover {
    color: var(--primary-color);
}

/* Contact Page Layout */
.contact-main .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-main .contact-form-section {
    width: 100%;
}

.contact-main .contact-info-section {
    width: 100%;
}

/* Global Offices Section */
.contact-main .global-offices {
    width: 100%;
    margin-top: 4rem;
}

.contact-main .office-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-main .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-main .global-offices {
        display: none;
    }

    .contact-main .contact-form-section {
        order: 1;
    }

    .contact-main .contact-info-section {
        order: 2;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-main .contact-grid {
        gap: 2rem;
    }

    .contact-main .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WhatsApp Chat Button */
.whatsapp-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
}

.whatsapp-chat-button i {
    color: white;
    font-size: 32px;
}

.domain-check-form {
    margin: 2rem auto;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.domain-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.domain-form .form-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.domain-form input[type="text"] {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 60px;
}

.domain-form input[type="text"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.domain-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.domain-form button {
    white-space: nowrap;
    padding: 1.2rem 2rem;
    height: 60px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .domain-form .form-group {
        flex-direction: column;
    }
    
    .domain-form button {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--background-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    color: var(--text-light);
}

.modal-body .form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-body input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modal-body input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}