@charset "utf-8";

@font-face {
    font-family: body-font;
    src: url(SEGOEUI.TTF);
}
@font-face {
    font-family:title-font;
    src: url(berlin-regular.TTF);
}

body{
    padding:0px;
    margin :0px;
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    word-wrap: break-word;
    overflow-wrap:break-word ;
    transition: 1s;
    position:absolute; 
    width: 100%;
    height: 100%;
}

a{
  text-decoration: none;
  color: inherit;
}
* {
  box-sizing: border-box;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2122252d;
  z-index: 9999;
  overflow: hidden;
}

.loader-panels {
  position: relative;
  width: 100%;
  height: 100%;
}

.panel {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background: #25282a52;
  transition: transform 1s ease;
  z-index: 2;
}

.left-panel {
  left: 0;
  transform: translateX(0%);
}

.right-panel {
  right: 0;
  transform: translateX(0%);
}

.spinner-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100px;
  height: 100px;
}

.circle-spinner {
  width: 100px;
  height: 100px;
  border: 5px solid #ccc;
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

.loader-logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 22px;
  left: 22px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: rgb(3, 119, 186);
  padding: 0 15px;
}

header .header-inner-div {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 10px 0;
}

header .header-inner-div .logo-div {
  width: 20%;
  color: #fefefe;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header .header-inner-div .logo-div img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 10px;
}

header .header-inner-div .logo-div span {
 text-align: center;
  display: inline-block;
  line-height: 1.2;
  font-weight: bold;
  vertical-align: top;
  margin:1% 0px;
  font-size: 17px;
}
header .header-inner-div nav.list-div {
  display: inline-block;
  width: 80%;
  text-align: center;
  vertical-align: top;
  color: #fff;
}

header .header-inner-div nav.list-div ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
     text-align: center;
     margin-top: 1%;
}

header .header-inner-div  nav.list-div ul li {
  margin: 0 10px;
  font-size: large;
  color: #d5d6d7;
  cursor: pointer;
  transition: color 0.3s;
}

header .header-inner-div nav.list-div ul li {
  margin: 0 10px;
  font-size: large;
  color: #d5d6d7;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, font-style 0.3s ease;
}

header .header-inner-div nav.list-div ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0%;
  background-color: #fff;
  transition: width 0.4s ease, left 0.4s ease;
}

header .header-inner-div nav.list-div ul li:hover {
  color: #fff;
    transform: skewX(-10deg); 
}

header .header-inner-div nav.list-div ul li:hover::after {
  width: 100%;
  left: 0;
}

header .header-inner-div nav.list-div ul li:not(:hover)::after {
  width: 0%;
  left: 100%;
}

header .header-inner-div nav.list-div ul li.has-submenu {
  position: relative;
  padding-bottom: 20px; 
}

header .header-inner-div nav.list-div ul li.has-submenu .submenu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

header .header-inner-div nav.list-div ul li.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
}

header .header-inner-div nav.list-div ul li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0377ba;
  padding: 5px 0;
  z-index: 1000;
  min-width: 20px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

header .header-inner-div nav.list-div ul li.has-submenu:hover .submenu {
  display: block;
}

header .header-inner-div nav.list-div ul li.has-submenu .submenu li {
  padding: 5px 20px;
}
header .header-inner-div nav.list-div ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

header .header-inner-div nav.list-div ul li:hover a {
  color: #fff;
}

header .header-inner-div .mobile_btn{
    display: none;
    text-align: center;
    justify-items: center;
    font-size: large;
    border: none;
    width: 20%;
}

header .header-inner-div .btn:hover{
    background-color: #4482F5 ;
    color: #020230;
    transition: 0.8s;
}

header .header-inner-div .mobile_btn i{
    color: #fff;
    margin-top: 15px;
    font-size: 35px;
}
header .header-inner-div .mobile_btn:hover{
    background-color: transparent ;
    color: #020230;
}

.slider-section {
  width: 100%;
  height : 100%;
  padding-top: 100px; 
  background-image: url('../images/landing-page-image.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: right;
}

.slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 51, 51, 0.5);
  z-index: 1;
}

.slider-section .inner-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 98%;
  margin: 0;
  text-align: right;
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

