
    :root{
      --brand:#3a3a3a;
      --muted:#6c757d;
      --card-shadow: 0 10px 30px rgba(18,38,63,0.06);
      --glass: rgba(255,255,255,0.8);
    }
    body{
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:#0b1a2b;
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

.text-primary {
    --bs-text-opacity: 1;
    color: #080808 !important;
}
.btn-primary{
    background-color: #000000;
    border-color: #0d6efd;
}
.btn-outline-secondary{
    color: #000000;
    border-color: #000000;
}
.btn-outline-primary{
    color: #000000;
    border-color: #000000;
}
.btn:hover {
    color: #000000;
    background-color: #f8fbff;
    border-color: #000000;
}
/* Image 50% full height */
.full-size-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Right content */
.text-section {
    background: linear-gradient(145deg, #1a1a1a, #101010);
}

/* Logo */
.logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Headline */  
.title {
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}
.title-xl{
    font-size: 80px;
    font-weight: 700;
    color: #141313;
    letter-spacing: 2px;
}
.title-xl-light{
    font-size: 80px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}
.title-dark {
    font-size: 55px;
    font:700;
    font-weight: 700;
    color: #141313;
    letter-spacing: 2px;
}

/* Subtitle */
.subtitle {
    font-size: 22px;
    color: #d6d6d6;
    margin-top: 10px;
}
.subtitle-dark {
    font-size: 22px;
    color: #4a4a4a;
    margin-top: 10px;
}
/* Date text */
.text-date {
    font-size: 18px;
    color: #bbbbbb;
}

/* Button */
.btn-custom {
    background: #f7f0f0;
    color: #080808;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .title { font-size: 42px; }
    .subtitle { font-size: 18px; }
    .logo-image { width: 55px; height: 55px; }
}

/* Services */
.service {
    background-color: #1a1a1a;
}

.service-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease-in-out;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Overlay section */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0); /* Invisible normally */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background .4s ease-in-out;
}

.service-card:hover .overlay {
    background: rgba(0,0,0,0.8); /* Dark black on hover */
}

.service-title {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.service-desc {
    font-size: 15px;
    color: #ccc;
    margin-top: 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all .4s ease-in-out;
}

/* Animate text on hover */
.service-card:hover .service-title,
.service-card:hover .service-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Key Features */
.key-features {
    background-color: #0a0a0a;
    color: #ffffff;
  
}

.color-f{
    color:#4d8ffe;
}

.feature-list {
    list-style: disc;
    padding-left: 20px;
}

.feature-desc {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;

    /* responsive auto-scaling font size */
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
}

/* Project phases */
/* HORIZONTAL FLEX WRAPPER */
.phase-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* overflow-x: auto;         allows scrolling on mobile */
    padding-bottom: 10px;
}

/* CARD BOX */
.phase-box {
    position: relative;
    background: #2a2a2a;
    border-radius: 20px;
    min-width: 100px;        /* keeps equal size */
    max-width: 100px;        /* prevents stretching */
    height: 100px;           /* equal box height */
    padding: 15px 0px 20px;
    color: white;
    text-align: center;
    flex-shrink: 0;
    transition: transform .3s ease, background .3s ease;
}

/* Hover effect */
.phase-box:hover {
    transform: translateY(-6px);
    background: #333333;
}

