@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
 
  :root{
    --orange:#FF8C00;
    --blue:#000957;
    --light-black: #333;
    --light-white: #f7f7f7;
    --light-red: #e30003;
    --light-grey: #f6f9fa;
    --light-grey-2: #dddddd;
    --white: #fff;
    --yellow: #fbde02;
    --grey: #757575;
    --brown: #6f5e4d;
    --bg-coffee:#642f21;
  }
  body,html{
    /* background-color: #e7f3f5; */
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  @media(max-width: 992px){
    body,html{
      font-size: 0.875rem;
    }
  }
  
  /* headign tags */
  h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
  }
  p{
    font-size: 1rem;
    font-weight: 450;
    word-spacing: 3px;
      color: #183153;
      font-family: 'Poppins', sans-serif;
  }
  
  
  /* Anchor Tag */
  a{
    color: var(--light-white);
    list-style: none;
    text-decoration: none;
    --webkit-transition: all 400ms ease-in-out;
    --moz-transition: all 400ms ease-in-out;
    --o-transition:all 400ms ease-in-out;
    --ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
  
  }
  
  /* custom scrollbar */
  ::-webkit-scrollbar{
    width:7 px;
  }
  ::-webkit-scrollbar-track{
    background: #e65656;
  }
  ::-webkit-scrollbar-thumb{
    background: var(--light-red);
  }
  
  /* button hover */
  .order_now:hover,
  .order_now:focus{
  color: var(--white);
  background-color: transparent;
  border-color: var(--white);
  }
  
  .btn-red{
    color: var(--white);
    background: var(--light-red);
    border-color: var(--light-red);
  }
  .btn-red:hover,
  .btn-red:focus{
    color: var(--light-red);
    background: transparent;
    border-color: var(--light-red);
  }
  

  .section2{
    background-image: url('../images/nav2.png'); /* Replace with your image URL or path */
    background-size: cover; /* Ensure the image covers the entire navbar */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating of the image */
  }
  
  
  @keyframes stickyTransition {
    0%{
      opacity: 0;
      -webkit-transform: translate3d(1. -100%, 0);
      transform: translate3d(1, -100%, 0);
    }
    100%{
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .heading-color1{
    color: #ff6600;
  }
  .heading-color2{
    color: #000957;
  }
  .section-bg1{
    background-color: #edd8d8;
  }
  h1{
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 3rem;
  
  }
  h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5rem;
  }
  
  li{
    list-style: none;
  }
  
  .logo1{
    width: 80%;
  }
  



.bg-blu-pri {
    background: #ffff;
}

.btn-blu-sec {
    background: #3230c1;
    color: #FFF9D0;
    font-size: 18px;
    font-weight: 600;
    padding: .4rem 1.8rem;
    border-radius: 20px;
    border: 4px solid #FFF9D0;
    transition: .3s ease-in-out;
}

.btn-blu-sec:hover {
    background: #4637f5;
    transform: scale(.9);
}

.bg-blue-sec {
    background: #ffc107eb;
    font-weight: 700;
    color: darkcyan;
}

.logo {
    height: 4rem;
}

.service-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

@media screen and (max-width : 798px) {
}

.carousel-bg {
    position: relative;
}

.carousel-bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
}

.hero-div {
    color: rgb(0, 69, 69);
    position: relative;
    background: url("../images/NDCI-banner1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
}

.hero-div::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(174, 218, 231, 0.7);
}

.hero {
    margin-top: 10px;
    /* margin-bottom: 50px; */
}

.hero-con {
    height: 100%;
    padding: 80px 80px;
    display: flex;
    text-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
}

.typewriter h3 {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    text-align: start;
    margin: 0 auto;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

.hero-con p {
    font-weight: 600;
}

.hero-icon {
    color: red;
    padding-right: 10px;
    padding-left: 10px;
}

.hero-img {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img img {
    width: auto;
    height: 32rem;
    filter: drop-shadow(1px 10px 2px rgba(0, 0, 0, 0.4));
}
.info-card {
    position: relative;
    top: -2rem;
    background: linear-gradient(135deg, #000957, #3230c1); /* Gradient using dark blue */
    color: #fff;
    margin: 1px 35px;
    padding: 20px 10px;
    border: 2px solid #FF8C00; /* Orange border */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(255, 255, 255, 0.1); /* Outer and inner shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.info-card:hover {
    transform: translateY(-10px); /* Lift the card on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.2); /* Enhanced shadow on hover */
}

.info-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FF8C00; /* Orange color for the number */
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #edd8d8; /* Light pinkish color for the text */
}

.info-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(0, 9, 87, 0.1)); /* Subtle gradient overlay */
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.info-card:hover::before {
    opacity: 1; /* Show the gradient overlay on hover */
}


.info-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 2px 2px 5px #fff, 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    ;
}