.slider-section .inner-div .div-in {
  width: 45%;
  height: 70%;
  background: transparent;
  color: white;
  position: relative;
  opacity: 1;
  padding: 50px 20px 30px 20px;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  margin: 0px;
  margin-top: 5.5%;
}

.slider-section .inner-div .div-in .text-div h1{
  margin-top:-10% ;
  color: #ffff;
  font-size: 55px;
}
.slider-section .inner-div .div-in .text-div p{
    margin-top: 45px;
    line-height: 30px;
    color: #ffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}
.slider-section .inner-div .motto-div {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(3, 119, 186, 0.366);
  color: #fff;
  width: auto;
  height: auto;
  padding: 15px 20px;
  border-top-left-radius: 10px;
  font-style: italic;
}
  
.our-services-section {
  width: 100%;
  min-height: 85%;
  position: relative;
  text-align: center;
}

.our-services-section .inner-div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 98%;
    margin: auto;
    text-align: center;
    max-width: 1300px;
    position: relative;
    z-index: 2;
}
.our-services-section .inner-div .heading-div{
    width: 100%;
    height: auto;
    text-align: center;
    color: #3C4A5A;
    font-size: 17px;
    font-weight: bold;
}
.our-services-section .inner-div .cards-container {
    width: 100%;
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-between; 
    padding: 20px 0;
    gap: 20px; 
}

.our-services-section .inner-div .cards-container .card {
    flex: 1 1 30%; 
    min-height: 250px;
    background-color: #2894d2;
    border-radius: 10px;
    box-shadow: 3px 3px 6px #0000004f;
    text-align: center;
    color: #fff;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 32%; 
    line-height: 30px;
}

.our-services-section .inner-div .cards-container .card:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 10px #0000004f;
}
.our-services-section .inner-div .cards-container h3 i{
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}
.our-services-section .inner-div .cards-container .card .btn {
  background-color: #fff;
  color: #0377ba;
  border: 1px solid #0377ba;
  border-radius: 5px;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  transition: 0.5s;
  margin-top:2%;
  font-size: 15px;
}

.our-services-section .inner-div .cards-container .card .btn:hover {
  background-color: transparent;
  color: #fff;
    border: 1px solid #fff;
}

.contact-section {
  width: 100%;
  min-height: 85vh;
  position: relative;
  text-align: center;
  background-color: #2894d2;
  color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-section .inner-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 98%;
  margin: auto;
  text-align: center;
  max-width: 1300px;
  position: relative;
  z-index: 2; 
  height: 100%;
}
.contact-section .inner-div .heading-div{
    width: 100%;
    text-align: center;
}
.contact-section .inner-div .contact-content {
  display: flex;
  gap: 20px;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

.contact-section .inner-div .contact-content .contact-info {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 3px 3px 6px #0000004f;
  color: #0377ba;
  height: 100%;
  text-align: left;
  line-height: 30px;
}

.address-line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3px;
  gap: 0px;
}

.address-line .label {
  font-weight: bold;
  min-width: 160px;
}

.address-line .text {
  flex: 1;
}

.contact-section .inner-div .contact-form {
  flex: 1;
  background-color: #0377ba;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 3px 3px 6px #0000004f;
  color: #fff;
  height: 100%;
}
.contact-section .inner-div .contact-form .form-div input,
.contact-section .inner-div .contact-form .form-div select {
  width: 98%;
  height: 50px;
  padding: 0px 20px;
  border-radius: 10px;
  border: none;
  margin: 10px 0px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  outline: none;
}

.contact-section .inner-div .contact-form .form-div input:focus {
  outline: none;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.contact-section .inner-div .contact-form .form-div textarea{
  width: 98%;
  height: 50px;
  padding: 0px 20px;
  border-radius: 10px;
  border: none;
  margin: 10px 0px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    resize: none;
    min-height: 180px;
    max-width: 98%;
    width: 98%;
    outline: none;
}
.contact-section .inner-div .contact-form .form-div textarea:focus{
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.contact-section .inner-div .contact-form .form-div .btn {
    background-color: #fff;
    color: #0377ba;
    border: 1px solid #0377ba;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
}

.contact-section .inner-div .contact-form .form-div .btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.contact-section .inner-div .contact-form .form-div .btn:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); 
}

