/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}


a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}


img {
    max-width: 100%;
    display: block;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.header {
    background: #07101d;
    color: #ffffff;

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: min(1200px, 94%);
    margin: auto;

    min-height: 85px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

    margin-right: auto;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 185px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================
   NAVIGATION LINKS
========================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;

    font-size: 0.95rem;

    color: #dddddd;

    transition:
        color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4da3ff;
}


/* Active navigation indicator */

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -10px;

    height: 2px;

    background: #4da3ff;
}


/* =========================
   NAVIGATION CTA
========================= */

.nav-cta {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border: 1px solid #4da3ff;

    border-radius: 30px;

    color: #ffffff;

    font-size: 0.9rem;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-cta span {
    font-size: 1.1rem;
}

.nav-cta:hover {
    background: #4da3ff;

    color: #07101d;

    transform: translateY(-2px);
}


/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;

    border: none;

    background: none;

    color: #ffffff;

    font-size: 1.7rem;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 85px);

    display: grid;

    grid-template-columns: 50% 50%;

    background: #030914;

    color: #ffffff;

    overflow: hidden;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    width: 100%;

    max-width: none;

    margin: 0;

    padding: 80px 8%;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(20, 120, 212, 0.16),
            transparent 45%
        );

    position: relative;

    z-index: 2;
}


/* =========================
   HERO LABEL
========================= */

.hero-label {
    color: #4da3ff;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


/* =========================
   HERO HEADING
========================= */

.hero h1 {
    max-width: 850px;

    font-size: clamp(
        2.8rem,
        5vw,
        5.2rem
    );

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: #4da3ff;
}


/* =========================
   HERO DESCRIPTION
========================= */

.hero-description {
    max-width: 650px;

    color: #c8ced8;

    font-size: 1.1rem;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;

    min-height: 100%;

    overflow: hidden;

    background: #07101d;
}


.hero-visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================
   HERO IMAGE OVERLAY
========================= */

.hero-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 20, 0.75),
            rgba(3, 9, 20, 0.15)
        );
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 30px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;

    cursor: pointer;
}


.btn-primary {
    background: #4da3ff;

    color: #07101d;

    border: 1px solid #4da3ff;
}


.btn-primary:hover {
    transform: translateY(-2px);

    background: #168cff;

    border-color: #168cff;
}


.btn-secondary {
    border: 1px solid #4da3ff;

    color: #ffffff;

    background: transparent;
}


.btn-secondary:hover {
    transform: translateY(-2px);

    background: #4da3ff;

    color: #07101d;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}


.dark-section {
    padding: 90px 0;

    background: #080b12;

    color: white;
}


.section-heading {
    max-width: 750px;

    margin-bottom: 50px;
}


.section-heading h2,
.two-column h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.15;

    margin-bottom: 20px;
}


.section-heading p {
    color: #666;
}


.dark-section .section-heading p {
    color: #aeb6c3;
}


/* =========================
   CARDS
========================= */

.cards {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.card {
    padding: 30px;

    border: 1px solid #e5e5e5;

    background: white;

    transition: .3s;
}


.card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}


.card-number {
    color: #4da3ff;

    font-size: .8rem;

    font-weight: 800;

    margin-bottom: 25px;
}


.card h3 {
    margin-bottom: 15px;
}


.card p {
    color: #666;

    margin-bottom: 20px;
}


.card a {
    color: #1478d4;

    font-weight: 700;
}


.dark-card {
    background: #111722;

    border-color: #252d3a;
}


.dark-card p {
    color: #aeb6c3;
}


/* =========================
   TWO COLUMN
========================= */

.two-column {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: start;
}


.two-column p {
    color: #666;

    margin-bottom: 20px;
}


.dark-section .two-column p {
    color: #aeb6c3;
}


/* =========================
   ROADMAP
========================= */

.roadmap {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.roadmap-item {
    padding: 35px;

    border: 1px solid #ddd;

    border-radius: 5px;
}


.roadmap-item.developing {
    opacity: .8;
}


.roadmap-status,
.coming-soon {
    display: inline-block;

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 20px;

    padding: 6px 10px;

    background: #e8f3ff;

    color: #1478d4;
}


.roadmap-item h3 {
    margin-bottom: 12px;
}


.roadmap-item p {
    color: #666;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #080b12,
            #101b2c
        );

    color: white;
}


.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);

    line-height: 1.1;

    margin-bottom: 20px;
}


.page-hero p:not(.section-label) {
    color: #bfc7d3;

    max-width: 650px;
}

.section-label{
    color: #4da3ff
}

.two-column .section-label{
    color: #4da3ff
}

/* =========================
   SERVICES
========================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


.service-card {
    padding: 40px;

    border: 1px solid #ddd;

    background: white;
}


.service-number {
    color: #4da3ff;

    font-weight: 800;

    font-size: .8rem;
}


.service-card h3 {
    font-size: 1.5rem;

    margin: 15px 0;
}


.service-card p {
    color: #666;

    margin-bottom: 20px;
}


.service-card li {
    margin-bottom: 9px;

    color: #555;
}


.service-card li::before {
    content: "✓";

    color: #1478d4;

    font-weight: bold;

    margin-right: 10px;
}


/* =========================
   FUTURE SERVICES
========================= */

