* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}
body,html {
    min-height: 100vh;width: 100%;width: -webkit-fill-available;
    margin: 0;
    overflow-x:hidden;
    font-family: 'DM Sans', sans-serif !important;
}
/* Navbar */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 15%;
    padding: 1.2rem 10%;
    box-shadow: 6px 6px 6px rgba(147, 147, 147, 0.05);
    display: flex;
    display: -webkit-flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;
  }
  .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: 0.5s;
  }
  .header:hover::after {
    left: 100%;
  }
  .logo {
    width: 143px;
    height: 76px;
  }
  .navbar a {
    font-size: 1.15rem;
    color: rgba(30, 30, 30, 1);
    text-decoration: none;
    font-weight: 400;
    margin-left: 1.5rem;
  }
  .navbar a:hover {
    color: #5d70d6;
    text-decoration: underline;
  }
  #check {
    display: none;
  }
  .icon{
    position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: rgba(30, 30, 30, 1);
  cursor: pointer;
  display: none;
  }
  .dropdown-container {
    position: relative;
    display: inline-block;
  }
  .dropdown-button {
    border: none;
    cursor: pointer;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #e2e5f5;
    width: 263.08px;
    height: 290px;
    z-index: 1;
    border-radius: 4px;
  }
  .dropdown-content a {
    font-family: inherit;
    font-weight: 500;
    size: 20px;
    color: #4d4d4d;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
  }
  .dropdown-content a:hover {
    color: #5d70d6;
    text-decoration: underline;
  }
  .dropdown-container.active .dropdown-content {
    display: block;
  }
/* 360 data */
#data {
    width: 100%;
    height: auto;
    background: url('../image/dataMng.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'DM Sans', sans-serif;
    padding: 4%;

}

#data h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 72px;
    color: #1E1E1E;
}

#data p {
    color: white;
    font-size: 32px;
    font-weight: 500;
    line-height: 42.5px;
    margin-top:2%;
}

/* our services  */
#our-services {
    display:flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: auto;
    font-family: 'DM Sans', sans-serif;
    margin-top:15px;
}

#our-services h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    text-align: center;
}

.blue-word {
    color: #4845D2;
}

.black-word {
    color: #1E1E1E;
}

.our-services-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-around;
    row-gap:20px;
    margin:20px 0;
    }
.our-services-bi-icon{
    color: #4845d2;font-size:40px;
}    
@media(max-width: 768px){.our-services-main {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}}


.our-bi-parts {
    display: flex;
    display: -webkit-flex;
    gap:8px;
    align-items: center;
    justify-content: flex-start;
}

.our-bi-parts span {
    font-size: 19px;
    font-weight: 500;
    line-height: 52px;
}

/* Experience */
#experience {
    background: #E2E5F5;
    font-family: 'DM Sans', sans-serif;
    display: flex;display: -webkit-flex;
    align-items: center;
    justify-content:center;
    column-gap:30px;
    padding:1.5%;
}

#experience h2 {
    color: #1E1E1E;
    font-size:28px;
    font-weight: 700;
    line-height: 45px;
}

.experience-btn {
    background-color: #4845D2;
    width: 200px;
    height:54px;
    border-radius: 8px;
    display: flex;display: -webkit-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight:500;
    line-height: 52px;
cursor: pointer;
}

/* DE & DM */

#de-dm {
    width: 100%;
    height: auto;
    font-family: 'DM Sans', sans-serif;
    padding:2%;
}

#de-dm h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    color: #1E1E1E;
    margin-bottom:3%;
}

.services-main {
    display: flex;display: -webkit-flex;
    justify-content: space-evenly;

}

.bi-parts {
    display: flex;display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bi-parts span {
    color: #000000;
    font-size: 24px;
    font-weight: lighter;
    line-height: 40px;
    text-align: center;
}

/* Technology We Work On */

#tech {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #232d83, #3d227d, #792382);
    font-family: "DM Sans", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #e2e5f5;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  #tech h2 {
    margin-top: 5%;
    line-height: normal;
  }
  .tech-img {
    align-self: center;
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    gap: 2%;
    padding: 4% 0;
    margin-left: 10px;
    margin-right: 10px;
  }
  .img-container {
    width: 177px;
    height: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  .img-container img {
    transition: opacity 0.3s ease;
  }
  .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }
  .defaultImage,