.why-choose-us-section {
  width: 100%;
  min-height: 85vh;
  position: relative;
  text-align: center;
  background-color: #eeeeee;
  color: #fff;
}
.why-choose-us-section .inner-div {
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 98%;
    margin: auto;
    text-align: center;
    max-width: 1300px;
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
}
.why-choose-us-section .inner-div .heading-div{
    width: 100%;
    text-align: center;
    color: #3C4A5A;
    font-size: 17px;
    font-weight: bold;
}
.why-choose-us-section .inner-div .why-choose-us-content{
    width: 100%;
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-between; 
    padding: 20px 0;
    gap: 20px; 
}
.why-choose-us-section .inner-div .why-choose-us-content .why-choose-us-item{
    flex: 1  20%; 
    min-height: 250px;
    background-color: #2894d2;
    border-radius: 10px;
    box-shadow: 3px 3px 6px #0000004f;
    text-align: left;
    color: #fff;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 32%; 
    line-height: 30px;
}

.why-choose-us-section .inner-div .why-choose-us-content .why-choose-us-item:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 10px #0000004f;
}

.why-choose-us-section .inner-div .why-choose-us-content .why-choose-us-item hr{
    color: #fff;
    margin: 10px 0;
    margin-top:5%;
}
.why-choose-us-section .inner-div .sourcing-div{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: #3C4A5A;
    font-size: 17px;
}
.why-choose-us-section .inner-div .sourcing-div .sourcing-btn{
    background-color: #2894d2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #2894d2;
}

.why-choose-us-section .inner-div .sourcing-div .sourcing-btn:hover {
    background-color: transparent;
    color: #2894d2;
    transition: 0.5s;
}

.faqs-section {
  width: 100%;
    min-height: 85vh;
    position: relative;
    text-align: center;
    background-color: #2894d2;
    color: #fff;
}
.faqs-section .inner-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 98%;
    margin: auto;
    text-align: center;
    max-width: 1300px;
    position: relative;
    z-index: 2; 
    height: 100%;
    padding-bottom: 50px;
}
.faqs-section .inner-div .heading-div{
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}
.faqs-section .inner-div .faqs-content {
    width: 80%;
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-between; 
    padding: 20px 0;
    gap: 20px; 
    margin: auto;
    text-align: left;
}

.faqs-section .inner-div .faqs-content .faq-item{
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 6px #0000004f;
}

.faqs-section .inner-div .faqs-content .faq-item .faq-question {
    background: none;
    border: none;
    color: #2894d2;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    font-size: 20px;
}
.faqs-section .inner-div .faqs-content .faq-item .faq-question span{
    float:right;
    font-size: 20px;
}
.faqs-section .inner-div .faqs-content .faq-item .faq-answer {
    padding: 0 20px;
    font-size: 15px;
    color: #2894d2;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 
        max-height 0.5s ease,
        opacity 0.5s ease,
        padding 0.5s ease;
}

.faqs-section .inner-div .faqs-content .faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 5px 20px;
}

.faqs-section .inner-div .sourcing-connect{
    width: 100%;
    text-align: center;
    font-size: 17px;
}
.faqs-section .inner-div .sourcing-connect h3{
    color: #fff;
    margin-bottom: 20px;
    font-size: 25px;
}
.faqs-section .inner-div .sourcing-connect .sourcing-btn{
    background-color: #fff;
    color: #2894d2;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: #2894d2 1px solid;
    font-size: 15px;
}

.faqs-section .inner-div .sourcing-connect .btn2{
    background-color: #2894d2;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #fff;
}

.faqs-section .inner-div .sourcing-connect .sourcing-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: 0.5s;
}
.faqs-section .inner-div .sourcing-connect .btn2:hover {
    background-color: #fff;
    color: #2894d2;
    border: 1px solid #FFF;
    transition: 0.5s;
}

footer{
    width: 100%;
    height: auto;
    background-color: #0377ba;
    color: #fff;
    padding: 20px 0px;
    position: relative;
    text-align: center;
    width: 100%;
    min-height: 50vh;
    position: relative;
    text-align: center;
    color: #fff;
}

footer .footer-container {
    align-items: center;
    max-width: 1200px;
    margin: 0 auto; 
    width: 98%;
    height:100%;
}

footer .footer-container .inner-div{
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    gap:30px;
}
footer .footer-container .inner-div .footer-content {
    flex: 1 1 30%;
    min-height: 250px;
    color: #fff;
    padding: 0px 20px;
    max-width: 32%; 
    line-height: 30px;
    text-align: left;
}