.future-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.future-card {
    padding: 35px;

    background: #111722;

    border: 1px solid #273141;
}


.future-card h3 {
    margin-bottom: 15px;
}


.future-card p {
    color: #aeb6c3;
}


.future-card .coming-soon {
    background: #1c2b3c;
}


/* =========================
   SOLUTIONS
========================= */

.solution-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


.solution-card {
    padding: 40px;

    border: 1px solid #ddd;
}


.solution-card span,
.project-content span {
    color: #1478d4;

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: 1px;
}


.solution-card h2 {
    margin: 15px 0;
}


.solution-card p {
    color: #666;
}


/* =========================
   PROJECTS
========================= */

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}


.project-card {
    border: 1px solid #ddd;

    overflow: hidden;

    background: white;
}


.project-placeholder {
    height: 200px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #101722;

    color: #4da3ff;

    font-size: 2rem;

    font-weight: 800;
}


.project-content {
    padding: 30px;
}


.project-content h3 {
    margin: 10px 0;
}


.project-content p {
    color: #666;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 90px 0;

    text-align: center;

    background: #edf6ff;
}


.cta-section h2 {
    font-size: 2.5rem;

    margin-bottom: 15px;
}


.cta-section p {
    color: #666;

    margin-bottom: 25px;
}


/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;
}


.contact-info h2 {
    font-size: 2.5rem;

    margin-bottom: 20px;
}


.contact-info > p {
    color: #666;

    margin-bottom: 30px;
}


.contact-detail {
    margin-bottom: 25px;
}


.contact-detail strong {
    display: block;

    margin-bottom: 5px;
}


.contact-detail p {
    color: #666;
}


.contact-form {
    padding: 35px;

    border: 1px solid #ddd;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #ccc;

    border-radius: 3px;

    font: inherit;
}


.form-group textarea {
    resize: vertical;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 60px 0 20px;

    background: #080b12;

    color: white;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 40px;
}


.footer h3 {
    margin-bottom: 15px;
}

.footer h3 span{
    color: #4da3ff
}

.footer h4 {
    margin-bottom: 15px;
}


.footer p,
.footer span {
    color: #9da6b4;
}


.footer a,
.footer span {
    display: block;

    margin-bottom: 8px;

    font-size: .9rem;
}


.footer a:hover {
    color: #4da3ff;
}


.footer-bottom {
    margin-top: 50px;

    padding-top: 20px;

    border-top: 1px solid #252b35;

    text-align: center;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {


    /* =========================
       NAVBAR
    ========================= */

    .navbar {
        min-height: 75px;

        width: 92%;

        position: relative;
    }


    .logo img {
        width: 155px;
    }


    .nav-cta {
        display: none;
    }


    .menu-toggle {
        display: block;

        position: relative;

        z-index: 1001;
    }


    .nav-links {
        display: none;

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        padding: 15px 20px;

        box-sizing: border-box;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #07101d;

        border-top: 1px solid rgba(
            255,
            255,
            255,
            0.08
        );

        border-bottom: 1px solid rgba(
            255,
            255,
            255,
            0.08
        );
    }


    /* IMPORTANT:
       JavaScript uses .active
    */

    .nav-links.active {
        display: flex;
    }


    .nav-links li {
        padding: 14px 0;

        border-bottom: 1px solid #1e2430;
    }


    .nav-links li:last-child {
        border-bottom: none;
    }


    .nav-links a {
        display: block;

        width: 100%;
    }


    .nav-links a.active::after {
        display: none;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: auto;

        display: flex;

        flex-direction: column;
    }


    .hero-content {
        min-height: 650px;

        padding: 70px 7%;

        justify-content: center;
    }


    .hero-label {
        font-size: 0.7rem;

        letter-spacing: 1.5px;

        margin-bottom: 18px;
    }


    .hero h1 {
        font-size: clamp(
            2.5rem,
            10vw,
            4rem
        );

        line-height: 1.05;

        letter-spacing: -1px;
    }


    .hero-description {
        font-size: 1rem;

        line-height: 1.65;

        margin-bottom: 30px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    /* =========================
       HERO IMAGE
    ========================= */

    .hero-visual {
        height: 420px;

        min-height: 420px;
    }


    .hero-visual img {
        object-position: center;
    }


    /* =========================
       OTHER SECTIONS
    ========================= */

    .cards,
    .service-grid,
    .solution-grid,
    .project-grid,
    .contact-grid,
    .two-column {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .roadmap,
    .future-grid {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .section,
    .dark-section {
        padding: 65px 0;
    }


    .page-hero {
        padding: 70px 0;
    }


    .contact-form {
        padding: 25px;
    }

}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;

  background-color: #25D366;
  color: white;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 32px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;

  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #20bd5a;
  transform: scale(1.1);
}

.whatsapp-float span {
  line-height: 1;
}
