
   

        :root {
            --primary: #0b4f8a;
            --secondary: #f47c20;
            --dark: #0a2a43;
            --light: #f4f7fb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: var(--light);
            line-height: 1.6;
        }

        /* =========================
   TOPBAR
========================= */

        .topbar {
            background: var(--dark);
            color: white;
            padding: 8px 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: 14px;
        }

        /* =========================
   HEADER
========================= */

        .header {
            background: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2px 20px;
        }

        .menu a.active {
            color: var(--secondary);  
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 80px;
        }

        .logo span {
            font-size: 22px;
            font-weight: bold;
            color: var(--primary);
        }

        .menu {
            display: flex;
            gap: 25px;
        }

        .menu a {
            text-decoration: none;
            color: var(--dark);
            /* font-weight: bold; */
        }

        .menu a:hover {
            color: var(--secondary);
        }

        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
    
       
        
        /* =========================
   FOOTER MAIN
========================= */

.kb-footer {

    background: #0d2b4d;
    color: #fff;
    margin-top: 60px;

}

.kb-footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;

}


/* LOGO */

.kb-footer-logo {

    font-size: 22px;
    margin-bottom: 12px;
}


/* TITLES */

.kb-footer-title {

    font-size: 16px;
    margin-bottom: 15px;

}


/* TEXT */

.kb-footer-text {

    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;

}


/* LINKS */

.kb-footer-links {

    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-footer-links li {

    margin-bottom: 8px;
}

.kb-footer-links a {

    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.kb-footer-links a:hover,
.kb-footer-links a.active {

    color: #4da6ff;
}


/* CONTACT */

.kb-footer-contact div {

    margin-bottom: 10px;
}

.kb-footer-contact strong {

    display: block;
    font-size: 13px;
    opacity: 0.7;
}

.kb-footer-contact span {

    font-size: 14px;
}


/* SOCIAL */

.kb-footer-social {

    margin-top: 15px;
}

.kb-footer-social a {

    display: inline-block;
    margin-right: 8px;
    text-decoration: none;
}

.kb-social-icon {

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.1);
    border-radius: 6px;

    font-size: 14px;
    font-weight: bold;

    transition: 0.3s;
}

.kb-social-icon:hover {

    background: #4da6ff;
}


/* BUTTON */

.kb-footer-btn {

    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;

    background: #4da6ff;
    color: #fff;

    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;

    transition: 0.3s;
}

.kb-footer-btn:hover {

    background: #2e8cff;
}


/* BOTTOM BAR */

.kb-footer-bottom {

    text-align: center;
    padding: 18px;

    border-top: 1px solid rgba(255,255,255,0.1);

    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.kb-footer-bottom a {

    color: #4da6ff;
    text-decoration: none;
}

.kb-footer-separator {

    margin: 0 10px;
    opacity: 0.5;
}


/* MOBILE */
 


    
        @media(max-width:768px) {

            .logo img {
                height: 60px;
            }
            .menu {
                display: none;
                flex-direction: column;
                background: white;
                position: absolute;
                right: 0;
                top: 70px;
                width: 200px;
                padding: 20px;
            }

            .menu.active {
                display: flex;
            }

            .hamburger {
                display: block;
            }

            .hero-content h1 {
                font-size: 28px;
            }



            .kb-footer-container {

                padding: 35px 20px;
                gap: 25px;
            }

        }










/* Services style start */  


.z-services-section {
    padding: 40px 15px;
    background: #f7f9fc;
}

.z-services-container {
    max-width: 1100px;
    margin: auto;
}

.z-services-header {
    text-align: center;
    margin-bottom: 25px;
}

.z-services-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.z-services-subtitle {
    font-size: 14px;
    color: #666;
}

.z-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.z-service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.25s;
    border: 1px solid #eee;
}

.z-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.z-service-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.z-service-body {
    padding: 12px;
}

.z-service-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.z-service-excerpt {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.z-service-btn {
    font-size: 13px;
    color: #0073ff;
    text-decoration: none;
    font-weight: 500;
}

.z-service-btn:hover {
    color: #0056cc;
}


/* Services section */

 

 






/* GRID */
.kb-packages{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* CLICKABLE LINK WRAPPER */
.kb-package-link{
    display:flex;
    text-decoration:none;
    color:inherit;
}

/* PACKAGE CARD */
.kb-package{
    display:flex;
    flex-direction:column;
    width:100%;
    padding:20px;
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.25s;
}

/* HOVER EFFECT */
.kb-package:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* FEATURE LIST SHOULD EXPAND */
.kb-feature-list{
    flex-grow:1;
    margin-top:10px;
}

/* BUTTON ALWAYS AT BOTTOM */
.kb-btn{
    margin-top:auto;
}

/* FEATURED PACKAGE */
.kb-featured{
    border:2px solid #0073ff;
    transform:scale(1.03);
}

/* RESPONSIVE */
@media(max-width:900px){
    .kb-packages{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .kb-packages{
        grid-template-columns:1fr;
    }
}