* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: transparent;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

/* NAVBAR */

header {
    background: transparent;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #0b2a5b;
}

.logo span {
    color: #1473e6;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #172033;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #1473e6;
}

/* HERO */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 750px;
}

.small-title,
.section-title {
    color: #1473e6;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #0b2a5b;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #1473e6;
}

.hero p {
    font-size: 19px;
    color: #596579;
    max-width: 680px;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 25px;
    background: #1473e6;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 700;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn.secondary {
    background: transparent;
    color: #1473e6;
    border: 2px solid #1473e6;
}

/* SERVICES */

.services {
    padding: 90px 0;
    background: transparent;
    text-align: center;
}

.services h2,
.about h2,
.contact h2 {
    font-size: 38px;
    color: #0b2a5b;
    margin-bottom: 45px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    padding: 30px 22px;
    background: transparent;
    border: 1px solid #e4edf9;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(20, 115, 230, 0.12);
}

.service-card h3 {
    color: #0b2a5b;
    margin-bottom: 12px;
    font-size: 20px;
}

.service-card p {
    color: #647084;
}

/* ABOUT */

.about {
    padding: 90px 0;
    background: transparent;
    text-align: center;
}

.about p:not(.section-title) {
    max-width: 800px;
    margin: auto;
    color: #596579;
    font-size: 18px;
}

/* CONTACT */

.contact {
    padding: 100px 0;
    text-align: center;
    background: #0b2a5b;
}

.contact .section-title {
    color: #57a0ff;
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact p {
    color: #dce8f8;
    font-size: 18px;
    margin-bottom: 30px;
}
.contact p a {
    color: #ffffff;
    text-decoration: none;
}

.contact p a:hover {
    color: #ffffff;
}
/* FOOTER */

footer {
    background: #071c3b;
    color: #cbd8ea;
    text-align: center;
    padding: 25px;
}

/* MOBILE */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 45px;
    }
}

@media (max-width: 650px) {

    .navbar {
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 17px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 30px;
    }
}
/* Logo Size */
.logo img {
    height: 80px;
    width: auto;
    display: block;
}
/* Mobile Logo */
@media (max-width: 650px) {
    .logo img {
        height: 55px;
        width: auto;
    }
}
@media (max-width: 650px) {
    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .navbar nav a {
        font-size: 14px;
    }
}/* Alam Digital Background Watermark */

body {
    position: relative;
    background: transparent;
}

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;

    background-image: url("images/logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.20;
    transform: translate(-50%, -50%);

    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}
/* ===== POPUP EFFECT FOR EXPERTISE & SERVICES ===== */

.services,
.expertise {
    position: relative;
    z-index: 1;
}

.services .container,
.expertise .container { 
    background: transparent;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 15px 40px rgba(11, 42, 91, 0.15);
    border: none;
}

/* Smooth popup / floating effect */
.services .container,
.expertise .container {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services .container:hover,
.expertise .container:hover {
    transform: translateY(-8px);
    box-shadow: none;
}
.service-icon {
    display: block;
    font-size: 34px;
    color: #1473e6;
    margin-bottom: 14px;
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Website Design & Development */

.website-design {
    padding: 100px 0;
    text-align: center;
    background: transparent;
}

.website-design .section-tag {
    color: #0b2a5b;
    font-weight: 600;
    letter-spacing: 1px;
}

.website-design h2 {
    color: #0b2a5b;
    font-size: 38px;
    margin: 15px 0 20px;
}

.website-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.website-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.website-card {
    padding: 30px 22px;
    background: transparent;
    border: 1px solid #e4edf9;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s ease;
}

.website-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(20, 115, 230, 0.12);
}

.website-card h3 {
    color: #0b2a5b;
    margin-bottom: 12px;
    font-size: 20px;
}

.website-card p {
    color: #555;
    line-height: 1.7;
}
@media (max-width: 768px) {

    .website-grid {
        grid-template-columns: 1fr;
    }

    .website-design h2 {
        font-size: 30px;
    }

    .website-intro {
        font-size: 16px;
    }

}