.about-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img video {
    width: 100%;
    /* height: 80%; */
    /* transform: rotateY(180deg); */
}

.services-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.heading {
    font-size: 26px;
    color: #222;
    margin-bottom: 30px;
}

.highlight {
    color: #ff6600;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #666;
}

.ser-ben {
    position: relative;
    background: url(../images/banner2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 16px auto;
    padding-top: 20px;
    padding-left: 20px;
}

.ser-ben::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
}

.contact-sec {
    height: 100%;
}

.contact-sec h4 {
    align-content: center;
    font-size: 30px;
    height: 20%;
    padding: 40px 2px 40px 2px;
}

.contact-sec ul {
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.grow-con {
    position: relative;
    z-index: 3;
}

.grow-con h2 {
    font-size: 50px;
    font-weight: 700;
}

.help-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    height: 40svh;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    margin: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.help-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
}
.help-img img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    filter: brightness(1.2);
}
.help-card:hover .help-img img {
    transform: scale(1.1);
}
.help-card h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}
.help-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}
.help-img {
    position: relative;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 4;
}

.help-img img {
    position: absolute;
    width: 50px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 5;
}



.tech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    margin: 30px 5px;
}

.tech {
    width: 40%;
    height: 8rem;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    transition: .3s ease-in;
}

.tech img {
    width: 40%;
    height: 50%;
    margin: auto;
}

.tech:hover {
    transform: scale(1.1);
}

.testimonial-sec {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: relative;
    padding: 20px 2px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid #ccc;
    border-radius: 12px;
    text-align: center;
}

.test-quote {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 50px;
    color: #aedae7;
}

