* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* font-family: "Montserrat", sans-serif; */
    /* overflow: hidden; */
  }

  body{
    background-color: #f9f9f9;
  }

  .active{
    color: #ec9122 !important;
  }
   
  /* --- Customize ScrollBars --- */
  .footer .center .linkedin-content::-webkit-scrollbar {
    width: 11px;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-track {
    background: #fff;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-thumb {
    background: #676767;
    border-radius: 7px;
  }

  /* --- All Section Colored Same */
  section{
    background-color: #f9f9f9;
  }

  
  /* Header Styles Starts Here */
  header {
    background-color: #ec9122;
    padding: 5px 0;
    overflow: hidden;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .header a {
    text-decoration: none;
    color: #fff;
  }
  .header .icons i {
    margin-right: 7px;
    transition: all 0.3s ease;
  }
  .header .icons i:hover {
    scale: 1.2;
    color: #5f86c3;
  }
  .header .email i {
    margin-right: 1px;
  }

  @media screen and (max-width: 576px) {
    .header .icons i{
        margin-right: 3.5px;
    }
    .header a{
        font-size: 0.7rem;
    }
    .header .phone span{
        font-size: 0.7rem;
    }
    .header i{
        font-size: 0.8rem;
    }
	header{
        padding: 1px 0 3px 0;
    }
}
  /* Header Styles Ends Here */


  /* Nav Styles Starts Here */
  nav {
    padding: 0 !important;
    background-color: #fff !important;
    font-family: "Montserrat", sans-serif !important;
  }
  nav .nav-link {
    font-weight: 500;
  }
  nav .dropdown-menu {
    background-color: #eb9833 !important;
  }
  nav .dropdown-item {
    color: #fff !important;
    font-weight: 400;
    transition: all 0.2s ease;
  }
  nav .dropdown-item:hover,
  nav .dropdown-item:focus {
    background-color: #eb9833 !important;
    color: #ececec !important;
  }

  @media screen and (max-width: 576px) {
    nav .nav-link {
        font-size: 0.8rem !important;
      }
      nav .dropdown-item {
        font-size: 0.8rem !important;
      }
	  nav .navbar-brand img {
        height: 70px;
      }
  }

  /* .dropdown-toggle::after {
    display: none;
  } */

  /* Nav Styles Ends Here */


/* Top Image Section Starts Here */
.top-image{
    overflow: hidden;
    position: relative;
}
.top-image img{
    width: 100%;
}
.top-image h2{
    position: absolute;
    top: 44%;
    /* left: 7%; */
    color: #fff;
    font-size: 2.5rem;
    font-family: "Montserrat", sans-serif;
    background-color: #ec9122;
    padding: 1rem 2rem 1rem 7rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media screen and (max-width: 1500px) {
  .top-image h2{
    top: 40%;
}
}


@media screen and (max-width: 576px) {
  .top-image h2{
    top: 30%;
    font-size: 1.3rem;
    padding: 0.5rem 1rem 0.6rem 1rem;
  }
}
/* Top Image Section Ends Here */


/* Cards Section Starts Here */
.cards-section{
    /* padding: 1rem 0; */
    margin-top: 1rem;
  }
  .my-row{
    margin-top: 3rem;
  }
  .my-row .card-row{
    /* background-color: bisque; */
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    gap: 2%;
    width: 100%;
    padding: 1rem 0 4rem 0;
  }
  .my-row .card-row .card{
    background-color: #fff;
    width: 23%;
    border-radius: 15px;
    overflow: hidden;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 2rem;
  }
  .my-row .card-row .card .img-box img{
    width: 100%;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  .my-row .card-row .card .img-box img:hover{
    scale: 1.03;
  }
  .my-row .card-row .card .desc{
    /* background-color: red; */
    min-height: 130px;
    padding-top: 1.8rem;
  }
  .my-row .card-row .card .desc a{
    text-decoration: none;
    color: #ec9122;
    font-size: 1.1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .my-row .card-row .card .desc a:hover{
    color: rgb(78, 78, 78)
  }

  .my-row #card-row-1{
    padding: 1rem 0;
  }

  @media screen and (max-width: 576px) {
    .my-row{
      margin-top: 1.5rem;
    }
    .my-row .card-row{
      padding: 1rem 0 2rem 0;
    }
    .my-row .card-row .card{
      width: 49%;
      border-radius: 10px;
      padding: 0.5rem;
      margin-top: 1rem;
    }
    .my-row .card-row .card .desc{
      min-height: 110px;
      padding-top: 0.8rem;
    }
    .my-row .card-row .card .desc a{
      font-size: 0.8rem;
    }
    #card-row-2{
      margin-top: -1.8rem;
    }
  }
  /* Cards Section Ends Here */


   /* Footer Styles Starts Here */
   footer{
    background-color: #ec9122;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
  }
  .footer{
    display: flex;
    justify-content: space-between;
  }
  .footer .left{
    width: 29%;
    color: #fff;
  }
  .footer .left img{
    background-color: #fff;
    padding: 0.5rem 0.8rem;
    margin-top: 1rem;
  }
  .footer .left a{
    color: #fff;
  }
  .footer .left .foot-icons{
    margin-top: 2rem;
  }
  .footer .left .foot-icons i{
    margin-right: 0.7rem;
    font-size: 1.3rem;
    transition: all 0.2s ease;
  }
  .footer .left .foot-icons i:hover{
    scale: 1.1;
    color: #5f86c3;
  }
  
  .footer .center{
    width: 30%;
  }
  .footer .center h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  .footer .center img{
    width: 100%;
    /* position: relative; */
  }
  .footer .center button{
    position: absolute;
    left: 75%;
    top: 46%;
    border: none;
    outline: none;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #616161;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
  }
  .footer .center button:hover{
    background-color: #ededede4;
  }
  .footer .center .linkedin-content{
   height: 150px;
   overflow-y: scroll;
   padding: 10px;
   background-color: #d2d0d0;
  }
  
  .footer .end{
   width: 22%;
   color: #fff;
   display: flex;
   flex-direction: column;
  }
  .footer .end h3{
   font-size: 1.1rem;
  }
  .footer .end p{
   font-size: 0.8rem;
  }
  .footer .end div{
   margin-bottom: 1rem;
  }
  /* .footer .end img{
   width: 30px;
   margin-left: 90%;
   margin-top: 1.3rem;
   cursor: pointer;
   transition: all 0.3s ease;
  } */
  /* .footer .end img:hover{
   scale: 1.1;
  } */
  .footer-line .line{
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    margin-top: 1rem;
  }
  .copyright{
   display: flex;
   justify-content: space-between;
   color: #fff;
   margin-top: 7px;
   font-size: 0.9rem;
  }

  #back-to-top{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 1.2rem;
    right: 1.4rem;
    box-shadow: rgba(0, 0, 0, 0.308) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 0.3s ease;
  }
  #back-to-top:hover{
      scale: 1.1;
  }

   /* Footer Media Queries */
   @media screen and (max-width: 1400px) {
    .footer .center button{
        top: 42%;
      }
  }

  @media screen and (max-width: 576px) {
    footer{
        margin-top: 3rem;
    }
    .footer{
        flex-direction: column;
      }
      .footer .left{
        width: 100%;
      }
      .footer .left img{
        margin-top: 0.5rem;
        width: 25%;
      }
      .footer .left .foot-icons{
        margin-top: 1rem;
      }
      .footer .center{
        width: 100%;
        margin-top: 2rem;
      }
      .footer .end{
        width: 100%;
        margin-top: 2rem;
      }
      .copyright{
        font-size: 0.7rem;
       }
       #back-to-top{
        width: 20px;
        height: 20px;
        bottom: 1rem;
        right: 1rem;
      }
  }

  /* Footer Styles Ends Here */