footer .footer-container .inner-div .footer-content h3 {
    font-size: 18px;
    /* margin-bottom: 10px; */
}

footer .footer-container .inner-div .footer-content p {
    font-size: 14px;
    line-height: 1.5;
}
footer .footer-container .copyright-div hr{
    color: #fff;
}

.overlay-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 300;
  margin-left: -100%;
  transition: margin-left 0.3s ease;
}

@media screen and (max-width: 768px) {
  header .header-inner-div {
    display: block;
    text-align: center;;
    align-items: center;
    padding: 10px 15px;
  }

  header .header-inner-div .logo-div {
    width: 70%;
    display: inline-block;
    align-items: center;
  }

  header .header-inner-div .logo-div img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }

  header .header-inner-div .logo-div span {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }

  header .header-inner-div nav.list-div {
    display: none;
  }

  header .header-inner-div .mobile_btn {
    display: inline-block;
    background-color: #0377ba;
    border: none;
    padding: 10px 15px;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    text-align: center;
  }
}

.phone-div {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 80%;
  background-color: #0377ba;
  color: #fff;
  padding: 80px 20px 20px 20px;
  z-index: 1000;
  transition: left 0.4s ease;
}

.slide-side-div {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
    margin-left: -250px;
    color: #4482F5;
    backdrop-filter: blur(10px);
    background-color: rgba(228, 228, 228, 0.1);
    transition: margin-left 0.3s ease;
}

.slide-side-div .div-in {
    padding: 25px;
}

.slide-side-div .div-in ul {
    margin: 0;
    padding: 0;
}

.slide-side-div .div-in ul li {
    list-style: none;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #4482F5;
    margin-bottom: 8px;
    color: #fff;
    border: 1px solid #4482F5;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.slide-side-div .div-in ul li:hover {
    background-color: transparent;
    color: #4482F5;
    border: 1px solid #4482F5;
}

.slide-side-div .div-in a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.close-menu {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: right;
  margin-bottom: 20px;
  cursor: pointer;
}

.phone-div.active {
  display: block;
  left: 0;
}

.phone-div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phone-div ul li {
  margin-bottom: 15px;
  font-size: 18px;
}

.phone-div ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.phone-div ul li.has-submenu ul.submenu {
  padding-left: 15px;
  margin-top: 10px;
}

.phone-div ul li.has-submenu ul.submenu li {
  font-size: 16px;
}

