@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* ------------------------------------------------HEADER CODE STARTS------------------------------------------------------------------ */

.nucsoft-header-new-header {

  background: linear-gradient(to right, #f1f5ff, #adc5f9) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 10px 25px;
  position: sticky;
  /* position: fixed; */
  /* width: 100%; */
  top: 0;
  z-index: 9999;
  transition: top 0.3s;
}

.nucsoft-header-new-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nucsoft-header-new-logo img {
  height: 35px;
}

.nucsoft-header-new-nav {
  display: flex;
}

.nucsoft-header-new-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.fa-solid{
      padding-left: 2px;

}

.nucsoft-header-new-menu li {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  /* white-space: nowrap; */
}

/* Mobile styles */
.nucsoft-header-new-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* menu */
.nucsoft-header-new-nav a{
  text-decoration: none;
  color: black;

}

.nucsoft-header-new-nav a:hover{
color: rgba(45, 100, 237, 1);;
}

.dropdown-menu {
    display: none;
    position: absolute; /* or relative depending on layout */
    background-color: white;
    list-style: none;
    color: rgba(45, 100, 237, 1);
    padding: 10px;
    border-radius:4px;
    margin: 0;
    border: 1px solid rgb(187, 184, 184);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li{
  margin: 10px;
  text-align:left;
}

.dropdown-menu.show {
    display: block;
}


/* -------------------------------------------------HEADER CODE ENDS----------------------------------------------------------------- */

/* ---------------------------------------FOOTER CSS STARTS----------------------------------------------- */


/* main div  */
.nucsoft-footer-new-footer {
  display: flex;
  background-color: rgba(45, 100, 237, 1);
  color: white;
  z-index: 9999;
  /* position: relative; */
  padding: 32px;
}

/* footer left side */
.nucsoft-footer-new-left {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 80px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: 4px;
  width: 5%;
}

/* footer right side */

.nucsoft-footer-new-content-right {
  display: flex;
  margin-left: 20px;
  flex-direction: column;
  /* background-color: pink; */
  width: 95%;
  padding-left: 20px;
  text-align: justify;
  /* align-items: center; */
  justify-content: space-between;
}

.nucsoft-footer-new-content-right h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 40px;
  padding-top: 20px;
}

/* right upper part */
.nucsoft-footer-new-up {
  display: flex;
  padding-bottom: 20px;
}


/* upper- div 1 */
.nucsoft-footer-new-about {
  flex: 2;
}

.nucsoft-footer-new-about p {
  max-width: 450px;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
}

/* upper- div 2*/
.nucsoft-footer-new-links {
  flex: 1;
}


.nucsoft-footer-new-links ul {
  list-style: none;
}

.nucsoft-footer-new-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.nucsoft-footer-new-links ul li {
  margin-bottom: 14px;
}


/* upper- div 3 */
.nucsoft-footer-new-contact {
  flex: 1;
}

.nucsoft-footer-new-contact p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}

.nucsoft-footer-new-contact a {
  text-decoration: none;
  color: white;
}

/* right bottom */

.nucsoft-footer-new-bottom {
  margin-top: 32px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

/*.nucsoft-footer-new-bottom hr {*/
/*  margin: 16px auto;*/
/*  border: 1px solid transparent;*/
/*  border-image: repeating-linear-gradient(to right, white 0, white 10px, transparent 10px, transparent 20px) 100% 1;*/

/*}*/

.nucsoft-footer-new-bottom hr {
  border: none;
  height: 3px;
  background-image: repeating-linear-gradient(to right, white 0, white 10px, transparent 10px, transparent 20px);
  background-repeat: repeat-x;
  background-size: 20px 3px;
  margin: 16px auto;
  width: 100%;
}


.nucsoft-footer-new-bottom a {
  font-weight: bold;
  color: white;
  text-decoration: none;
}



/* ---------------------------------------FOOTER CSS ENDS----------------------------------------------- */

@media (min-width: 2000px) {

  .nucsoft-header-new-logo img {
    height: 50px;
}

  .nucsoft-header-new-menu li {
    font-size: 22px;
}
  
.nucsoft-footer-new-content-right h3 {
    font-size: 22px;
}

.nucsoft-footer-new-about p {
    max-width: 550px;
    line-height: 38px;
    font-size: 22px;
}

.nucsoft-footer-new-links ul li a {
    font-size: 22px;
}

.nucsoft-footer-new-contact p {
    font-size: 22px;
    line-height: 30px;
}

.nucsoft-footer-new-bottom {
    font-size: 22px;
}
}

@media (max-width: 1024px) {


.nucsoft-footer-new-about p{
     max-width: 350px;
}

}
@media (max-width: 1000px) {


  /* -------------------------------------------HEADER MEDIA QUERIES----------------------------------------------- */

  .nucsoft-header-new-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background: #adc5f9;
    width: 100%;
    padding: 10px 0;
  }

  .nucsoft-header-new-nav.active {
    display: block;
  }

  .nucsoft-header-new-menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nucsoft-header-new-toggle {
    display: block;
  }

    .nucsoft-footer-new-about p {
        max-width: 275px;
    }

  /* -------------------------------------------HEADER MEDIA QUERIES----------------------------------------------- */

}

@media (max-width: 7680px){
    .nucsoft-footer-new-about p,
    .nucsoft-footer-new-contact p{
    font-size: 14px;
}
}

@media (max-width: 600px) {


  /* -------------------------------------------FOOTER MEDIA QUERIES----------------------------------------------- */

  .nucsoft-footer-new-left {
    display: none;
  }

  .nucsoft-footer-new-up {
    flex-direction: column;
  }

  .nucsoft-footer-new-content-right {
    margin-left: 0px;
    padding-left: 0px;
    text-align: center;
  }

  .nucsoft-footer-new-about p {
    max-width: 450px;
    text-align: justify;
  }

  .nucsoft-footer-new-bottom {
    line-height: 25px;
}

}