/* BlinkTek - Clean CSS Reset and Base Styles */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: #00103A;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #00DAFE;
    color: #fff;
    border: 2px solid #00DAFE;
}

.btn-primary:hover {
    background-color: #00B8D4;
    border-color: #00B8D4;
    color: #fff;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: #00DAFE;
    color: #fff;
    text-decoration: none;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    color: #00DAFE;
    margin-bottom: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #00103A url('../images/bg-repeat.png') repeat;
}

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

.hero-image {
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 16, 58, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    color: #00DAFE;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

/* About Section */
.about-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

/* Features Section */
.features-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

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

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-title {
    color: #00DAFE;
    margin-bottom: 15px;
    margin-top: 20px;
}

.feature-description {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-details {
    font-size: 14px;
    color: #fff;
}

/* Products Section */
.products-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

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

.product-card {
    background: #00103A url('../images/bg-repeat.png') repeat;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    border: 2px solid #00DAFE;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #00B8D4;
}

.product-icon {
    margin-bottom: 20px;
}

.product-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.product-title {
    color: #fff;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.3;
}

/* Services Section */
.services-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

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

.service-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    border: 2px solid #00DAFE;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #00B8D4;
}

.service-icon {
    margin-bottom: 20px;
}

.service-title {
    color: #00DAFE;
    margin-bottom: 15px;
}

.service-description {
    color: #fff;
    margin-bottom: 30px;
}

/* Partners Section */
.partners-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-item img {
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.partner-item img:hover {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

.contact-title {
    color: #00DAFE;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partners-list {
        gap: 30px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
    
    .product-card {
        min-height: 220px;
        padding: 25px 15px;
    }
    
    .product-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-list {
        flex-direction: column;
        gap: 20px;
    }
}
/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #00103A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #00DAFE;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    background: #00103A;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: #00DAFE;
}

.nav-menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00DAFE;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #00DAFE;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background-color: #00DAFE;
    color: #fff;
    text-decoration: none;
}

.flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Adjust body for fixed header */
body {
    padding-top: 120px;
}

/* Mobile Header */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .header-top {
        padding: 5px 0;
        font-size: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .contact-info span {
        font-size: 12px;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .lang-link {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .header-top {
        display: none;
    }
    
    body {
        padding-top: 70px;
    }
    
    .contact-info {
        display: none;
    }
}
/* Footer Styles */
.main-footer {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #fff;
}

.footer-info i {
    color: #00DAFE;
    width: 16px;
}

.footer-newsletter h4 {
    color: #00DAFE;
    margin-bottom: 20px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00DAFE;
}

.newsletter-form button {
    align-self: flex-start;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px;
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .newsletter-form button {
        align-self: stretch;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #00103A;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #333;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .nav-menu li.active a::after {
        display: none;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Smooth Animations */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #00DAFE;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .btn {
        display: none;
    }
    
    body {
        padding-top: 0;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
/* About Page Styles */

/* About Hero Section */
.about-hero-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 180px 0 80px;
    text-align: center;
}

.about-hero-section .section-title {
    font-size: 48px;
    color: #00DAFE;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-section .section-description {
    font-size: 24px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Vision and Mission Section */
.vision-mission-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

/* Core Values Section */
.core-values-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

/* Core Team Section */
.core-team-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.core-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    color: #00DAFE;
    margin-bottom: 30px;
}

.content-description {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Section Description */
.section-description {
    font-size: 18px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 140px 0 60px;
    }
    
    .about-hero-section .section-title {
        font-size: 32px;
    }
    
    .about-hero-section .section-description {
        font-size: 18px;
    }
    
    .vision-mission-section,
    .core-values-section,
    .core-team-section {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .content-description {
        font-size: 16px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero-section .section-title {
        font-size: 28px;
    }
    
    .about-hero-section .section-description {
        font-size: 16px;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .content-description {
        font-size: 14px;
    }
}
/* Products Page Styles */

/* Products Hero Section */
.products-hero-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 180px 0 80px;
    text-align: center;
}

.products-hero-section .section-title {
    font-size: 48px;
    color: #00DAFE;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-hero-section .section-description {
    font-size: 24px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Detail Sections */
.product-detail-section {
    background: #00103A url('../images/bg-repeat.png') repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.product-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00DAFE 50%, transparent 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.product-detail-grid.reverse > * {
    direction: ltr;
}

.product-detail-content {
    padding: 20px;
}

.product-detail-icon {
    margin-bottom: 30px;
    text-align: center;
}

.product-detail-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.product-detail-title {
    font-size: 28px;
    color: #00DAFE;
    margin-bottom: 25px;
    text-align: center;
}

.product-detail-description {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    text-align: justify;
}

.product-detail-image {
    text-align: center;
}

.product-detail-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Products Page Responsive */
@media (max-width: 768px) {
    .products-hero-section {
        padding: 140px 0 60px;
    }
    
    .products-hero-section .section-title {
        font-size: 32px;
    }
    
    .products-hero-section .section-description {
        font-size: 18px;
    }
    
    .product-detail-section {
        padding: 60px 0;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-detail-grid.reverse {
        direction: ltr;
    }
    
    .product-detail-title {
        font-size: 24px;
    }
    
    .product-detail-description {
        font-size: 16px;
        text-align: center;
    }
    
    .product-detail-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .products-hero-section .section-title {
        font-size: 28px;
    }
    
    .products-hero-section .section-description {
        font-size: 16px;
    }
    
    .product-detail-title {
        font-size: 22px;
    }
    
    .product-detail-description {
        font-size: 14px;
    }
    
    .product-detail-icon img {
        width: 60px;
        height: 60px;
    }
    
    .product-detail-image img {
        max-width: 250px;
    }
}