   body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
      }
      .hero-text span{background: #f16046;
    padding: 10px;
    border-radius: 40px;  

    }
    .hero-text button{background: #f16046;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    box-shadow: 1px 1px 2px 0px #ffffff;}
      .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background:url(../img/service.gif); /* black background */
        color: #fff;


      }
/* Section Base */
.project-section {
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}

/* Sticky Image */
.sticky-image {
  position: sticky;
  top: 10px;
}

.sticky-image img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.sticky-image img:hover {
  transform: scale(1.02);
}

/* Badge */
.badge-soft {
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
}

/* Titles */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.section-title span {
  color: #0d6efd;
}

.section-desc {
  color: #555;
  font-size: 1.05rem;
  max-width: 520px;
}

/* Decision Cards */
.decision-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.point-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.point-card:hover {
  transform: translateY(-4px);
  border-left-color: #0d6efd;
}

.point-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.point-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .sticky-image {
    position: relative;
    top: 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.7rem;
  }

  .point-card {
    padding: 16px;
  }
}
  
      .hero-text h1 {
        font-size: 3rem;
        font-weight: 600;
        line-height: 1.2;
         margin-top:15px;
      }

      .hero-text p {
        font-size: 1.1rem;
        margin-top: 1rem;
        color: #ccc;
      }

      .hero-image {
        position: relative;
      }

      .hero-image img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
      }

      .hero-image span {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(0,0,0,0.7);
        color: #fff;
        padding: 5px 10px;
        font-size: 1rem;
        border-radius: 4px;
        font-weight: 500;
      }

      @media(max-width: 992px){
        .hero-section {
          flex-direction: column;
          text-align: center;
        }

        .hero-image {
          margin-top: 2rem;
        }
      } 
       .hiring-section {
        background-color: #000;
        text-align: center;
        padding: 60px 20px;
      }
      .hiring-section h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
      }
      .hiring-section p {
        color: #aaa;
        margin-bottom: 40px;
      }
      .hiring-cards .card {
        background-color: #111;
        border: 1px solid #333;
        border-radius: 10px;
        padding: 30px 20px;
        transition: transform 0.3s, box-shadow 0.3s;
        color: #fff;
        height: 100%;
      }
      .hiring-cards .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
      }
      .hiring-cards .card i {
        font-size: 2rem;
        margin-bottom: 15px;
      }
      .hiring-cards .card-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
      }
      .hiring-cards .card-text {
        color: #ccc;
        font-size: 0.95rem;
      }
      @media (max-width: 992px) {
        .hiring-cards .card {
          margin-bottom: 20px;
        }
      }
      .faq-section {
        padding: 60px 15px;
      }

      .faq-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 30px;
      }

      .accordion-button {
        font-weight: 500;
      }

      .faq-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
      }

      @media (max-width: 767px) {
        .faq-img {
          margin-bottom: 30px;
        }
      }
      .custom-navbar{
    background:#fff;
    padding:14px 0;
    position:relative;
    z-index:1000;
    overflow:visible;
}
.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
    font-size:22px;
    text-decoration:none;
}
.navbar-brand img{
    height:32px;
}
.nav-link {
    color: #051734 !important;
    font-size: 14px;
    padding: 10px 12px !important;
    white-space: nowrap;
}
.nav-item.dropdown{
    position:relative;
}
.mega-dropdown{
    position:absolute;
    top:100%;
    width:590px;
    max-width:90vw;
    background:#fff;
    border-radius:28px;
    padding:20px 30px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
    display:none;
    z-index:999;
}
/* =========================
   DYNAMIC TEXT (NO JS)
========================= */
.dynamic-text{
    position:relative;
    color:#66b2ff;
    font-weight:600;
}

.dynamic-text::after{
    content:"Market Research";
    animation:changeText 12s infinite;
}
/* =========================
   TEXT ANIMATION
========================= */
@keyframes changeText{
    0%{
        content:"Market Research";
    }
    20%{
        content:"Strategic Consulting ";
    }
    40%{
        content:"Business Intelligence";
    }
    60%{
        content:"Growth Advisory";
    }
    80%{
        content:"Data-Driven Insights";
    }
    100%{
        content:"Market Research";
    }
}

