/* =========================================================
   POWERLOGIC & TECHNOLOGY SOLUTIONS
   MAIN WEBSITE STYLESHEET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1150px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 13, 27, 0.65);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-power {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo-tech {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #35b7ff;
    margin-top: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav a:hover {
    color: #35b7ff;
}

.nav-button {
    padding: 11px 19px;
    border: 1px solid #35b7ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-button:hover {
    background: #35b7ff;
    color: #071326;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;

    background:
        linear-gradient(120deg,
        #061020 0%,
        #0a1b35 50%,
        #062c4b 100%);
    
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -220px;
    top: 100px;
    border-radius: 50%;
    border: 1px solid rgba(53,183,255,0.15);
    box-shadow:
        0 0 0 70px rgba(53,183,255,0.03),
        0 0 0 140px rgba(53,183,255,0.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 45px 45px;
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    gap: 80px;

    padding-top: 70px;
}

.hero-text {
    max-width: 720px;
}

.hero-tag {
    display: inline-block;
    color: #35b7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #35b7ff;
}

.hero p {
    max-width: 620px;
    color: #c6d3e3;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 23px;

    font-size: 14px;
    font-weight: 800;

    border-radius: 4px;

    transition: 0.3s;
}

.btn-primary {
    background: #35b7ff;
    color: #061020;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    border-color: #35b7ff;
    color: #35b7ff;
}


/* HERO CARD */

.hero-card {
    padding: 38px 30px;

    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);

    backdrop-filter: blur(12px);

    border-radius: 8px;

    color: #ffffff;

    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.power-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(53,183,255,0.15);

    font-size: 25px;

    margin-bottom: 25px;
}

.hero-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hero-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #b9c9da;
}

.hero-line {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 25px 0 15px;
}

.hero-card span {
    color: #35b7ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading span,
.why-title span,
.cta span {
    display: block;
    color: #078bd0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-heading h2,
.why-title h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: #101b2d;
}

.section-heading p {
    color: #657286;
    font-size: 16px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    border-left: 3px solid #35b7ff;
    padding-left: 30px;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-content p {
    color: #657286;
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    color: #078bd0;
    font-weight: 800;
    margin-top: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-box {
    padding: 30px;
    background: #f5f8fb;
    border: 1px solid #e5ebf1;
    border-radius: 6px;
}

.stat-box strong {
    display: block;
    font-size: 32px;
    color: #078bd0;
    margin-bottom: 4px;
}

.stat-box span {
    color: #657286;
    font-size: 13px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #f4f7fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    border: 1px solid #e3e9ef;
    border-radius: 7px;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #35b7ff;
    box-shadow: 0 20px 45px rgba(7,55,90,0.10);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 22px;

    font-size: 12px;
    font-weight: 800;

    color: #b9c8d6;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7ff;
    color: #078bd0;

    border-radius: 6px;

    font-size: 22px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #657286;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card a {
    color: #078bd0;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.why-title p {
    color: #657286;
    max-width: 480px;
}

.why-list {
    display: grid;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8edf2;
}

.why-icon {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7ff;
    color: #078bd0;

    border-radius: 50%;

    font-weight: 900;
}

.why-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.why-item p {
    color: #657286;
    font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 70px 0;

    background:
        linear-gradient(110deg,
        #061020,
        #0b2c4c);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta span {
    color: #35b7ff;
}

.cta h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta p {
    color: #b7c7d8;
    max-width: 600px;
}

.btn-light {
    background: #ffffff;
    color: #061020;
    white-space: nowrap;
}

.btn-light:hover {
    background: #35b7ff;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: #f7f9fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    min-width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7ff;
    color: #078bd0;

    border-radius: 5px;

    font-weight: 800;
}

.contact-box h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-box p {
    color: #657286;
    font-size: 14px;
}

.contact-box a {
    display: inline-block;
    margin-top: 7px;
    color: #078bd0;
    font-size: 13px;
    font-weight: 800;
}

.contact-card {
    background: #ffffff;
    padding: 40px;

    border: 1px solid #e2e8ee;
    border-radius: 7px;

    box-shadow: 0 15px 40px rgba(10,40,70,0.06);
}

.contact-card h3 {
    font-size: 25px;
    margin-bottom: 7px;
}

.contact-card > p {
    color: #657286;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

form input,
form textarea {
    width: 100%;

    border: 1px solid #dce4eb;

    background: #ffffff;

    padding: 14px 15px;

    font-family: inherit;
    font-size: 14px;

    border-radius: 4px;

    margin-bottom: 15px;

    outline: none;

    transition: 0.2s;
}

form input:focus,
form textarea:focus {
    border-color: #35b7ff;
    box-shadow: 0 0 0 3px rgba(53,183,255,0.10);
}

form textarea {
    resize: vertical;
}

form button {
    border: none;
    cursor: pointer;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #050c18;
    color: #ffffff;
    padding-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 35px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-content p {
    color: #8d9bad;
    font-size: 13px;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #b9c5d3;
    font-size: 13px;
}

.footer-links a:hover {
    color: #35b7ff;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    color: #68788c;

    font-size: 12px;

    padding: 20px;
}


/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        display: none;
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 75px 0;
    }

    .nav-button {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}