/* TOP CIRCLE */
.circle {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Text */
.phase-title {
    font-size: 12px;
    font-weight: bold;
    /* margin-top: 2px; */
}

.phase-desc {
    font-size: 9px;
    margin-top: 10px;
    color: #cccccc;
    line-height: 1.4;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 576px) {

    .phase-box {
        min-width: 170px;
        max-width: 170px;
        height: 220px;
        padding: 20px 15px;
    }

    .phase-title {
        font-size: 16px;
    }

    .phase-desc {
        font-size: 12px;
    }

    .circle {
        width: 15px;
        height: 15px;
        top: -8px;
    }
}


/* success-story */
.success-story{
    background-color: #1a1a1a;
    color:#bbbbbb;
}

/* Next steps */
.next-steps {
    background: #0d0d0d;
    color: white;
}

.full-col {
    height: 100%;
    min-height: 600px; /* ensures full height */
}

.next-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.next-underline {
    width: 200px;
    height: 3px;
    background: #2b69ff;
}

.step-box {
    padding: 25px;
    border-radius: 22px;
    min-height: 50px; /* smaller size */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-box.dark {
    background: #3a3a3a;
}

.step-box.blue {
    background: #1e78ff;
}

.step-box h3 {
    font-size: 14px;
    color: #c8d1ff;
    margin-bottom: 10px;
}

.step-box ul {
    padding-left: 5px;
}

.step-box ul li {
    font-size: 10px;
    color: #eaeaea;
}

/* SMALL DEVICES */
@media (max-width: 768px) {
    .full-col {
        min-height: auto;
        padding-bottom: 30px;
    }

    .next-title {
        font-size: 28px;
    }

    .next-underline {
        width: 130px;
    }

    .step-box {
        min-height: 120px;
        padding: 18px;
    }

    .step-box h3 {
        font-size: 18px;
    }

    .step-box ul li {
        font-size: 12px;
    }
}


/* Get in touch */
.bg-dark {
    background-color: #3a3a3a !important;
}

/* Pill label */
.contact-label {
    display: inline-block;
    background: #ffffff;
    color: #4e7af0;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Value text */
.contact-value {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
}

.contact-value a{
    color: #ffffff;
    text-decoration: none;

}



/* Services Page */
.services-main {
    background-color: #1d293b !important;
}

.services-heading {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
}

.left-img {
    max-height: 350px;
    object-fit: contain;
}

.service-img {
    max-height: 300px;

}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .services-heading {
        font-size: 32px;
        margin-top: 20px;
    }
}


/* Optional glow effect if you don't have an actual icon image */
.glow-icon {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffffff 0%, #2b2f3a 70%);
    border-radius: 50%;
}



/* Services Our Project */
.project-card {
    background: #fff;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.project-card:hover {
    transform: translateY(-5px);
    border-left: 4px solid #0d6efd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.active-card {
    border-left: 4px solid #0d6efd !important;
    background: #f8faff;
    transform: scale(1.02);
}

.service-card {
    cursor: pointer;
    transition: .3s;
    border-radius: 15px;
    background: #fff;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.service-img img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: .4s;
}
.service-card:hover .service-img img {
    transform: scale(1.07);
}

/* career page start */


    /* HERO */
    .hero{
      padding: 4.5rem 0;
    }
    .hero .badge-soft{
      background: rgba(13,110,253,0.08);
      color: var(--brand);
      border-radius: 999px;
      padding: .35rem .8rem;
      font-weight: 600;
      display:inline-flex;
      gap:.5rem;
      align-items:center;
      font-size:.95rem;
    }
    .hero h1{
      font-weight:700;
      letter-spacing:-0.02em;
    }
    .hero .lead { color:var(--muted); }

    /* JOB CARDS */
    .job-card{
      transition: transform .25s ease, box-shadow .25s ease;
      border: 0;
      border-radius: 12px;
      box-shadow: var(--card-shadow);
      background: linear-gradient(180deg, #ffffff, #fbfdff);
      cursor: pointer;
    }
    .job-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(10,30,60,0.08);
    }
    .job-meta{ font-size:.9rem; color:var(--muted); }

    /* FEATURE STEPS */
    .step {
      background: #fff;
      border-radius: .75rem;
      padding:1.25rem;
      box-shadow: 0 8px 20px rgba(18,38,63,0.05);
    }

    /* CTA */
    .cta{
      background: linear-gradient(90deg, rgba(13,110,253,0.06), rgba(13,110,253,0.02));
      border-radius: 12px;
      padding: 2rem;
    }

    /* TEAM */
    .avatar {
      width:72px; height:72px; border-radius:12px;
      object-fit:cover; box-shadow: 0 6px 18px rgba(18,38,63,0.06);
    }

    /* FAQ */
    .accordion-button:not(.collapsed) {
      color: #0b1a2b;
      background: linear-gradient(90deg, rgba(13,110,253,0.03), transparent);
      box-shadow: none;
      font-weight:600;
    }

    footer{
      padding: 3rem 0;
      color: var(--muted);
      font-size:.95rem;
      background-color: #3a3a3a;
    }

    /* Responsive tweaks */
    @media (max-width: 767px){
      .hero{ padding: 3rem 0; text-align:center;}
    }
/* Career page End */


/* Contact page start */
/* Hero */
.hero-contact {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.hero-contact h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-contact .lead { color: var(--muted); }

/* Cards */
.info-card {
  background: #fff;
  padding: 1.3rem;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(10,30,60,0.08);
}

.contact-card {
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

/* Form */
.form-control {
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

/* Map */
#contactMap {
  height: 350px;
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

/* Contact page End */