.hoverImage {
  object-fit: cover;
  width: 80%;
  transition: opacity 0.3s ease;
}
.hoverImage {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

  .img-container:hover .hoverImage {
    cursor: pointer;
    opacity: 1;
  }
/* Challenges Faced */


#challenges {
    background: #F5F5F5;
    padding:2%;
}
#challenges h2{
    margin-bottom: 24px;
    text-align: center;
    font-size: 35px;
} 

/* Gray Part */
#gray {
    height: auto;
    width: 100%;
    background: #DDDDDD;
    padding: 4%;
    font-family: 'DM Sans', sans-serif;
    display: flex;display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#gray h3 {
    color: #1E1E1E;
    font-size: 32px;
    font-weight: lighter;
    line-height: 42.5px;
}

.gray-btn {
    width: 262px;
    height: 48px;
    border-radius: 15px;
    background: #1E1E1E;
    color: white;
    display: flex;display:-webkit-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-top:16px;
    margin-bottom:8px;
}
/* Industries we have */
#industries {
    width: 100%;
    height: auto;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #industries h3 {
    font-family:inherit;
    color: #4d4d4d;
    font-weight: 700;
    font-size: 64px;
    text-align: center;
margin-top:24px;
}
  .industries-img {
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 2%;
    padding: 4%;
  }
  .show-in-phone {
    display: none;
  }
  .hover-image {
    object-fit: contain;
    transition: opacity 0.3s ease;
  }
  .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
.industries-blue-bottom {
    width: 100%;
    height: auto;
    background: #8c9bf0;
    margin-bottom: 3%;
    display: flex;display:-webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3%;
}
.industries-blue-bottom h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #1E1E1E;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 2%;
}
.industries-blue-bottom div {
    width: 385px;
    height: 66px;
    border-radius: 8px;
    background: #5D70D6;
    border: none;
    color: white;
    display: flex;display: -webkit-flex;
    align-items: center;
    justify-content: center;
    gap: 1%;
    text-transform: uppercase;
    font-weight: bold;
    padding: 1%;
}
/* Blue Part */
#blue-part{
    height: auto;
    width: 100%;
    background: #5D70D6;
    display: flex;display: -webkit-flex;
    justify-content:center;
    column-gap:30px;
    align-items: center;
    padding:1%;
}
#blue-part h3 {
    color: white;
    font-size:28px;
    font-weight:700;
    line-height: 52px;
}
.blue-part {cursor: pointer;
    background: #E2E5F5;
    color: #000000;
    display: flex;display: -webkit-flex;
    align-items: center;
    justify-content: center;
    width:220px;
    height:54px;
    border-radius: 8px;
font-weight:600;
font-size:26px;
}


/* FAQ */#FAQ {
    width: 100%;
    height: auto;
    background: #E2E5F5;
    padding: 5%;
    display: flex;display:-webkit-flex;
    flex-direction: column;
    align-items: center;
}

#FAQ h1 {
    text-align: center;
    font-family:'DM Sans';
    font-weight: 400;
    font-size: 70px;
    line-height:22px;
    margin-bottom: 5%;
    color: #4D4D4D;
}

.accordion {
    background-color: transparent;
    color: #000000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border-radius: 2%;
    text-align: left;
    transition: 0.4s;
    color: #000;
font-family: 'DM Sans';
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
outline: none;
border: none;
}

.active,
.accordion:hover {
    background-color: transparent;
}


.accordion:after {
    content: '\02C4';
    /* Unicode character for Modifier Letter Up Arrowhead */
    color: 000000;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}


.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    margin: 2px 0;
    transition: max-height 0.2s ease-out, margin-top 0.2s ease-out; /* Add margin-top to the transition */
color: #000;
font-family: 'DM Sans';
font-size:21px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-radius:18px ;
background-color: #FFFFFF;
}

