* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

/* NAVBAR */
.navbar {
    background: #0b1f3a;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.navbar a:hover {
    color: #00b4ff;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    height: 70vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* BUTTON */
.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #00b4ff;
    color: white;
    border: none;
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

.btn:hover {
    background: #008ec7;
}

/* SECTION */
.section {
    padding: 60px 80px;
}

.section h2 {
    margin-bottom: 20px;
    color: #0b1f3a;
}

/* CARD */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
.logo img {
    height: 20px;
    width: auto;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* NAVBAR PREMIUM */
.navbar {
    background: #0b1f3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* LOGO */
.logo img {
    height: 20px;
    width: auto;
}

/* MENU WRAPPER */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* MENU BUTTON */
.menu a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.menu a:hover {
    background: rgba(0, 180, 255, 0.12);
    color: #00b4ff;
    transform: translateY(-2px);
}

/* UNDERLINE ANIMATION */
.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #00b4ff;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.menu a:hover::after {
    width: 60%;
}

/* CONTACT BUTTON SPECIAL */
.contact-btn {
    background: linear-gradient(135deg, #00b4ff, #0077ff);
    color: white !important;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 180, 255, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0099dd, #005fd1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 180, 255, 0.5);
}

/* NAVBAR PREMIUM */
.navbar {
    background: #0b1f3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* LOGO */
.logo img {
    height: 20px;
    width: auto;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.menu a:hover {
    background: rgba(0, 180, 255, 0.12);
    color: #00b4ff;
    transform: translateY(-2px);
}

/* CONTACT BUTTON */
.contact-btn {
    background: linear-gradient(135deg, #00b4ff, #0077ff);
    padding: 10px 18px;
    border-radius: 8px;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0,180,255,0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0099dd, #005fd1);
    box-shadow: 0 6px 18px rgba(0,180,255,0.5);
}

/* HERO */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.btn {
    background: #00b4ff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    border-radius: 6px;
}

.section {
    padding: 60px 80px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.footer {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

/* ================= NAVBAR ================= */
.navbar {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* LOGO (BESAR TANPA BESARKAN NAVBAR) */
.logo img {
    height: 20px;
    transform: scale(1.8);
    transform-origin: left center;
    display: block;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    color: #0b1f3a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.menu a:hover {
    background: rgba(0, 119, 255, 0.1);
    color: #0077ff;
    transform: translateY(-2px);
}

/* CONTACT BUTTON */
.contact-btn {
    background: linear-gradient(135deg, #0077ff, #00b4ff);
    color: white !important;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,119,255,0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #005fd1, #0099dd);
    box-shadow: 0 6px 18px rgba(0,119,255,0.5);
}

/* ================= HERO ================= */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* BUTTON */
.btn {
    background: #0077ff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    border-radius: 6px;
}

.btn:hover {
    background: #005fd1;
}

/* ================= SECTION ================= */
.section {
    padding: 60px 80px;
}

.section h2 {
    margin-bottom: 20px;
    color: #0b1f3a;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

/* NAVBAR */
.navbar {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* LOGO */
.logo img {
    height: 20px;
    transform: scale(1.8);
    transform-origin: left center;
}

/* MENU */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #0b1f3a;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.menu a:hover {
    background: rgba(0,119,255,0.1);
    color: #0077ff;
}

/* CONTACT BUTTON */
.contact-btn {
    background: linear-gradient(135deg, #0077ff, #00b4ff);
    color: white !important;
    padding: 10px 18px;
    border-radius: 8px;
}

/* HERO */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* BUTTON */
.btn {
    background: #0077ff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    border-radius: 6px;
}

/* SECTION */
.section {
    padding: 60px 80px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* CLICKABLE CARD */
.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover .card {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* FOOTER */
.footer {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px;
    background: linear-gradient(135deg, #0b1f3a, #133b6b);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* LEFT SIDE */
.contact-info {
    background: linear-gradient(135deg, #0077ff, #00b4ff);
    color: white;
    padding: 60px;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 18px;
}

.info-box i {
    font-size: 22px;
    margin-right: 15px;
}

/* RIGHT SIDE */
.contact-form {
    padding: 60px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0077ff;
    box-shadow: 0 0 10px rgba(0,119,255,0.2);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background: linear-gradient(135deg, #0077ff, #00b4ff);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,119,255,0.3);
}
/* ================= ABOUT PAGE ================= */

.about-section {
    background: #020b24;
    min-height: 100vh;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.about-left h1 {
    color: white;
    font-size: 70px;
    margin-bottom: 40px;
}

.about-left p {
    color: white;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 35px;
    max-width: 850px;
}

/* RIGHT SIDE */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #071633;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.info-card h2 {
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 32px;
}

.info-card p {
    color: white;
    font-size: 18px;
    line-height: 1.8;
}
/* ================= SERVICES PAGE ================= */

.services-section {
    background: #020b24;
    min-height: 100vh;
    padding: 80px;
}

/* TITLE */
.services-title {
    text-align: center;
    margin-bottom: 70px;
}

.services-title h1 {
    color: white;
    font-size: 70px;
    margin-bottom: 20px;
}

.services-title p {
    color: #b8c7e0;
    font-size: 18px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #071633;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* NUMBER */
.service-number {
    width: 70px;
    height: 70px;
    background: #0d2b52;
    color: #00d9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 35px;
}

/* TITLE */
.service-card h2 {
    color: white;
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 25px;
}

/* TEXT */
.service-card p {
    color: #b8c7e0;
    font-size: 18px;
    line-height: 1.8;
}
/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f8fc;
    color: #172033;
    line-height: 1.6;
}

a {
    text-decoration: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;
    height: 80px;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo span {
    font-size: 20px;
    font-weight: 800;
    color: #102a43;
}


/* MENU */

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu a {
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;

    padding: 10px 15px;

    border-radius: 8px;

    transition: all 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: #0b63ce;
    background: #eef6ff;
}


/* CONTACT BUTTON */

.menu .contact-btn {
    background: #0b63ce;
    color: white;

    padding: 11px 22px;

    border-radius: 30px;

    margin-left: 8px;
}

.menu .contact-btn:hover {
    background: #084c9e;
    color: white;
}


/* =====================================================
   HERO
===================================================== */

.project-hero {
    min-height: 520px;

    display: flex;
    align-items: center;

    padding: 80px 7%;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(28, 126, 214, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071d36,
            #0b3c68,
            #0877c9
        );
}


/* decorative circles */

.project-hero::before {
    content: "";
    width: 400px;
    height: 400px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;

    position: absolute;

    right: -100px;
    top: -100px;
}

.project-hero::after {
    content: "";
    width: 250px;
    height: 250px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;

    position: absolute;

    right: 100px;
    bottom: -120px;
}


/* HERO CONTENT */

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;

    color: #69c0ff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.hero-content h1 {
    color: white;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.08;

    margin-bottom: 25px;

    font-weight: 800;
}

.hero-content h1 span {
    display: block;
    color: #54b7ff;
}

.hero-content p {
    max-width: 680px;

    color: #d7e9f8;

    font-size: 18px;

    margin-bottom: 35px;
}


/* HERO BUTTON */

.hero-btn {
    display: inline-block;

    background: white;
    color: #075cae;

    padding: 14px 28px;

    border-radius: 30px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #54b7ff;
    color: white;

    transform: translateY(-3px);
}


/* =====================================================
   PROJECT SECTION
===================================================== */

.projects-section {
    padding: 100px 7%;
    background: #f5f8fc;
}


/* SECTION HEADING */

.section-heading {
    max-width: 750px;
    margin: 0 auto 60px;

    text-align: center;
}

.small-title {
    color: #0b63ce;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;
}

.section-heading h2 {
    font-size: 45px;

    color: #102a43;

    margin: 10px 0 15px;
}

.section-heading p {
    color: #667085;

    font-size: 17px;
}


/* =====================================================
   PROJECT GRID
===================================================== */

.projects-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


/* =====================================================
   PROJECT CARD
===================================================== */

.project-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(16, 42, 67, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(16, 42, 67, 0.15);
}


/* =====================================================
   PROJECT IMAGE
===================================================== */

.project-image {
    height: 220px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* IMAGE BACKGROUNDS */

.website-image {
    background:
        linear-gradient(
            135deg,
            #0066cc,
            #00a8ff
        );
}

.inventory-image {
    background:
        linear-gradient(
            135deg,
            #6a11cb,
            #2575fc
        );
}

.ecommerce-image {
    background:
        linear-gradient(
            135deg,
            #11998e,
            #38ef7d
        );
}

.business-image {
    background:
        linear-gradient(
            135deg,
            #f7971e,
            #ffd200
        );
}

.mobile-image {
    background:
        linear-gradient(
            135deg,
            #ee0979,
            #ff6a00
        );
}

.dashboard-image {
    background:
        linear-gradient(
            135deg,
            #283c86,
            #45a247
        );
}


/* IMAGE DESIGN */

.project-image::before {
    content: "";

    width: 180px;
    height: 180px;

    border: 35px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    position: absolute;
}

.project-image::after {
    content: "";

    width: 100px;
    height: 100px;

    background: rgba(255,255,255,0.08);

    border-radius: 20px;

    position: absolute;

    transform: rotate(45deg);
}


/* OVERLAY */

.image-overlay {
    position: relative;

    z-index: 2;

    color: white;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: 30px;

    background: rgba(0,0,0,0.12);

    backdrop-filter: blur(5px);
}


/* =====================================================
   PROJECT CONTENT
===================================================== */

.project-content {
    padding: 28px;
}

.project-number {
    color: #0b63ce;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}

.project-content h3 {
    color: #102a43;

    font-size: 23px;

    margin: 8px 0 12px;
}

.project-content p {
    color: #667085;

    font-size: 15px;

    margin-bottom: 20px;
}


/* =====================================================
   PROJECT TAGS
===================================================== */

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 22px;
}

.project-tags span {
    background: #eef6ff;

    color: #0b63ce;

    font-size: 12px;

    font-weight: 700;

    padding: 6px 11px;

    border-radius: 20px;
}


/* PROJECT LINK */

.project-link {
    color: #0b63ce;

    font-weight: 800;

    font-size: 14px;

    transition: all 0.3s ease;
}

.project-link:hover {
    color: #084c9e;

    letter-spacing: 0.5px;
}


/* =====================================================
   CTA
===================================================== */

.project-cta {
    padding: 100px 7%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #071d36,
            #0b63ce
        );

    color: white;
}

.cta-content {
    max-width: 800px;

    margin: auto;
}

.cta-content > span {
    color: #70c8ff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}

.cta-content h2 {
    font-size: 45px;

    line-height: 1.2;

    margin: 15px 0 20px;
}

.cta-content h2 strong {
    color: #54b7ff;
}

.cta-content p {
    color: #d6e9f8;

    font-size: 17px;

    margin-bottom: 30px;
}


/* CTA BUTTON */

.cta-btn {
    display: inline-block;

    background: white;

    color: #0b63ce;

    padding: 14px 30px;

    border-radius: 30px;

    font-weight: 800;

    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #54b7ff;

    color: white;

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #061525;

    color: white;

    padding: 55px 7% 20px;
}

.footer-content {
    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 50px;

    padding-bottom: 35px;
}

.footer-content h3 {
    font-size: 20px;

    margin-bottom: 10px;
}

.footer-content p {
    color: #9fb3c8;

    max-width: 400px;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    align-items: center;
}

.footer-links a {
    color: #b9c9d8;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #54b7ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);

    padding-top: 20px;

    text-align: center;

    color: #71869a;

    font-size: 13px;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 1000px) {

    .navbar {
        padding: 0 4%;
    }

    .menu {
        gap: 2px;
    }

    .menu a {
        padding: 8px 9px;

        font-size: 13px;
    }

    .projects-section {
        padding: 80px 5%;
    }

    .projects-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 700px) {

    /* NAVBAR */

    .navbar {
        height: auto;

        padding: 15px 5%;

        flex-direction: column;

        gap: 15px;
    }

    .menu {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 3px;
    }

    .menu a {
        font-size: 12px;

        padding: 7px 9px;
    }

    .menu .contact-btn {
        margin-left: 0;

        padding: 8px 14px;
    }


    /* HERO */

    .project-hero {
        min-height: 500px;

        padding: 70px 7%;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 16px;
    }


    /* SECTION */

    .projects-section {
        padding: 70px 5%;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }


    /* GRID */

    .projects-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* PROJECT IMAGE */

    .project-image {
        height: 200px;
    }


    /* CTA */

    .project-cta {
        padding: 70px 7%;
    }

    .cta-content h2 {
        font-size: 34px;
    }


    /* FOOTER */

    .footer-content {
        flex-direction: column;

        gap: 30px;

        text-align: center;
    }

    .footer-content p {
        margin: auto;
    }

    .footer-links {
        justify-content: center;
    }

}

/* =====================================================
   EXPERIENCE HERO
===================================================== */

.experience-hero {
    min-height: 560px;

    display: flex;
    align-items: center;

    padding: 90px 7%;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(47, 167, 255, 0.28),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06192e,
            #0a416e,
            #087acb
        );
}


/* Decorative circles */

.experience-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    right: -150px;
    top: -170px;
}


.experience-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;

    right: 120px;
    bottom: -190px;
}


/* Hero content */

.experience-hero-content {
    max-width: 850px;

    position: relative;

    z-index: 2;
}


.experience-label {
    color: #64c3ff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 4px;

    display: inline-block;

    margin-bottom: 20px;
}


.experience-hero-content h1 {
    color: white;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

    margin-bottom: 25px;

    font-weight: 800;
}


.experience-hero-content h1 span {
    display: block;

    color: #54b7ff;
}


.experience-hero-content p {
    color: #d5e9f8;

    max-width: 700px;

    font-size: 18px;

    margin-bottom: 35px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


.primary-btn {
    display: inline-block;

    background: white;

    color: #075cae;

    padding: 14px 27px;

    border-radius: 30px;

    font-weight: 800;

    transition: 0.3s ease;
}


.primary-btn:hover {
    background: #54b7ff;

    color: white;

    transform: translateY(-3px);
}


.secondary-btn {
    display: inline-block;

    color: white;

    border: 1px solid rgba(255,255,255,0.5);

    padding: 13px 27px;

    border-radius: 30px;

    font-weight: 700;

    transition: 0.3s ease;
}


.secondary-btn:hover {
    background: rgba(255,255,255,0.12);

    border-color: white;
}


/* =====================================================
   EXPERIENCE STATS
===================================================== */

.experience-stats {
    background: white;

    padding: 0 7%;
}


.stats-container {
    max-width: 1200px;

    margin: -55px auto 0;

    position: relative;

    z-index: 5;

    background: white;

    border-radius: 18px;

    box-shadow:
        0 15px 45px rgba(16,42,67,0.12);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow: hidden;
}


.stat-box {
    text-align: center;

    padding: 32px 20px;

    border-right: 1px solid #e8eef5;
}


.stat-box:last-child {
    border-right: none;
}


.stat-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef6ff;

    border-radius: 50%;

    font-size: 21px;
}


.stat-box h2 {
    color: #0b63ce;

    font-size: 32px;

    margin-bottom: 3px;
}


.stat-box p {
    color: #667085;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
   INTRODUCTION
===================================================== */

.experience-intro {
    padding: 100px 7%;

    background: white;
}


.intro-content {
    max-width: 900px;

    margin: auto;

    text-align: center;
}


.intro-label {
    color: #0b63ce;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 12px;
}


.intro-content h2 {
    color: #102a43;

    font-size: 44px;

    line-height: 1.15;

    margin-bottom: 22px;
}


.intro-content h2 span {
    color: #0b63ce;
}


.intro-content p {
    color: #667085;

    font-size: 17px;

    margin-bottom: 15px;
}


/* =====================================================
   EXPERIENCE SECTION
===================================================== */

.experience-section {
    padding: 100px 7%;

    background: #f5f8fc;
}


/* =====================================================
   EXPERIENCE GRID
===================================================== */

.experience-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}


/* =====================================================
   EXPERIENCE CARD
===================================================== */

.experience-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 200px 1fr;

    box-shadow:
        0 10px 35px rgba(16,42,67,0.07);

    transition: 0.35s ease;
}


.experience-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(16,42,67,0.13);
}


/* =====================================================
   EXPERIENCE CARD IMAGE
===================================================== */

.experience-card-image {
    min-height: 290px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.experience-card-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 30px solid rgba(255,255,255,0.12);

    border-radius: 50%;
}


.experience-card-image::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    background: rgba(255,255,255,0.08);

    border-radius: 20px;

    transform: rotate(45deg);
}


.experience-card-image span {
    position: absolute;

    top: 18px;
    left: 18px;

    color: white;

    font-size: 13px;

    font-weight: 800;

    z-index: 3;
}


.experience-image-icon {
    position: relative;

    z-index: 3;

    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.16);

    border: 1px solid rgba(255,255,255,0.3);

    border-radius: 20px;

    font-size: 32px;

    backdrop-filter: blur(5px);
}


/* Different colors */

.industrial {
    background:
        linear-gradient(
            135deg,
            #075cae,
            #00a8ff
        );
}


.maintenance {
    background:
        linear-gradient(
            135deg,
            #6a11cb,
            #2575fc
        );
}


.engineering {
    background:
        linear-gradient(
            135deg,
            #11998e,
            #38ef7d
        );
}


.technical {
    background:
        linear-gradient(
            135deg,
            #f7971e,
            #ff512f
        );
}


/* =====================================================
   EXPERIENCE CARD CONTENT
===================================================== */

.experience-card-content {
    padding: 28px;
}


.experience-card-content h3 {
    color: #102a43;

    font-size: 23px;

    margin-bottom: 12px;
}


.experience-card-content p {
    color: #667085;

    font-size: 14px;

    margin-bottom: 18px;
}


.experience-card-content ul {
    padding-left: 18px;

    color: #4a5568;

    font-size: 13px;
}


.experience-card-content li {
    margin-bottom: 6px;
}


/* =====================================================
   PROCESS SECTION
===================================================== */

.process-section {
    padding: 100px 7%;

    background:
        linear-gradient(
            135deg,
            #071d36,
            #0a4d80
        );
}


.dark-heading h2 {
    color: white;
}


.dark-heading p {
    color: #c7dced;
}


.process-container {
    max-width: 1050px;

    margin: 60px auto 0;

    display: flex;

    align-items: flex-start;

    justify-content: center;
}


.process-item {
    flex: 1;

    color: white;

    text-align: center;
}


.process-number {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0b63ce;

    border: 5px solid rgba(255,255,255,0.1);

    font-weight: 800;

    font-size: 14px;
}


.process-item h3 {
    font-size: 20px;

    margin-bottom: 8px;
}


.process-item p {
    color: #bcd2e5;

    font-size: 13px;

    max-width: 190px;

    margin: auto;
}


.process-line {
    height: 2px;

    width: 70px;

    margin-top: 30px;

    background:
        linear-gradient(
            90deg,
            #0b63ce,
            #54b7ff
        );
}


/* =====================================================
   EXPERIENCE CTA
===================================================== */

.experience-cta {
    padding: 100px 7%;

    text-align: center;

    background: #f5f8fc;
}


.experience-cta .cta-content {
    max-width: 800px;

    margin: auto;
}


.experience-cta .cta-content > span {
    color: #0b63ce;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}


.experience-cta .cta-content h2 {
    color: #102a43;

    font-size: 44px;

    line-height: 1.2;

    margin: 15px 0 20px;
}


.experience-cta .cta-content h2 strong {
    color: #0b63ce;
}


.experience-cta .cta-content p {
    color: #667085;

    font-size: 17px;

    margin-bottom: 30px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .stats-container {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .stat-box:nth-child(2) {
        border-right: none;
    }


    .experience-grid {
        grid-template-columns: 1fr;
    }


    .process-container {
        flex-direction: column;

        align-items: center;

        gap: 25px;
    }


    .process-line {
        width: 2px;

        height: 40px;

        margin: 0;
    }

}


@media (max-width: 700px) {

    .experience-hero {
        min-height: 520px;

        padding: 70px 7%;
    }


    .experience-hero-content h1 {
        font-size: 44px;
    }


    .experience-hero-content p {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .experience-stats {
        padding: 0 5%;
    }


    .stats-container {
        grid-template-columns: 1fr 1fr;

        margin-top: -35px;
    }


    .stat-box {
        padding: 25px 10px;
    }


    .stat-box h2 {
        font-size: 26px;
    }


    .stat-box p {
        font-size: 12px;
    }


    .experience-intro {
        padding: 75px 6%;
    }


    .intro-content h2 {
        font-size: 34px;
    }


    .intro-content p {
        font-size: 15px;
    }


    .experience-section {
        padding: 70px 5%;
    }


    .experience-card {
        display: block;
    }


    .experience-card-image {
        min-height: 190px;
    }


    .experience-card-content {
        padding: 25px;
    }


    .experience-cta {
        padding: 75px 7%;
    }


    .experience-cta .cta-content h2 {
        font-size: 34px;
    }

}
