 body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.top-bar {
    background-color: #162544; /* dark blue */
    color: #ffffff;
    padding: 12px 0;
    font-size: 15px;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left, .center {
    color: #dcdcdc;
}

.right a {
    color: #dcdcdc;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.right a:hover {
    color: #ffffff;
}

 /* Navigation */
        .navbar {
            background: white;
            padding: 18px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: bold;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
            margin-right: 156px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .logo-text span:first-child {
            color: var(--text-dark);
        }

        .logo-text span:last-child {
            color: var(--primary-blue);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .nav-menu a {
             text-decoration: none;
    font-weight: 700;          /* Bold */
    font-size: 16px;
    color: #2c3e50;            /* Dark grey */
    letter-spacing: 1px;       /* Space between letters */
    transition: 0.3s ease;
}
        

       .nav-menu a:hover {
    color: #0066FF;            /* Blue on hover */
}

        .cta-button {
    background: var(--primary-blue);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
        }

        .cta-button:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
        }
.projects-banner {
    position: relative;
    height: 200px;
    background: linear-gradient(rgba(8,18,60,0.85), rgba(8,18,60,0.85)),
                url("your-background-image.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Title */
.projects-banner h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

/* Small floating settings icon (left side) */
.settings-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #2b78ff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.projects-section {
    position: relative;
    padding-bottom:30px;
    background: #f4f4f4;
    text-align: center;
    overflow: hidden;
}

/* Network background image on right */
.projects-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url("your-network-image.png") right center no-repeat;
    background-size: cover;
    opacity: 0.5;
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Small blue title */
.small-title {
    color: #1e63ff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Main Heading */
.projects-section h4 {
    font-size: 35px;
    font-weight: 700;
    color: #0f1b3d;
    line-height: 1.3;
    margin: 0;
}

/* SECTION */
.case-study{
    position:relative;
    padding:50px 8% 60px 8%;
    background:white;
    overflow:hidden;
}

/* NETWORK BACKGROUND (TOP RIGHT) */
.case-study::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:45%;
    height:50%;
    background:url("your-network-image.png") no-repeat top right;
    background-size:contain;
    opacity:0.4;
}

/* CONTAINER */
.container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */
.left-content{
    flex:1;
}

.left-content h3{
    font-size:26px;
    color:#0f1b3d;
    margin-bottom:25px;
    line-height:1.2;
}

.left-content p{
    font-size:5px;
    text-size:3px;
    color:#444;
    line-height:1.9;
    margin-bottom:20px;
}

/* RIGHT IMAGE */
.right-image{
    flex:1;
    text-align:right;
}

.right-image img{
    max-width:100%;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:992px){
    .container{
        flex-direction:column;
        text-align:center;
    }

    .right-image{
        text-align:center;
    }

    .case-study::after{
        display:none;
    }
}

/* SECOND CASE STUDY STYLE */
.alt-case{
    background:white;
    padding:60px 8%;
}

/* FLEX LAYOUT */
.alt-case .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT IMAGE */
.left-image{
    flex:1;
}

.left-image img{
    width:100%;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* RIGHT CONTENT */
.right-content{
    flex:1;
}

.right-content h2{
    font-size:35px;
    color:#0f1b3d;
    margin-bottom:25px;
    line-height:1.2;
}

.right-content p{
    font-size:13px;
    color:#444;
    line-height:1.8;
    margin-bottom:20px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .alt-case .container{
        flex-direction:column;
        text-align:center;
    }
}

/* KU TAXI SECTION */
.ku-case{
    background:white;
    padding:60px 8%;
}

/* FLEX LAYOUT */
.ku-case .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */
.left-content{
    flex:1;
}

.left-content h2{
    font-size:42px;
    color:#0f1b3d;
    margin-bottom:25px;
    line-height:1.2;
}

.left-content p{
    font-size:17px;
    color:#444;
    line-height:1.8;
    margin-bottom:20px;
}

/* RIGHT IMAGE */
.right-image{
    flex:1;
    text-align:right;
}

.right-image img{
    width:100%;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:992px){
    .ku-case .container{
        flex-direction:column;
        text-align:center;
    }

    .right-image{
        text-align:center;
    }
}

/* ENGLISH TAXI SECTION */
.english-case{
    background:white;
    padding:60px 8%;
}

/* FLEX LAYOUT */
.english-case .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT IMAGE */
.left-image{
    flex:1;
}

.left-image img{
    width:100%;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* RIGHT CONTENT */
.right-content{
    flex:1;
}

.right-content h2{
    font-size:42px;
    color:#0f1b3d;
    margin-bottom:25px;
    line-height:1.2;
}

.right-content p{
    font-size:17px;
    color:#444;
    line-height:1.8;
    margin-bottom:20px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .english-case .container{
        flex-direction:column;
        text-align:center;
    }

    .right-content{
        margin-top:30px;
    }
}

.taxi-section {
    padding: 80px 10%;
    background: white;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.left-content {
    flex: 1;
}

.left-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0b1b34;
    margin-bottom: 25px;
    line-height: 1.2;
}

.left-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.right-content {
    flex: 1;
}

.right-content img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.project-section {
    padding: 80px 10%;
    background: #fff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.content {
    flex: 1;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .content h1 {
        font-size: 36px;
    }
}

.project-section {
    padding: 80px 10%;
    color:white;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Image Side */
.image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image img {
    width: 320px;
    max-width: 100%;
}

/* Content Side */
.content {
    flex: 1.3;
}

.content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 22px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .content h1 {
        font-size: 36px;
    }

    .image img {
        width: 260px;
    }
}

.project-section {
    padding: 80px 8%;
    position: relative;
    color:white;
}

/* Optional subtle background effect */
.project-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    background: url('images/network-bg.png') no-repeat left bottom;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.content {
    flex: 1.1;
}

.content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 22px;
    line-height: 1.8;
}

.image {
    flex: 1;
}

.image img {
    width: 70%;
    height: 200px;        
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .content h1 {
        font-size: 36px;
    }
}


/* First Section Image */
.project-one .image img {
    width: 600px;
    height: 300px;
    object-fit: contain;
}

/* ===== Container Layout ===== */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ===== Section 2 Layout ===== */
.project-two .content {
    flex: 1;
}

.project-two .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Section 2 Image ===== */
.project-two .image img {
    width: 60%;        /* smaller width = shorter height */
    height: 500px;      /* 🔥 control height here */
        /* Maintain aspect ratio */
    display: block;
}
/* Third Section Image */
.project-three .image img {
    width: 600px;
    height: 250px;
    object-fit: contain;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0066FF;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #004ccc;
    transform: scale(1.1);
}

/* ===== CTA Banner Section ===== */
.cta-banner {
    background: linear-gradient(90deg, #1f4ed8, #3b82f6);
    padding: 50px 10%;
}

/* Container */
.cta-banner .container {
    max-width: 1200px;
    margin: auto;
}

/* Content Layout */
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
   
}

/* Title */
.cta-title {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
     margin: 0; 
    
}

/* Button */
.cta-btn {
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap; 
}



/* Button Hover */
.cta-btn:hover {
    background: #ffffff;
    color: #1f4ed8;
}




.footer {
    position: relative;
    background: linear-gradient(to bottom, #2c3e64, #0f1b35);
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Globe Effect */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 15px 15px;
    border-radius: 50%;
    opacity: 0.15;
}

.footer::before {
    left: -150px;
    bottom: 50px;
}

.footer::after {
    right: -150px;
    bottom: 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 10%;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 300px;
}

.footer-box {
    display: flex;
    gap: 15px;
    max-width: 280px;
}

.icon-circle {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;   /* 🔥 Important */
}
.icon-circle i {
    color: #fff;
}

.icon-circle:hover {
    background: #007bff;
    transform: translateY(-5px);
}

.footer-box h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 5px;
}

.footer-middle {
    padding: 60px 10%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-middle h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-middle p {
    max-width: 700px;
    line-height: 1.8;
    color: #dcdcdc;
}

.footer-bottom {
    text-align: center;
    padding: 25px 10%;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Scroll Button */
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    display: none;
}

.scroll-top:hover {
    background: #007bff;
    color: #fff;
}








.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Hover effect */
.nav-menu a:hover {
    color: #0066FF;
    font-weight: 500; /* Bold hone se rokega */
}

/* Free Consulting Button */
.cta-button {
    background: #0066FF;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.cta-button:hover {
    background: #004ecc;
    color: #fff !important;
}}

.nav-menu a:hover::after {
    width: 100%;
}






















































#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #f1f1f1;
    color: #1e5eff; /* Blue Arrow */
    font-size: 26px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Hover Effect */
#scrollTopBtn:hover {
    background: #1e5eff;
    color: #fff;
    transform: translateY(-5px);
}


















@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}



@media (max-width: 768px) {

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .left, .center {
        width: 100%;
    }

    .right {
        margin-top: 5px;
    }

}


@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

}












.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;   /* Make sure visible color ho */
    z-index: 1000;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
    }

    .nav-links.active {
        display: flex;
    }
}







