 body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}
.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: 20px 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: 10px;
            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: 500;          /* 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 */
}



/* 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%;
}

        
        

        .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;
        }


/* CONTACT BANNER */
.contact-banner{
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(5,20,70,0.85), rgba(5,20,70,0.85)), 
                url("banner-bg.jpg");  /* put your background image name here */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-content h1{
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* CONTACT INFO SECTION */
.contact-info{
    padding: 80px 8%;
    background: #f4f4f4;
}

.contact-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-box{
    background: #ffffff;
    padding: 35px 30px;
    width: 320px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-radius: 6px;
    transition: 0.3s;
}

.info-box:hover{
    transform: translateY(-5px);
}

.icon{
    font-size: 28px;
    color: #0d6efd;
    margin-top: 5px;
}

.text h3{
    font-size: 20px;
    margin-bottom: 8px;
    color: #0a1f44;
}

.text p{
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .contact-container{
        flex-direction: column;
        align-items: center;
    }
}

/* MESSAGE HEADER SECTION */
.message-header{
    padding: 80px 8%;
    background: #ffffff;
}

.message-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.small-title{
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.left-content h2{
    font-size: 48px;
    margin-top: 10px;
    color: #0a1f44;
    font-weight: 700;
}

/* RIGHT SIDE */
.right-content{
    max-width: 500px;
}

.right-content p{
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

/* RESPONSIVE */
@media(max-width: 900px){

    .message-container{
        flex-direction: column;
        align-items: flex-start;
    }

    .left-content h2{
        font-size: 36px;
    }

    .right-content p{
        font-size: 16px;
    }


.form-wrapper {
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 40px 20px;
      border-radius: 8px;
      padding: 40px;
      width: 100%;
      max-width: 1100px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    label {
      font-size: 14px;
      color: #333;
      font-weight: 400;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #ddd;
      border-radius: 6px;
      font-size: 15px;
      color: #333;
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
      font-family: inherit;
    }

    input:focus,
    textarea:focus {
      border-color: #2563eb;
    }

    .message-group {
      margin-bottom: 32px;
    }

    textarea {
      resize: vertical;
      min-height: 180px;
    }

    .btn-wrap {
      display: flex;
      justify-content: center;
    }

    button {
      background: #2563eb;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 14px 48px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s;
    }

    button:hover {
      background: #1d4ed8;
    }

    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
    }

#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);
}

.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%;
}


.contact-section {
    padding: 80px 20px;
    background: #f5f6f8;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0066FF;
    box-shadow: 0 0 5px rgba(0, 102, 255, 0.2);
}

.full-width {
    width: 100%;
    margin-bottom: 30px;
}

.form-button {
    text-align: center;
}

.form-button button {
    background: #0066FF;
    color: white;
    padding: 12px 35px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.form-button button:hover {
    background: #004ecc;
}



/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 24px;
    color: #2d7df6;
}

/* Heading */
.contact-box h4 {
    margin: 0 0 10px;
    font-size: 20px;
}

/* Text */
.contact-box p {
    margin: 0 0 8px;
    color: #dcdcdc;
    line-height: 1.6;
}



.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;
}




@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;
    }

}



/* 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;
}