@media (max-width: 768px) {
  .phone-div {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .slider-section {
    padding-top: 80px;
    background-position: center;
    background-size: cover;
  }

  .slider-section .inner-div {
    width: 100%;
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .slider-section .inner-div .div-in {
    width: 100%;
    margin-top: 20px;
    padding: 20px 15px;
    height: auto;
  }

  .slider-section .inner-div .div-in .text-div h1 {
    font-size: 32px;
    margin-top: 0;
    line-height: 1.2;
  }

  .slider-section .inner-div .div-in .text-div p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
  }

  .slider-section .inner-div .motto-div {
    position: relative;
    width: 100%;
    border-radius: 0;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .our-services-section .inner-div {
    padding: 0 15px;
  }

  .our-services-section .inner-div .heading-div {
    font-size: 16px;
    padding: 10px 0;
  }

  .our-services-section .inner-div .cards-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
  }

  .our-services-section .inner-div .cards-container .card {
    max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
    padding: 15px;
    min-height: auto;
  }

  .our-services-section .inner-div .cards-container .card .btn {
    font-size: 14px;
    padding: 8px 12px;
  }

  .our-services-section .inner-div .cards-container h3 i {
    font-size: 26px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .contact-section .inner-div {
    padding: 0 15px;
  }

  .contact-section .inner-div .contact-content {
    flex-direction: column;
    gap: 15px;
  }

  .contact-section .inner-div .contact-content .contact-info {
    width: 100%;
    font-size: 15px;
    padding: 15px;
  }

  .contact-section .inner-div .heading-div h2,
  .contact-section .inner-div .heading-div p {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .address-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .address-line .label {
    min-width: unset;
    font-weight: bold;
  }

  .address-line .text {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .why-choose-us-section .inner-div {
    padding: 0 10px;
    padding-bottom: 20px;
  }

  .why-choose-us-section .inner-div .why-choose-us-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .why-choose-us-section .inner-div .why-choose-us-content .why-choose-us-item {
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us-section .inner-div .sourcing-div .sourcing-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .faqs-section .inner-div {
    padding: 0 10px;
  }

  .faqs-section .inner-div .faqs-content {
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }

  .faqs-section .inner-div .faqs-content .faq-item .faq-question {
    font-size: 18px;
    padding: 12px 15px;
  }

  .faqs-section .inner-div .faqs-content .faq-item .faq-question span {
    font-size: 18px;
  }

  .faqs-section .inner-div .faqs-content .faq-item .faq-answer {
    font-size: 14px;
    padding: 0 15px;
  }

  .faqs-section .inner-div .faqs-content .faq-item.open .faq-answer {
    padding: 5px 15px;
  }

  .faqs-section .inner-div .sourcing-connect h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .faqs-section .inner-div .sourcing-connect .sourcing-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px;
    margin-bottom: 3%;
  }

  .faqs-section .inner-div .sourcing-connect .btn2 {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 20px 10px;
    min-height: auto;
  }

  footer .footer-container {
    width: 100%;
    padding: 0;
  }

  footer .footer-container .inner-div {
    flex-direction: column;
    gap: 20px;
  }

  footer .footer-container .inner-div .footer-content {
    max-width: 100%;
    padding: 10px;
    text-align: left;
  }

  footer .footer-container .inner-div .footer-content h3 {
    font-size: 16px;
  }

  footer .footer-container .inner-div .footer-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  footer .footer-container .copyright-div hr {
    margin: 15px 0;
  }
}

.slide-side-div{
    width: 250px;
    height: 100%;
    position: absolute;
    z-index: 400;
    margin-left: -250px;
    color: #4482F5;
    backdrop-filter: blur(10px);
    background-color: #e4e4e419;
}

.slide-side-div .div-in{
    padding: 25px;
}
.slide-side-div .div-in ul{
    margin: 0px;
    padding: 0px;
    color: #fff;
}

.slide-side-div .div-in ul li{
    list-style: none;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #4482F5;
    margin-bottom: 5px;
    color: #fff;
    border: #4482F5 1px solid ;

}

.slide-side-div .div-in ul li:hover{
    cursor: pointer;
    transition: .5s;
    background-color: transparent;
}
.slide-side-div .div-in .btn_list{
    padding: 15px 20px;
    background-color: #4482F5;
    border: #2db947 1px solid ;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    width: 100%;
    margin: 1.5% 0px;
    font-size: larger;

}

.slide-side-div .div-in .btn_list:hover{
    transition: .5s;
    background-color: #020230;
    border: #2db947 1px solid ;
    color: #fff;

}
.slide-side-div .div-in a{
    list-style: none;
}



  
/* mobile view */

@media (max-width: 768px) {

  header .header-inner-div {
    flex-direction: column;
    align-items: flex-start;
  }

  header .logo-div,
  header nav.list-div {
    width: 70%;
    text-align: center;
  }
  /* header .header-inner-div .logo-div{
    width: 70%;
    height: 55px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
} */

  header nav.list-div ul {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  header .header-inner-div .btn,
  header .header-inner-div a .btn-list {
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }


 header .header-inner-div .list-div ul{
  display:none;
 }
  @media (max-width: 768px) {
  nav.list-div {
    width: 100%;
  }

  @media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #3f55624a;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: left 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }



  nav.list-div ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }

  nav.list-div ul li {
    margin: 10px 0;
    font-size: 18px;
  }
}


 

  nav.list-div ul {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  nav.list-div ul li {
    margin: 10px 0;
  }
}

  .slider-section .inner-div {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .slider-section .inner-div .div-in {
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 0;
  }

  .slider-section .inner-div .div-in .text-div h1 {
    font-size: 32px;
    margin-top: 0;
  }

  .slider-section .inner-div .div-in .text-div p {
    font-size: 14px;
    margin-top: 20px;
  }

  .slider-section .inner-div .motto-div {
    position: static;
    width: 100%;
    text-align: center;
    border-radius: 0;
    padding: 10px;
  }

  .slider-section {
    padding-top: 80px;
    background-position: center center;
  }
}