.accordion-button {
    margin-bottom: 2%;
    width: 95%;
    background-color: #FFFFFF;
    color: #000;
font-family: 'DM Sans';
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-radius: 15px;
}
.accordion.active + .panel {
    margin-top: 10px; 
    margin-bottom: 18px;
}

/* BREAKPOINTS */
@media (max-width: 992px) {
    .header {
        padding: 1.1rem 5%;
        justify-content: flex-start;
    }
}
.navbar a:hover {
    color: black;
    text-decoration: underline;
}
@media (max-width: 768px) {
   
    .icon {
        display: inline-flex;
     display: -webkit-inline-flex;
      }
      #check:checked ~ .icon #menu-icon {
        display: none;
      }
      .icon #close-icon {
        display: none;
      }
      #check:checked ~ .icon #close-icon {
        display: block;
      }
      .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: #d8deff;
        box-shadow: 0 0.5rem 1rem rgba(234, 237, 255, 1);
        overflow: hidden;
        transition: 0.1s ease;
      }
      #check:checked ~ .navbar {
        height: 23.7rem;
      }
      .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1rem 0;
        text-align: center;
        color: #000;
        transform: translateY(-50px);
        opacity: 0;
        transition: 0.3s ease;
      }
      #check:checked ~ .navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(0.15s * var(--i));
      }
      .dropdown-container {
        position: relative;
        display: inline;
        text-align: center;
        width: 100%;
      }
      .dropdown-container a:visited{
        color: #000;
        text-decoration: none;
      }
      .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        width:-webkit-max-content;
        background-color: #e2e5f5;
        z-index: 1;
        border-radius: 4px;
      }
      .dropdown-container.active .dropdown-content {
    display: inline-block;justify-content: center;;align-self: center;margin-left: auto;margin-right: auto;width: 373px;
      }
      .dropdown-content a {
        font-family:inherit;
        font-weight: 500;
        font-size: 1.1rem;
        color: #4d4d4d;
        padding: 2px 14px;
        text-decoration: none;
        display: block;
      }   
    /* 360 Data */

    #data h1 {
        font-size: 40px;
        /* Adjust the font size for smaller screens */
        line-height: 54px;
    }

    #data p {
        font-size: 24px;
        /* Adjust the font size for smaller screens */
        line-height: 32px;
    }

    /* our services  */

    .services-main {
        grid-template-columns: auto;
        /* Set to a single column on smaller screens */
        justify-content: center;
        gap: 2%;
        padding: 4%;
    }

    /* Experience */
    #experience {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
    }

    .experience-btn {
        margin-top: 10px;
        /* Adjust spacing between elements */
    }


    /* DE & DM */
    #de-dm {
        text-align: center;
    }

    .services-main {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
        align-items: center;
    }

    .bi-parts {
        margin-bottom: 20px;
        /* Add spacing between items on smaller screens */
    }

    /* Challenges Faced */
    .services-main {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
        align-items: center;
    }

    .bi-parts {
        margin-bottom: 20px;
        /* Add spacing between items on smaller screens */
    }

    /* Technology we work on */

    
  .tech-img {
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: auto auto;
  }
  #tech h2 {
    width: 100%;
    font-size: 42px;
    text-align: center;
  }
  .img-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
  }
  .img-container:hover .hoverImage {
    cursor: pointer;
    opacity: 0;
  }
    /* Gray Part */

    #gray h3 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .gray-btn {
        width: 200px;
        height: 40px;
        font-size: 18px;
    }

    /* Industries we have */
    #industries h3 {
        font-size: 40px;
    }

    .industries-img {
        grid-template-columns: auto;
    }

    .industries-blue-bottom h4 {
        font-size: 24px;
    }

    /* blue part */

    #blue-part {
        flex-direction: column;
        text-align: center;
    }

    #blue-part h3 {
        margin-bottom: 10px;
    }

    /* FAQ */

    .accordion-button {
        width: 90%;
        /* Adjust width for smaller screens */
    }.accordion,.panel{
        font-size: 15px;
    }
}
@media (max-width:500px){
    #data h1{
    font-size: 25px;
    line-height: 35px;
    }
    #data p{
        font-size: 17px;
        line-height: 30px;
    }
    #our-services h3{
    font-size: 32px;
    line-height: 44px;
    }
    .our-services-bi-icon{
        color: #4845d2;font-size:20px;
    }
    .our-bi-parts{
        gap:4px;
    }
    .our-services-main .our-bi-parts span{
        line-height:22px;
        font-size:15px;
    }
    #experience h2{
    font-size: 24px;
    line-height: 44px;
    margin-bottom: 10px;
    }
    .experience-btn{
    font-size: 24px;
        margin-top: 0;
        margin-bottom:7px;
    }
    #de-dm h2 {    
    font-size: 21px;
    font-weight: 700;
    line-height: 35px;
    color: #1E1E1E;
    margin-bottom: 2%;
}
.bi-parts span{
    font-size: 18px;
    line-height: 25px;
   }
   #challenges h2{
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
   }
   
  .tech-img {
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: auto auto auto;
  }
  .hide-in-small {
    display: none;
  }
  .hover-image {
    width: 92%;
  }
  .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  #tech h2{
    font-size: 28px;
}
#gray h3{
    font-size:21px;
    line-height:27px;
}
    #industries h3 {
        font-size: 30px;
    }
    
  .industries-img {
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: auto auto;
  }
  .image-container {
    width: 100%;
  }
  .show-in-phone {
    display: block;
    width: inherit;
  }
  .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .blue-part { 
    width: 165px;
    height: 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}
