body {
    margin: 0;
    font-family: Arial;
}

/* HEADER */
header {
    background: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

/* LOGO + NAME */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* NAV MENU */
nav {
    display: flex;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE STYLE */
@media (max-width: 768px) {

    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: black;
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px;
        border-top: 1px solid #333;
        margin: 0;
    }

    .menu-toggle {
        display: block;
    }
}



/* HERO SECTION */
.hero {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* CONTENT */
.hero-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-content p {
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    background: #38bdf8;
    padding: 12px 25px;
    border-radius: 25px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

/* DESKTOP */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
}



/* SERVICES SECTION */
.services {
    padding: 60px 20px;
    background: #0f172a;
    color: white;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

/* GRID */
.service-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* CARD */
.service-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-5px);
    background: #334155;
}

/* DESKTOP GRID */
@media (min-width: 768px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-container {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* TECHNOLOGY SECTION */
.tech {
    padding: 60px 20px;
    background: #020617;
    color: white;
    text-align: center;
}

.tech h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

/* GRID */
.tech-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* ITEM */
.tech-item {
    background: #1e293b;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: bold;
}

/* HOVER EFFECT */
.tech-item:hover {
    background: #38bdf8;
    color: black;
    transform: scale(1.05);
}

/* TABLET */
@media (min-width: 768px) {
    .tech-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .tech-container {
        grid-template-columns: repeat(8, 1fr);
    }
}







/* PORTFOLIO */
.portfolio {
    padding: 60px 20px;
    background: #0f172a;
    color: white;
    text-align: center;
}

.portfolio h2 {
    margin-bottom: 30px;
}

/* GRID */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.app-card {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

/* IMAGE */
.app-card img {
    width: 100%;
    aspect-ratio: 1/1; /* Perfect square */
    object-fit: cover;
    border-radius: 20px;
}

/* TITLE */
.app-card p {
    margin-top: 10px;
}

/* HOVER */
.app-card:hover {
    transform: scale(1.05);
}

/* TABLET */
@media (min-width: 768px) {
    .portfolio-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .portfolio-container {
        grid-template-columns: repeat(6, 1fr);
    }
}






/* ABOUT SECTION */
.about {
    padding: 80px 20px;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* CONTENT BOX */
.about-content {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.about h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

/* TEXT */
.about p {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* POINTS */
.about-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* DESKTOP */
@media (min-width: 768px) {
    .about-points {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .about h2 {
        font-size: 36px;
    }
}









/* TESTIMONIALS */
.testimonials {
    padding: 60px 20px;
    background: #020617;
    color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 30px;
}

/* GRID */
.testimonial-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* CARD */
.testimonial-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

/* TEXT */
.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

/* NAME */
.testimonial-card h4 {
    margin-bottom: 5px;
}

/* STARS */
.stars {
    color: gold;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-5px);
    background: #334155;
}

/* TABLET */
@media (min-width: 768px) {
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .testimonial-container {
        grid-template-columns: repeat(3, 1fr);
    }
}






/* PROCESS SECTION */
.process {
    padding: 60px 20px;
    background: #0f172a;
    color: white;
    text-align: center;
}

.process h2 {
    margin-bottom: 40px;
}

/* GRID */
.process-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* STEP CARD */
.process-step {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

/* NUMBER CIRCLE */
.circle {
    width: 50px;
    height: 50px;
    background: #38bdf8;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 18px;
}

/* HOVER */
.process-step:hover {
    transform: translateY(-5px);
    background: #334155;
}

/* TABLET */
@media (min-width: 768px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .process-container {
        grid-template-columns: repeat(4, 1fr);
    }
}












/* PRICING */
.pricing {
    padding: 60px 20px;
    background: #020617;
    color: white;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
}

/* GRID */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* CARD */
.pricing-card {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
}

/* POPULAR */
.popular {
    border: 2px solid #38bdf8;
    transform: scale(1.05);
}

/* TAG */
.tag {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #38bdf8;
    color: black;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
}

/* PRICE */
.pricing-card h1 {
    margin: 15px 0;
}

/* BUTTON */
.price-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #38bdf8;
    color: black;
    text-decoration: none;
    border-radius: 20px;
}

/* HOVER */
.pricing-card:hover {
    transform: translateY(-5px);
    background: #334155;
}

/* TABLET */
@media (min-width: 768px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(3, 1fr);
    }
}











/* CTA SECTION */
.cta {
    padding: 70px 20px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    text-align: center;
}

/* CONTENT */
.cta-content {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.cta h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* TEXT */
.cta p {
    margin-bottom: 25px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BUTTON STYLE */
.cta-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* PRIMARY */
.primary {
    background: black;
    color: white;
}

/* SECONDARY */
.secondary {
    background: white;
    color: black;
}

/* HOVER */
.cta-btn:hover {
    transform: scale(1.05);
}

/* DESKTOP */
@media (min-width: 768px) {
    .cta h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}








/* FOOTER */
.footer {
    background: #020617;
    color: white;
    padding: 50px 20px 20px;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* COLUMN */
.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #cbd5f5;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #38bdf8;
}

/* SOCIAL */
.footer-social {
    text-align: center;
    margin-bottom: 20px;
}

.footer-social a {
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* TABLET */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}