.dynamic-text{
    border-right:2px solid #66b2ff;
    padding-right:6px;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%,50%,100%{border-color:transparent;}
    25%,75%{border-color:#66b2ff;}
}

/* ===============================
   DESKTOP HOVER
================================ */
@media (min-width:992px){
    .nav-item.dropdown:hover > .mega-dropdown{
        display:block;
    }

    /* Default center alignment */
    .nav-item.dropdown .mega-dropdown{
        left:50%;
        transform:translateX(-50%);
    }

    /* First menu – left safe */
    .navbar-nav > .nav-item.dropdown:first-child .mega-dropdown{
        left:0;
        transform:none;
    }

    /* Last two menus – right safe */
    .navbar-nav > .nav-item.dropdown:nth-last-child(-n+2) .mega-dropdown{
        left:auto;
        right:0;
        transform:none;
    }

    /* Prevent horizontal scroll */
    body{
        overflow-x:hidden;
    }
}

/* ===============================
   MEGA MENU ITEMS
================================ */
.mega-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 0;
    font-size:15px;
    font-weight:500;
    color:#1c1c1c;
    cursor:pointer;
    transition:all .2s ease;
}
.mega-item img{
    width:26px;
    opacity:.85;
}
.mega-item:hover{
    color:#0a58ca;
    transform:translateX(2px);
}

/* ===============================
   DROPDOWN ARROW
================================ */
.dropdown-toggle::after{
    transition:transform .3s ease;
}
.dropdown-toggle:focus::after{
    transform:rotate(180deg);
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width:991px){
    .navbar-collapse{
        background:#061c3f;
        border-radius:18px;
        padding:18px;
        margin-top:12px;
    }

    .nav-link{
        padding:12px 10px !important;
    }

    .mega-dropdown{
        position:static;
        width:100%;
        max-width:100%;
        padding:18px;
        margin-top:10px;
        border-radius:16px;
        box-shadow:none;
        display:none;
        transform:none;
    }

    /* Click open – no JS */
    .dropdown-toggle:focus + .mega-dropdown,
    .dropdown-toggle:active + .mega-dropdown{
        display:block;
    }
}
.footer{
  padding:70px 0 30px;
  background:linear-gradient(135deg,#000 60%, #0a3d3f 100%);
}

.footer-logo{
  font-size:26px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-logo span{
  color:#00e5ff;
}

.footer p{
  font-size:14px;
  line-height:1.8;
  color:#cfcfcf;
}

.footer h5{
  font-size:16px;
  font-weight:600;
  color:#00e5ff;
  margin-bottom:15px;
}

.footer ul{
  list-style:none;
  padding:0;
}
.footer ul li{
  margin-bottom:8px;
}
.footer ul li a{
  color:#fff;
  font-size:14px;
  text-decoration:none;
}
.footer ul li a:hover{
  color:#00e5ff;
}

.footer-col{
  border-right:1px solid rgba(255,255,255,0.15);
  padding-right:30px;
}
.footer-col:last-child{
  border-right:none;
}

.subscribe input{
  width:100%;
  padding:12px 15px;
  border-radius:8px;
  border:none;
  outline:none;
  margin-bottom:12px;
}
.subscribe button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:linear-gradient(90deg,#00c6ff,#0072ff);
  color:#fff;
  font-weight:600;
}

.partner-box{
  background:linear-gradient(180deg,#0b3d91,#062f6e);
  border-radius:15px;
  padding:25px;
  margin-top:25px;
  text-align:center;
}
.partner-box h4{
  font-weight:700;
  margin-top:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  margin-top:40px;
  padding-top:15px;
  font-size:13px;
  text-align:center;
}
.footer-bottom a{
  color:#00e5ff;
  text-decoration:none;
}

@media(max-width:991px){
  .footer-col{
    border-right:none;
    padding-right:0;
    margin-bottom:30px;
  }
}
/* Section Background */
.faq-section {
  background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

/* Left Image */
.faq-image-wrapper {
  position: sticky;
  top: 100px;
}

.faq-img {
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.faq-img:hover {
  transform: translateY(-8px);
}

/* Title */
.faq-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1f2d3d;
}

.faq-title span {
  color: #4f46e5;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button {
  background: #ffffff;
  font-weight: 600;
  color: #1f2937;
  padding: 18px 20px;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #4f46e5;
  color: #ffffff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 15px;
  color: #4b5563;
  padding: 18px 20px;
  line-height: 1.7;
}

/* Mobile Fix */
@media (max-width: 991px) {
  .faq-image-wrapper {
    position: relative;
    top: auto;
    margin-bottom: 30px;
    text-align: center;
  }

  .faq-title {
    text-align: center;
  }
}