#blue-part h3{
    font-size: 20px;
    line-height:35px;
}
#FAQ h1{
    font-size:50px;
 }
 .accordion-button {
    width: 90%;
    /* Adjust width for smaller screens */
}.accordion{
    font-size: 15px;
}.panel{
    font-size:12px;
}
}
.footer-container {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #333;
    color: #fff;
    overflow: hidden;
    height: auto;
  }
  .upper_content {
    padding-top: 12px;
    display:flex;
    display: -webkit-flex;
    justify-content: space-around;
   flex-direction:row;
    align-items:start;
    margin-bottom: 10px;
  }
  .logo-container img {
    width: 170px;
    height: auto;
  }
  .address {
    font-size: 1.2em;
    margin-top: 10px;
    margin-left: 20px;
  }
  .footer-img{
  width: 30%;
  }
  .footer-img iframe{
    width:100%;
    height:250px;
    }
  
  .location {
    font-size: 0.9em;
    margin-left: 20px;
    margin-bottom: revert-layer;
  }
  .icons a {
    color: #fff;
    margin-top: 10px;
    font-size: 1.4em;
    margin-left: 20px;
  }
  .icons a:hover  .fa-instagram{
    color:orangered;
  }
  .icons a:hover  .fa-linkedin,.icons a:hover .fa-facebook-f{
    color:#5d70d6;
  }
  
  .icons a:hover  .fa-x-twitter{
    color:#000;
    background-color:beige ;
  }
  
  .service-side h4 {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .list {
    list-style: none;
    padding: 0;
    color: #fff;
  }
  .list-li {
    cursor: pointer;
    color: #fff;
    margin-bottom: 8px;
  }
  .list-li a {
    color: #fff;
    text-decoration: none;
  }
  .list-li:hover a {
    background-color: #fff;
    color: #333;
  }
  iframe {
    border: none;
  }
  .bottom {
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
    margin-top: 5px;
  }
  @media only screen and (max-width: 571px) {
    .upper_content {
      display: grid;
      display: -moz-grid;
      display: -ms-grid;
      grid-template-columns: repeat(1, auto);
      position: relative;
      justify-content: space-around;
      background-color: #333;
      color: #fff;
      padding:2px 13px;
      text-align: center;
    }
    .logo-container img {
      width: 60%;
      margin-top: 10px;
    }
    .list,
    .service-side h4 {
      text-align: center;
      margin-top: 10px;
    }
    .address {
      margin-left: 0;
      margin-bottom: 6px;
    }
    .location {
      margin-left: 0;
      text-align: center;
    }
    .icons a {
      margin-left: 25px;
      text-align: center;
    }
  .footer-img{
    width:100%;
    }
    .footer-img iframe{
      width:100%;
      height: 150px;
      }
  }
