@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-UltraLight.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Morabba';
    src: url('fonts/moraba/Morabba-Black.ttf') format('truetype');
    font-weight: 950;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Morabba', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header & Navigation */
header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-icon svg {
    color: #ffffff;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.hero p {
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-icon svg {
    color: #1a1a1a;
    opacity: 0.8;
}

.about h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-item:last-child {
    margin-bottom: 0;
}

.about-icon {
    color: #1a1a1a;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.about-item p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    color: #2a2a2a;
    text-align: justify;
    margin: 0;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.services h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.services .section-icon {
    margin-bottom: 3.5rem;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: #1a1a1a;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    opacity: 1;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}

.service-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2a2a2a;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.contact .section-icon {
    margin-bottom: 1.5rem;
}

.contact > .container > p {
    font-size: 1.05rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2a2a2a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: right;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #1a1a1a;
    opacity: 0.8;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item strong {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.contact-item span {
    font-size: 1.05rem;
    font-weight: 400;
    color: #2a2a2a;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #ffffff;
}

.features h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.features .section-icon {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #1a1a1a;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2a2a2a;
}

/* Technologies Section */
.technologies {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.technologies h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.technologies .section-icon {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.05rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #2a2a2a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tech-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}

.tech-item p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2a2a2a;
}

/* Security Section */
.security {
    padding: 5rem 0;
    background-color: #ffffff;
}

.security h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.security .section-icon {
    margin-bottom: 1.5rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-card {
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.security-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.security-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.security-icon svg {
    color: #1a1a1a;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.security-card:hover .security-icon svg {
    transform: scale(1.1);
    opacity: 1;
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}

.security-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2a2a2a;
}

/* Hardware Section */
.hardware {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.hardware h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
}

.hardware .section-icon {
    margin-bottom: 1.5rem;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hardware-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hardware-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hardware-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hardware-icon svg {
    color: #1a1a1a;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hardware-card:hover .hardware-icon svg {
    transform: scale(1.1);
    opacity: 1;
}

.hardware-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}

.hardware-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2a2a2a;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .features-grid,
    .tech-grid,
    .security-grid,
    .hardware-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    nav .container {
        flex-direction: row;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-icon {
        margin-bottom: 1.5rem;
    }

    .hero-icon svg {
        width: 60px;
        height: 60px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

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

    .about,
    .services,
    .features,
    .security,
    .hardware,
    .technologies,
    .contact {
        padding: 3.5rem 0;
    }

    .section-icon svg {
        width: 40px;
        height: 40px;
    }

    .about h2,
    .services h2,
    .features h2,
    .security h2,
    .hardware h2,
    .technologies h2,
    .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .features-grid,
    .tech-grid,
    .security-grid,
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item,
    .tech-item,
    .security-card,
    .hardware-card {
        padding: 1.5rem;
    }

    .about-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about-icon {
        align-self: center;
    }

    .about-item p {
        text-align: justify;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon svg {
        width: 48px;
        height: 48px;
    }

    .contact-info {
        padding: 2rem;
        gap: 1.2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .contact-item:hover {
        transform: translateY(-3px);
    }

    .contact-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .about,
    .services,
    .features,
    .security,
    .hardware,
    .technologies,
    .contact {
        padding: 2.5rem 0;
    }

    .about h2,
    .services h2,
    .features h2,
    .security h2,
    .hardware h2,
    .technologies h2,
    .contact h2 {
        font-size: 1.4rem;
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