.testi1-img {
    background: url(../images/testimonal/test1.jfif);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.testi2-img {
    background: url(../images/testimonal/test2.jfif);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.review-star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-star i {
    color: #FFD700;
    font-size: 14px;
}

.clinet-sec {
    width: 80%;
    height: 4rem;
    padding: 2px 10px;
    /* background: #fff; */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinet-sec img {
    width: 80%;
    height: auto;
}

footer {
    text-align: start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: start;
}

.social-link p {
    border: 2px solid #a3a3a3;
    width: 18px;
    height: 18px;
    font-size: 18px;
    padding: 18px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.social-link p:hover {
    border: 2px solid #fff;
}

.social-link p:hover .fb {
    color: #1877F2;
}

.social-link p:hover .tw {
    color: #1DA1F2;
}

.social-link p:hover .yt {
    color: #FF0000;
}

.social-link p:hover .ig {
    background: -webkit-linear-gradient(rgba(98, 40, 215, 1) 0%, rgba(238, 42, 123, 1) 50%, rgba(249, 206, 52, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-ser li {
    list-style: none;
}

.footer-ser li a {
    text-decoration: none;
    color: #a3a3a3;
}

.footer-ser li a:hover {
    color: #fff;
}

.banner {
    position: relative;
    z-index: 1;
    background: url(../images/digital-framework-featured-image.png);
    background-size: contain;
    background-position: center;
    overflow: hidden;
    height: 40vh;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: right; */
}

.breadcrumb>li {
    color: #fff;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.banner::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    top: 0;
    left: 0;
}

.banner-cont {
    position: relative;
    z-index: 8;
    width: 100%;
    height: 100%;
    bottom: 0;
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    color: #fff;
}

.banner-cont h4 {
    position: relative;
    top: 80%;
    font-size: 28px;
}

.banner img {
    width: 100vw;
    height: auto;
}

.rel-ser-container {
    background: #002379;
    border-radius: 12px;
    color: #fff;
}

.rel-ser-container h4 {
    text-align: center;
    padding-top: 8px;
}

.rel-ser {
    padding-bottom: 12px;
    height: 10rem;
    overflow: auto;
}

.rel-ser::-webkit-scrollbar {
    width: 8px;
}

.rel-ser::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 10px;
}

.rel-ser::-webkit-scrollbar-thumb {
    background: #3230c1;
    border-radius: 10px;
}

.rel-ser p {
    border-bottom: 1px solid #fff;
    padding-left: 15px;
}

.rel-ser a {
    text-decoration: none;
    color: #fff;
}

.contact-head {
    font-size: 50px;
    font-weight: 700;
}

.page-breadcrumb {
    position: relative;
    left: 8px;
}

.loc-con {
    margin: 3rem auto;
    width: 95vw;
    position: relative;
}

.loc-con::before {
    position: absolute;
    content: '';
    left: 0;
    width: 20vw;
    height: 100%;
    z-index: 5;
    background: rgb(121, 121, 121);
    background: linear-gradient(90deg, rgba(121, 121, 121, 1) 0%, rgba(0, 0, 0, 0) 20%);

}

.loc-con::after {
    position: absolute;
    content: '';
    right: 0;
    width: 20vw;
    height: 100%;
    z-index: 5;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 80%, rgba(121, 121, 121, 1) 100%);
}

.con-cont {
    padding: 3rem;
    height: 100%;
    /* font-weight: 600; */
    /* font-size: 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.ser-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ser-img img {
    height: 250px;
}

.ser-con {
    line-height: 2rem;
}

.contact-form-sec {
    /* padding: 10px 1px; */
    margin-top: 3rem;
    background: url(../images/contact-us.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form {
    width: 80%;
    margin: 30px auto;
    /* padding: 25px; */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.contact-form label {
    color: #fff;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.8);
}

footer {
    padding-top: 20px;
    background: #000;
    color: #fff;
}


.heading-h2 {
    color: #5d6cf9;
    font-weight: 600;
    font-size: 42px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.heading-h2-sec {
    color: #fff;
    font-weight: 600;
    font-size: 42px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.client-bg {
    position: relative;
    /* background: #f3f3f3; */
    background: url(../images/cli-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 20rem;
}

.client-container {
    position: relative;
    height: 100%;
    bottom: 20%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.loader-container {
    position: fixed;
    z-index: 98;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
}

.loader {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-right-color: red;
    border-radius: 50%;
    animation: load 1s linear infinite;
}

.loaded .loader-container {
    display: none;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100vw;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
}

.popup-form {
    position: relative;
    z-index: 51;
    width: 90vw;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 1);
    border-radius: 7px;
    border: 3px solid #1DA1F2;
}

.popup-form input,
.popup-form textarea {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 5px;
    background: #fff;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;

}

.closebtn {
    position: absolute;
    z-index: 52;
    /* color: #FFFAE6; */
    border-radius: 50%;
    font-size: 25px;
    color: #ff3434;
    padding: 10px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.con-form {
    background: #343434;
    color: #fff;
    padding: 50px;
}

.form-c input,
.form-c textarea {
    border: none;
    border-bottom: 2px solid #5AB2FF;
    margin-bottom: 5px;
    padding: 7px;
    width: 100%;
    background: transparent;
    outline: none;
    color: #fff;
}

.h-con {
    color: #1DA1F2;
    font-size: 30px;
}

.form-c input::placeholder,
.form-c textarea::placeholder {
    color: #5ab2ff75;
    font-size: 14px;
}

.form-c input {
    margin: 0;
}

.form-c textarea {
    height: 100%;
}

.footer-ser {
    padding: 0;
}

.job-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.job-form {
    border-radius: 12px;
    overflow: hidden;
}

.job-form h3 {
    background: #3230c1;
    color: #fff;
    padding: 20px 2px;
}

.file-info {
    color: #646464;
    font-size: 10px;
}

@media screen and (min-width: 580px) {
    .popup-form {
        width: 40vw;
        padding: 50px 20px;
    }
}


@media screen and (min-width: 768px) {

    .tech {
        width: 30%;
    }
}

@media screen and (min-width: 999px) {
    .service-card {
        margin: 50px auto;
    }

    .tech {
        width: 9%;
    }

    .tech img {
        width: 60%;
        margin: auto;
    }
}



@keyframes load {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}

/* buttons ndci */
/* From Uiverse.io by Creatlydev */ 
.button_ndci {
    line-height: 1;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35em;
    padding: 0.75em 1em;
    padding-right: 1.25em;
    color: #fff;
    border: 1px solid transparent;
    font-weight: 700;
    border-radius: 2em;
    font-size: 1rem;
    /* box-shadow: 0 0.7em 1.5em -0.5em hsla(249, 62%, 51%, 0.745); */
    transition: transform 0.3s;
  
    background: linear-gradient(
      90deg,
      rgb(236, 121, 45) 0%,
      rgb(250, 101, 2) 100%
    );
  }
  
  .button__icon {
    width: 1.5em;
    height: 1.5em;
  }
  
  .button_ndci:hover {
    border-color: #f4f5f2;
    color:#fff;
  }
  
  .button_ndci:active {
    transform: scale(0.98);
    box-shadow: 0 0.5em 1.5em -0.5em hsla(249, 62%, 51%, 0.745);
  }
  
    .btn-orange {
    background-color: #FFA500; /* Orange */
    color: white;
    border-color: #FF8C00; /* Darker orange for border */
  }
  .btn-orange:hover {
    background-color: #FF8C00; /* Darker orange on hover */
    color: white;
  }

  /* serices business */
  .businesses-serve {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.highlight {
    color: #ff6600;
}

.service-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.service-box .icon {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-box h5 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}


/* VIDEO SECTION  */
/* Hero Section Overlay */
/* .overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
} */

/* Button Styling */
.btn-ndci {
    background-color: #ff6600;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    border-radius: 25px;
    padding:10px 15px;
}

.btn-ndci:hover {
    background-color: #fff;
    color: var(--orange);
    border:2px solid var(--orange);
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1.2s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 1.5s ease-out;
}

/* OVER ADVANCE 00 */

/* Tech Container */
.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 30px;
}

/* Tech Box Styling */
.tech {
    background: rgba(255, 204, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 140px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.tech:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 204, 0, 0.3);
}

/* Tech Icons */
.tech img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.tech:hover img {
    transform: scale(1.1);
}

/* Tech Name */
.tech p {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}


/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f5e6e0 0%, #e8cfc4 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Background Decoration */
.testimonial-section::before,
.testimonial-section::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-section::before {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
}

.testimonial-section::after {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 8%;
}

/* Dotted Pattern */
.testimonial-section .pattern {
    position: absolute;
    background-image: radial-gradient(#ffffff 12%, transparent 12%);
    background-size: 12px 12px;
    width: 250px;
    height: 250px;
    opacity: 0.5;
}

.pattern-1 {
    top: 30px;
    left: 50px;
}

.pattern-2 {
    bottom: 50px;
    right: 70px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Profile Image */
.testi-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffcc00;
}

/* Text Styling */
.testimonial-content h5 {
    font-size: 1.2rem;
    font-weight: bold;
}

.role {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

/* Star Rating */
.review-star {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Owl Carousel Fix */
.testimonial-carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden; /* Ensures smooth scrolling */
}

#testimonial-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Push it behind the testimonials */
}
.testimonial-section {
    position: relative; /* Ensure particles stay inside */
    overflow: hidden;
}


  /* Beautiful Stats Section */
  .stats-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    position: relative;
    overflow: hidden;
  }

  .stats-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
  }

  .stats-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
  }

  .elegant-stats-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .elegant-stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(-150deg, #000957b2, #FF8C00);   
     border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .stat-icon {
    color: white;
    font-size: 30px;
  }

  .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2c3e50, #4a6491);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
  }

  .stat-title {
    color: #6c757d;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
  }

  .stat-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg,  #000957, #FF8C00);
        border-radius: 3px;
  }

  .stat-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(150deg,  #000957, #FF8C00);
        border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  /* Counter Animation */
  .counter {
    display: inline-block;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .stat-number {
      font-size: 2.2rem;
    }
    
    .stat-icon-wrapper {
      width: 60px;
      height: 60px;
    }
    
    .stat-icon {
      font-size: 25px;
    }
  }

/* home page  */


    /* .info-card {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 20px;
        border-radius: 10px;
        margin: 15px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    .info-card:hover {
        transform: translateY(-5px);
    }

    .icon {
        font-size: 40px;
        margin-bottom: 10px;
    } */

    /* h3 {
        font-size: 2rem;
        font-weight: bold;
    } */

    /* h4 {
        font-size: 1.2rem;
        margin-top: 5px;
    } */

  
    /* p {
        font-size: 0.9rem;
        color: #555;
    } */

    /* body {
        font-family: Arial, sans-serif;
        background-color: #f8f9fc;
    } */

    /* .container {
        margin-top: 50px;
    } */

    .heading {
        font-size: 32px;
        font-weight: bold;
        color: #1b3f95;
    }

    .sub-text {
        color: #666;
    }

    .service-list {
        margin-top: 20px;
    }

    .service-list a {
        display: block;
        font-size: 18px;
        font-weight: bold;
        color: #1b3f95;
        margin-top: 10px;
        text-decoration: none;
    }

    .service-list a:hover {
        text-decoration: underline;
    }

    .quote-form {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .quote-form h4 {
        font-weight: bold;
        color: #1b3f95;
    }

    .accord-btn {
        color: #FFA725;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .ditial-service {
        padding: 2rem;
        border-radius: 10px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        background-color: #fff;
    }

    .client-section {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    /* Subtle background effect */
    .client-section::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: 250px;
        height: 250px;
        background: rgba(0, 123, 255, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .client-section::after {
        content: "";
        position: absolute;
        bottom: -20%;
        right: -10%;
        width: 200px;
        height: 200px;
        background: rgba(255, 193, 7, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .client-section h2 {
        position: relative;
        z-index: 1;
    }

    .client-section p {
        position: relative;
        z-index: 1;
    }

    .client-card {
        background: white;
        padding: 15px;
        border-radius: 12px;
        height:20svh;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        position: relative;
        z-index: 1;
    }

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .client-card img {
        max-width: 100%;
        height: auto;
    }

    .btn-primary {
        background-color: #007bff;
        border: none;
        font-weight: bold;
    }

    .btn-primary:hover {
        background-color: #0056b3;
    }

    .service-box {
        background: #fff;
        border-radius: 10px;
        transition: 0.3s;
    }

    .service-box:hover {
        background: #f8f9fa;
        transform: translateY(-5px);
    }
    

    /* Why Choose Us Section Styling - Brand Theme */
.why-choose-us {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,9,87,0.03) 0%, rgba(255,140,0,0.03) 100%);
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    color: #000957;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000957, #FF8C00);
    border-radius: 2px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}


.about-media {
    position: relative;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,9,87,0.08);
    border: 1px solid rgba(0,9,87,0.05);
    z-index: 1;
}

.media-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    background: linear-gradient(135deg, #000957, #0033A0);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,9,87,0.2);
    border-radius: 8px;
}

.benefits-list {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,9,87,0.05);
    border: 1px solid rgba(0,9,87,0.1);
}

.benefit-icon {
    color: #FF8C00;
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-indicator {
    font-size: 0.9rem;
    color: #555;
}

.trust-indicator i {
    color: #FF8C00;
}

/* Third Accent Color (#00B4FF) Usage */
.button_ndci {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.button_ndci:hover {
    background: linear-gradient(135deg, #000957, #0033A0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,9,87,0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .media-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
        display: inline-block;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Animation for Visual Interest */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Enhanced Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    background: linear-gradient(135deg, #000957, #0033A0);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,9,87,0.2);
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

.experience-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.badge-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #FF8C00;
}

.badge-ribbon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: #FF8C00;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Achievement Stats */
.achievement-stats {
    background: rgba(0,9,87,0.03);
    border: 1px solid rgba(0,9,87,0.1);
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000957;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Mission Box */
.mission-box {
    background: rgba(255,140,0,0.05);
    border-left: 4px solid #FF8C00;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
        display: inline-flex;
        transform: none;
    }
    
    .achievement-stats {
        margin-top: 40px;
    }
}

.text-orange{
    color:  #ff6600;
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(238, 238, 238, 0.8);
    border-radius: 12px;
    background: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(238, 238, 238, 0.95);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4f46e5, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    position: relative;
    font-style: italic;
    line-height: 1.6;
    color: #4b5563;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(156, 163, 175, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    background: #ffffff;
    border: 1px solid rgba(236, 240, 241, 0.8);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.15);
    border-color: rgba(236, 240, 241, 0.95);
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FF8C00;;
    color: white;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-top-right-radius: 8px;
    z-index: 2;
}

.blog-content {
    padding: 20px;
    position: relative;
    background: #fff;
}

.blog-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #3498db, #e74c3c);
}

.blog-content h3 {
    color: #FF8C00;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-excerpt {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.blog-link {
    color: #000957;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #2980b9;
    transform: translateX(3px);
}

.blog-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.ndci-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: #FF8C00;
    background-color: transparent;
    border: 2px solid #FF8C00;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.ndci-view-all-btn:hover {
    color: white;
    background-color: #FF8C00;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
    transform: translateY(-2px);
}

.ndci-view-all-btn:active {
    transform: translateY(0);
}

.ndci-view-all-btn svg {
    transition: transform 0.3s ease;
}

.ndci-view-all-btn:hover svg {
    transform: translateX(3px);
}

/* Optional animated border on hover */
.ndci-view-all-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 30px;
    background: linear-gradient(90deg, #FF8C00, #FFA040) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ndci-view-all-btn:hover::after {
    opacity: 1;
}



/* General Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 9, 87, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF8C00;
}

/* Industries */
.industry-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 10px;
}

/* Results */
.result-item {
    margin-bottom: 30px;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

/* Blog */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 9, 87, 0.1);
}

.blog-image {
    position: relative;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-content {
    padding: 20px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* height: 100%; */
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-role {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #FF8C00;
}

.achievement-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}
.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}


/* Portfolio Section Styling */
.portfolio {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .ndci-portfolio-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .ndci-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 42, 136, 0.03);
    animation: float 15s infinite linear;
  }
  
  .ndci-bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
  }
  
  .ndci-bg-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 20s;
  }
  
  .ndci-bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: -30px;
    animation-delay: 5s;
    animation-duration: 25s;
  }
  
  .ndci-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(0, 42, 136, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 42, 136, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
  }
  
  @keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  /* Portfolio Card Styling */
  .ndci-portfolio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .ndci-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 42, 136, 0.1);
  }
  
  .ndci-portfolio-img {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .ndci-portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .ndci-portfolio-card:hover .ndci-portfolio-img img {
    transform: scale(1.1);
  }
  
  .ndci-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 42, 136, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .ndci-portfolio-card:hover .ndci-portfolio-overlay {
    opacity: 1;
  }
  
  .ndci-portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 20px;
  }
  
  .ndci-portfolio-content {
    padding: 20px;
  }
  
  .ndci-portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
  }
  
  .ndci-portfolio-title:hover {
    color: var(--blue);
  }
  
  .ndci-portfolio-desc {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .ndci-portfolio-btn {
    background: transparent;
    border: 1px solid var(--ndci-accent);
    color: var(--ndci-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  
  .ndci-portfolio-btn:hover {
    background: var(--ndci-accent);
    color: #FF8C00;;
    transform: translateX(5px);
  }
  
  .ndci-portfolio-btn span {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .ndci-portfolio-btn:hover span {
    transform: translateX(3px);
  }
  
  /* Animations */
  [data-animate] {
    opacity: 0;
  }
  
  .animate__animated {
    opacity: 1;
  }

 /* Custom CSS for the section */
    :root {
        --ndci-orange: #FF8C00;
        --dark-blue: #0A0F2E;
    }
    
    .bg-orange-soft {
        background-color: rgba(255, 140, 0, 0.1);
    }
    
    .text-orange {
        color: var(--ndci-orange);
    }
    
    .bg-dark-blue {
        background-color: var(--dark-blue);
    }
    
    .text-gradient-orange {
        background: linear-gradient(90deg, #FF8C00, #FFD700);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .blur-3 {
        filter: blur(3px);
    }
    
    .bg-pattern-dots {
        background-image: radial-gradient(#FF8C00 1px, transparent 1px);
        background-size: 20px 20px;
    }
    
    .btn-orange {
        background-color: var(--ndci-orange);
        color: white !important;
        border: none;
    }
    
    .z-index-1 {
        z-index: 1;
    }
    
    .z-index-0 {
        z-index: 0;
    }
    
    @media (max-width: 992px) {
        .pe-lg-5 {
            padding-right: 0 !important;
        }
    }
  