body{
            background-color: #f5f3f3;

        }


                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }




.navbar-custom {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 999;
            transition: background-color 0.3s ease, color 0.3s ease;
            background-color: transparent;
            padding: 16px 0;
        }

        .navbar-scrolled {
            background-color: white !important;
        }

        .navbar-nav .nav-link {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            color: black;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .navbar-dark .nav-link {
            color: white !important;
        }

        .nav-link:not(.dropdown-toggle)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: limegreen;
            transition: width 0.3s ease-in-out;
        }

        .offcanvas-custom .nav-link::after {
            display: none;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
        }

        .get-started-btn {
            font-family: 'Manrope', sans-serif;
         
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
         
            color: rgb(254, 253, 253);
            background-color: red;
        }

        .navbar-dark .get-started-btn {
            color: white;
          
        }

        .get-started-btn:hover {
            background-color: rgb(220, 15, 15);
            color: rgb(255, 255, 255);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

      
        .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 0.4rem;
            min-width: 180px;
            z-index: 1000;
        }

        /* Show main dropdown on hover */
        @media (min-width: 992px) {
            .dropdown:hover > .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Submenu container */
        .dropdown-submenu {
            position: relative;
        }

        /* Nested submenu - hidden by default */
        .dropdown-submenu > .dropdown-menu {
            display: none !important;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            left: 100%;
            top: 0;
            margin-top: 0;
            border-radius: 0.4rem;
            z-index: 1001;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            min-width: 180px;
            transition: all 0.3s ease;
        }

        @media (min-width: 992px) {
            .dropdown-submenu:hover > .dropdown-menu {
                display: block !important;
                opacity: 1;
                visibility: visible;
            }
        }


.dropdown-submenu > .dropdown-toggle::after {
    content: ">";
    float: right;
    margin-left: 8px;
    font-size: 0.7rem;
    border: none !important;     
    background: none !important; 
}

        

        .dropdown-item {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border: none;
            background: none;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: limegreen;
            transform: translateX(5px);
        }









        /* Mobile Offcanvas Styles */
        .offcanvas-custom {
            background-color: #000 !important;
            color: white;
            width: 250px;
        }

        .offcanvas-custom .nav-link {
            color: rgb(235, 229, 229);
            font-family: 'Plus Jakarta Sans';
            font-size: 1.5rem;
            transition: 0.5s;
        }

        .offcanvas-custom .nav-link:hover {
            color: rgb(254, 253, 253);
            font-family: 'Plus Jakarta Sans';
            font-size: 1.6rem;
        }

        .offcanvas-custom .get-started-btn {
            color: white;
            border-color: white;
        }

        .offcanvas-custom .get-started-btn:hover {
            background-color: rgb(13, 13, 13);
            color: rgb(250, 247, 247);
        }

        .mobile-dropdown {
            margin-top: 10px;
            margin-left: 0; 
        }

        .mobile-dropdown-item {
            color: rgb(200, 200, 200);
            font-size: 1.2rem;
            padding: 8px 0;
            display: block;
            text-decoration: none;
            transition: all 0.3s ease;
            padding-left: 0;
        }

        .mobile-dropdown-item:hover {
            color: limegreen;
            transform: translateX(10px);
        }
.mobile-dropdown-toggle {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


#mainDropdown .mobile-sub-dropdown {
    margin-left: 10px;
    margin-bottom: 10px;
    
}



.mobile-sub-dropdown .mobile-dropdown-toggle {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.mobile-sub-dropdown .mobile-dropdown-content {
    margin-left: 15px;
    padding-left: 10px;
    border-left: 2px solid #b8b4b4;
        max-height: auto; 
    overflow-y: auto; 
}




        .mobile-dropdown-toggle i {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-content.active {
            max-height: none;
        }

        .btn-close {
            filter: invert(1);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .nav-logo {
                width: 60px;
                height: 60px;
                object-fit: contain;
                border-radius: 50%;
                margin-left: 10px;
            }
        }










.case-study-header {
    background: linear-gradient(135deg, #ffffff 0%, #d0e7ff 100%);
    background-size: cover;
    background-position: center;
    color: rgb(8, 8, 8);
    text-align: center;
    padding: 100px 20px; 
    margin-bottom: 100px;
    position: relative; 
    z-index: 1;
    padding-top: 150px;
}



.case-subhead h1{
     font-size: clamp(1rem, 3vw, 2.4rem);

    font-family: 'Montserrat', sans-serif;
            font-weight: 700;

}

.case-study-header h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    /* font-weight: 700; */
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
                                                   font-family: 'Montserrat', sans-serif;
            font-weight: 800;
    margin-bottom: 30px;
}

.case-study-header p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-family: 'Rubik', sans-serif;
}

.img-container {
  position: relative;
  z-index: 2;
  margin-top: -150px; /* Adjust as needed */
}

.img-wrapper {
  width: 100%;
  height: 700px; 
   /* height: clamp(300px, 20vw, 800px); */

  overflow: hidden;
  /* border-radius: 12px;  */
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width:796px) {

  .img-wrapper {
  width: 100%;
  height: 400px; 
   /* height: clamp(300px, 20vw, 800px); */

  overflow: hidden;
  /* border-radius: 12px;  */
}
  
}


@media (max-width:496px) {

  .img-wrapper {
  width: 100%;
  height: 200px; 
   /* height: clamp(300px, 20vw, 800px); */

  overflow: hidden;
  /* border-radius: 12px;  */
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
  
}


























 .case-metrics {
      background-color: #f2f4f5;
      padding: clamp(10px, 8vw, 100px) clamp(16px, 5vw, 40px);

      /* border-radius: 8px; */
      margin: 40px auto;
            font-family: 'Rubik', sans-serif;
    }

    .case-metrics .description{
        font-size: 1.2rem;
        line-height: 40px;
        margin-bottom: 40px;
    }

    .metric {
      text-align: center;
      border-right: 1px solid #d1d1d1;
    }

    .metric:last-child {
      border-right: none;
    }

    .metric-value {
      font-size: 2rem;
      /* font-weight: 700; */
      color: #0c1b36;
                                                     font-family: 'Montserrat', sans-serif;
            font-weight: 800;
    }

    .metric-label {
      margin-top: 5px;
      font-weight: 500;
      color: #ff0066;
    }

    .services-label,
    .industries-label {
      font-weight: 700;
      margin-bottom: 10px;
      color: #0c1b36;
    }

    .pill {
      display: inline-block;
      background-color: white;
      color: #0c1b36;
      padding: 5px 15px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 500;
      margin: 5px 5px 0 0;
      border: 1px solid #ddd;
    }

    @media (max-width: 767.98px) {
      .metric {
        border-right: none;
        margin-bottom: 20px;
      }
    }













    .about-section {
      color: #0c1b36;
      font-family: 'Rubik', sans-serif;
  padding-left: clamp(16px, 8vw, 150px);
  padding-right: clamp(16px, 8vw, 150px);
  padding-top: 60px;
  padding-bottom: 60px;
    }

    .section-heading {
      /* font-family: 'Plus Jakarta Sans', sans-serif; */
      /* font-weight: 700; */
                                                     font-family: 'Montserrat', sans-serif;
            font-weight: 700;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: #0c1b36;
      margin-bottom: 20px;
    }

    .section-heading .dot {
      color: #ff0066;
    }

    .section-text {
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .section {
      margin-bottom: 60px;
    }

    @media (max-width: 576px) {
      .section-heading {
        text-align: center;
      }

      .section-text {
        text-align: justify;
      }
    }


    /* .image-container{
      margin-top: 10px;
    } */

















      .section-title {
      /* font-family: 'Plus Jakarta Sans', sans-serif; */
      font-size: 3rem;
                                                     font-family: 'Montserrat', sans-serif;
            /* font-weight: 800; */
      font-weight: 700;
      color: #001333;
      text-align: center;
    }

    h2.section-title span {
      color: #e70084;
    }

    .section-description {
      max-width: 650px;
      margin-top: 10px;
      font-size: 1.1rem;
      line-height: 35px;
    }



    .case-study-card {
            /* background: white; */
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
            margin-bottom: 80px;
            gap: 80px;
        }

        .case-study-card:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
            text-decoration: none;
            color: inherit;
        }

        .card-image {
            width: 100%;
            height: 250px;
            
            position: relative;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 25px;
        }

        .card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: black;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .card-description {
            font-family: 'Rubik', sans-serif;
            font-size: 17px;
            color: #333;
            line-height: 1.9;
            margin: 0;
        }



        @media (max-width: 900px) {
            .case-study-card {
                margin-bottom: 45px;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .card-title {
                font-size: 22px;
            }
            
            .card-description {
                font-size: 15px;
            }
        }

        @media (max-width: 576px) {
            .case-study-container {
                padding: 0 15px;
            }
            
            .card-content {
                padding: 18px;
            }
            
            .card-title {
                font-size: 20px;
            }
            
            .card-description {
                font-size: 14px;
            }
            .section-title{
              font-size: 2.4rem;
            }
        }













              
/* footeerrr? */




    footer {
      padding-top: 40px;
      background-color: #000000;
      
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: end;
      gap: 50px;
      flex-wrap: wrap;
    }

    .footer-nav li a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .footer-nav li a:hover {
      color: #fff;
    }

    .footer-line {
      border-top: 1px solid #444;
      margin: 60px 0;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #ccc;
      text-align: left;
    }

    .footer-icons {
      text-align: right;
    }

    .footer-icons a {
      display: inline-block;
      margin-left: 15px;
      color: #ccc;
      font-size: 1rem;
      border: 1px solid #555;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      transition: all 0.3s;
    }

    .footer-icons a:hover {
      color: white;
      border-color: white;
    }

    .footer-copy {
      text-align: left;
      font-size: 0.85rem;
      color: #FFFFFF;
      margin-top: 10px;
      padding-bottom: 20px;
      font-weight: 400;
    }

    @media (max-width: 576px) {
      .footer-text,
      .footer-icons {
        text-align: center;
      }

      .footer-icons a {
        margin-left: 10px;
        margin-right: 10px;
      }
    }

    @media (max-width:769px) {
        .footer-nav{
            justify-content: center;
            gap: 20px;
        }

            .footer-nav li a {
      
      font-size: 0.80rem;
      transition: color 0.3s;
    }

    @media (max-width: 576px) {
  .footer-copy {
    text-align: center;
  }
    }}







    

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.service-pill {
  flex: 1 1 calc(50% - 10px); 
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}


.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}



@media (max-width: 575.98px) {
  .service-pill {
    flex: 1 1 calc(50% - 10px);
      padding: 10px 10px;
 
  }
}

.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}








.modal-header .btn-close {
  filter: none; 

  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}








.contact-box {
  max-width: 550px; 
  margin: 40px auto; 
  padding: 40px 30px; 

 

  transition: all 0.3s ease-in-out;
  font-size: 1rem; 
  font-family: 'Montserrat', sans-serif;
}

.form-step h1 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2rem;

}


.form-control,
.form-select {
  border-radius: 24px;
  padding: 12px 20px; /* Less padding inside inputs */
  font-size: 0.95rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #ccc;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}



textarea.form-control {
  resize: none;
}

.btn-custom {
  border-radius: 30px;
  padding: 18px 20px;
  font-weight: bold;
  font-size: 1.125rem; 
  background-color: #fb0303;
  color: white;
  border: none;

  width: 100%;
  transition: background-color 0.4s, color 0.4s, transform 0.3s;
  margin-top: 20px;
}

.btn-custom:hover {
  background-color: #fbf9f9;
  color: #000;
  transform: translateY(-2px);
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 4%;
  margin-top: 40px;
}

.single {
    display: flex;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}


@media (max-width: 413px) {
    .service-pill {
  
      padding: 7px 7px;
      font-size: 10px;
 
  }


}

@media (max-width: 576px) {
  .contact-box {
    padding: 30px 50px; 
    margin: 20px auto;
    border-radius: 12px;
    font-size: 0.9rem; 
  }

  .form-step h4 {
    font-size: 1.4rem; 
    margin-bottom: 20px;
  }

  .form-control,
  .form-select {
    padding: 10px 16px; 
    font-size: 0.9rem;
    border-radius: 20px;
  }

  textarea.form-control {
    height: 100px; 
  }

  .btn-custom {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .btn-container {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .btn-container.single {
    justify-content: center;
  }
}

