/* @import"/CSS_FILES/index.css"; */

body {
  max-width: 100%;
    margin: 0;
    font-family: inter, sans-serif;
    overflow-x: hidden;
    text-align: justify;
    background-color: #ededed;
    color: #3B5B70;
  }
  .down-arrow {
    font-size: 16px;
  }
  .navbar {
    
    box-shadow: #333333;
    position:fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    /* padding-right: 2rem; */
    /* border:2px solid #333333; */
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 20px; */
    height: 5rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .navbar-logo {
    padding-right: 2rem;
    display: flex;
    justify-content: flex-end;
    /* float:right */
    
  }

  .navbar-logo img {
    display: flex;
    justify-content: flex-end;
    max-height: 100%;
    max-width: 14rem; /* Adjust the maximum width of the logo as needed */
  }

  .navbar-menu {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navbar-menu {
    padding-right: 2rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-right: 2rem;
}


  .navbar-menu li {
    margin-right: 3rem;
    align-items: center;
    position: relative;
  }

  .navbar-menu li:last-child {
    margin-right: 0;
  }

  .navbar-menu li a {
    text-decoration: none;
    color: #6e6e6e;
    font-weight:500;
    transition: color 0.3s ease;
    
  }

  .navbar-menu li a:hover {
    color: #8f8f8f;
    background-color: #ffffff;
    
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    top: 100%;
    min-width: 200px;
    animation: slideDown 0.3s ease forwards;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  @keyframes slideDown {
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
  }
  .dropdown-content a {
    color: #333333;
    padding: 16px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #f9f9f9;
  }

  @media only screen and (max-width: 1260px) {
    .navbar-logo {
      padding-right: 4rem;
      display: flex;
      justify-content: flex-end;
      /* float:right */
      
    }
    .navbar-logo img {
      display: flex;
      justify-content: flex-end;
      max-height: 100%;
      max-width: 13rem; /* Adjust the maximum width of the logo as needed */
    }

    .navbar-menu li {
      margin-right: 1.5rem;
      align-items: center;
      position: relative;
    }
    .navbar-menu img {
      max-width: 1rem;
      max-height: 1rem;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #ffffff;
      box-shadow: 0px 2px 4px rgba(37, 21, 21, 0.1);
      z-index: 2;
      top: 100%;
      min-width: 150px;
      animation: slideDown 0.3s ease forwards;
    }
    .navbar-menu{
      font-size: small;
    }
    .footer-logo img {
      max-width: 17rem; /* Adjust logo size as needed */
      padding-left: 4rem;
    }
  
  .footer-details p {
      margin: 5px 0;
      font-size: 17px;
      font-weight: 100;
  }
  .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 5%;
}
#tagline{
  top: 34%;
}
#tagline p{
  position: absolute;
  top: 34%; /* Adjust as needed */
  left: 50%; /* Adjust as needed */
  transform: translate(-50%, -50%); /* Center the tagline horizontally and vertically */
  /* background-color: rgba(255, 255, 255, 0.7); */
   /* Adjust opacity and color as needed */
  /* padding: 10px 20px; */
  /* border-radius: 5px; */
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  color: #ffffff; /* Adjust text color as needed */
  z-index: 1; /* Ensure the tagline is above the image */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 90%;
}
  }



.landing_area{
    padding-top:5rem ;
    overflow: hidden;
    position: relative;
    /* display: flex; */
    width: 100%;
    display: flex;
    height: 30rem;
    max-width: 100%;
    height:auto;
    max-height: 40rem;
    
}

#tagline p span {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: calc(0.06s * var(--index));
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#image{
    width: 100%;
    height:auto;
    max-height: 100%;
    overflow: hidden;
}

/* #tagline{position: absolute;
    display: inline;
    text-align: center;
    z-index: 1;
    top: 50%;
    left: 20%;
    font-size: larger ; */
    #tagline {
        position: absolute;
        top: 50%; /* Adjust as needed */
        left: 50%; /* Adjust as needed */
        transform: translate(-50%, -50%); /* Center the tagline horizontally and vertically */
        /* background-color: rgba(255, 255, 255, 0.7); */
         /* Adjust opacity and color as needed */
        /* padding: 10px 20px; */
        /* border-radius: 5px; */
        text-align: center;
        font-size: 56px;
        font-weight: 400;
        color: #ffffff; /* Adjust text color as needed */
        z-index: 1; /* Ensure the tagline is above the image */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        width: 90%;
    }

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%);
    }
}

.banner-container {
  
    margin-top: -1%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 130s linear infinite;
}

.banner img {
    /* max-width: 100%; */
    height: 3rem;
}
.intro_area{
  padding-top: 4rem;
    width: 100%;
    height: 20 rem;
    display:  flex;
    /* padding: 2rem; */
    flex-direction: row;
    
    /* justify-self: center; */
}
.left_intro{
    height: 20rem;
    /* overflow: hidden; */
    position:relative;
    display: flex;
    padding-right: 2rem;
    padding-left: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    align-items: center;
    justify-content: center;
}
.right_area{

    display: flex;
    flex-direction: column;
    padding-right: 6rem;
    /* padding-top: 2rem; */
    /* padding-bottom: 2rem; */
    /* align-items: center; */
    justify-content: center;
}
.right_area p{
    padding-top: 2rem;
    text-align: justify;
    font-size: 20px;
    color: #8f8f8f;
}
#TIDC_india_title{
  padding-left:1rem ;
}

#intro_info {
  /* padding-right: 7rem; */
  /* width:90%; */
  
  padding-left: 1rem;
  opacity: 0; /* Start with opacity 0 */
  transition: opacity 0.8s ease; /* Add transition for smoother opacity change */
}

.intro-animate {
  opacity: 1; /* Adjust opacity */
}
/* Add class when element comes into view */
#intro_info.in-view {
  animation: fadeIn 0.8s forwards; /* Adjust animation duration */
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px); /* Initial position */
  }
  to {
      opacity: 1;
      transform: translateY(0); /* Final position */
  }
}

#TIDC_india_title {
  opacity: 0; /* Start with opacity 0 */
  transform: translateX(20px); /* Start slightly to the right */
  transition: opacity 0.8s ease, transform 0.8s ease; /* Add transition for smoother opacity and transform change */
}

#TIDC_india_title.in-view {
  opacity: 1; /* Adjust opacity */
  transform: translateX(0); /* Move to the original position */
}


.Services{
    display: flex;
    flex-direction: column;
    width: 100%;
    /* padding: 3rem; */
}
.headline_services{
    margin-bottom: 1rem;
    display: flex;
    font-size: larger;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}


.list_of_services div {
  opacity: 0; /* Start with opacity 0 */
  transform: translateY(20px); /* Start slightly below */
  transition: opacity 0.8s ease, transform 0.8s ease; /* Add transition for smoother opacity and transform change */
}
.list_of_services h3{
  padding-left: 8px;
}

.list_of_services p{
  text-align: left;
  padding-left: 8px;
}
#reducingPadding {
  padding-left: 2%;
  padding-top: 0%;
}
.list_of_services div.in-view {
  opacity: 1; /* Adjust opacity */
  transform: translateY(0); /* Move to the original position */
}

.Accreditation{
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* padding: 3rem; */
}
.Accreditations_title{
    margin-bottom: 1rem;
    display: flex;
    font-size: larger;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.list_of_Accreditations{
    display: flex;
    font-size: larger;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-right:3rem;
    padding-left: 3rem;
    margin: 0%;
    margin-bottom: 3rem;
    
}



.list_of_services {
    display: flex;
    font-size: larger;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */ /* Remove this line to allow horizontal scrolling */
    padding-right: 4rem;
    padding-left: 4rem;
    margin: 0%;
    overflow-x: auto; /* Enable horizontal scrolling */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in Internet Explorer */
    
}

.list_of_services img{
    /* border-radius: 29px; */
    overflow: hidden;
    max-width: 375px;
    max-height: 246px;
}
.list_of_Accreditations img{
    /* border-radius: 29px; */
    overflow: hidden;
    max-width:fit-content;
    max-height: 246px;
}
.list_of_Accreditations h3{
    /* border-radius: 29px; */
   padding-left: 6px;
}
.list_of_services::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers */
}



.footer {
    background-color: #3B5B70;
    color: #fff;
    padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 3%;
  padding-left: 5rem;
  padding-right: 5rem;
}


.linkedin-button {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.linkedin-logo {
  width: 40px; /* Adjust the size as needed */
  height: auto;
  fill: #0077b5; /* LinkedIn blue */
  transition: fill 0.3s ease;
}

.linkedin-button:hover .linkedin-logo {
  fill: #005582; /* Darker LinkedIn blue on hover */
}
.footer-logo img {
    max-width: 19rem; /* Adjust logo size as needed */
}

.footer-details p {
    margin: 5px 0;
    font-size: 19px;
    font-weight: 100;
}
.copyright{
    display: flex;
    justify-content: center;
    /* padding: 0%; */
    margin: 0%;
    font-size: small;
    padding-top: 3%;
    padding-bottom: -5%;
}

  .Service_buttons{

    width: 100%;
    display: flex;
    justify-content: center ;
    

  }
  a {
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
  }
  
  a:hover {
    background-color: #ffffff;
    color: black;
  }
  
  .prev {
    background-color: #f1f1f1;
    color: black;
  }
  
  .next {
    background-color: #3B5B70;
    color: white;
  }
  
  .round {
    border-radius: 50%;
  }

  @media only screen and (max-width: 1080px) {
    .navbar-logo {
      padding-right: 4rem;
      display: flex;
      justify-content: flex-end;
      /* float:right */
      
    }
    .navbar-logo img {
      display: flex;
      justify-content: flex-end;
      max-height: 100%;
      max-width: 13rem; /* Adjust the maximum width of the logo as needed */
    }

    .navbar-menu li {
      margin-right: 1.2rem;
      align-items: center;
      position: relative;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #ffffff;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
      z-index: 2;
      top: 100%;
      min-width: 130px;
      animation: slideDown 0.3s ease forwards;
    }
    .navbar-menu{
      font-size: smaller;
    }
  }
  @media only screen and (max-width: 1060px) {
    .navbar-logo {
      padding-right: 4rem;
      display: flex;
      justify-content: center;
      /* float:right */
      
    }
    .navbar-logo img {
      display: flex;
      justify-content: flex-end;
      max-height: 100%;
      max-width: 13rem; /* Adjust the maximum width of the logo as needed */
    }

    .navbar-menu li {
      margin-right: 1.2rem;
      align-items: center;
      position: relative;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #ffffff;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
      z-index: 2;
      top: 100%;
      min-width: 130px;
      animation: slideDown 0.3s ease forwards;
    }
    .navbar-menu{
      font-size: smaller;
    }
  }

  @media screen and (max-width: 768px) {
      .navbar-menu {
        display: none; /* Hide navbar links */
      }
      
      .navbar-toggle {
        display: block; /* Display toggle button */
        cursor: pointer;
      }
      
      .navbar-toggle:hover {
        color: #ccc;
      }
      
      /* When toggle button is clicked, show/hide navbar links */
      .navbar-menu.show {
        display: block;
      }
    }
    /* Default navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: #fff;
  padding: 10px;
}

.navbar-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-right: 2rem;
}

.navbar-menu li {
  display: inline-block;
}

.navbar-menu li a {
  text-align: left;
  display: flex;
}

.navbar-logo {
  font-size: 24px;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #dae8eb;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#service1{
  background-color: #ffffff;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.3);
}

#shadow{
  background-color: #ffffff;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.3);
}
/* Media query for small screens */
@media screen and (max-width: 1080px) {
  .navbar-menu {
    display: none; /* Hide navbar links */
  }
  
  .navbar-toggle {
    display: block; /* Display toggle button */
    cursor: pointer;
    color: #082996;
  }
  
  .navbar-toggle:hover {
    color: #ccc;
  }
  
  /* When toggle button is clicked, show/hide navbar links */
  .navbar-menu.show {
    display: block;
  }

  /* Hide hamburger icon on large screens */
  @media screen and (min-width: 1081px) {
    .navbar-toggle {
      display: none;
    }
  }
}

/* Media query for small screens */
@media screen and (max-width: 1080px) {
  .landing_area{
      padding-top: 0%;
      height: 30rem;
  }
  #tagline{
      top:29%;
      font-size:3rem;
  }
  #image{
      height: 100%;
      width: auto;
  }
  #zoom-image{
      width: auto;
      height: 100%;
      object-fit: cover; /* Clip image to its center without stretching */
object-position: center; /* Center the clipped image */
  }
  .navbar-menu {
    display: none; /* Hide navbar links by default */
    position: absolute;
    top: 100%; /* Position dropdown below navbar */
    left: 0;
    width: 100%; /* Full width dropdown */
    background-color: #ffffff;
    padding: 10px;
    box-sizing: border-box;
  }

  .navbar-menu.show {
    display: block; /* Show navbar links when .show class is applied */
  }

  .navbar {
    position: relative; /* Ensure relative positioning for absolute positioning of dropdown */
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    padding: 1rem;
    align-items: center;
    
  }
  .Accreditations{
      flex-direction: column;
  }
  .Accreditations img{
      width: 70%;
  }
  #TIDC_india_title{
      padding: 1rem;
  }
  #tagline p{
      
      font-size:50px;
  }
  .footer img{
      padding: 1rem;
  }
  .footer-details {
      padding: 1rem;
    max-width: 100%; /* Take full width on small screens */
    margin-right: 0; /* Remove right margin */
  }
}
@media screen and (max-width: 768px) {
  .list_of_Accreditations {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
  }
  .right_area p{
      padding-top: 0rem;
  }
  .right_area{
      padding-right: 0rem;
  }
  .right_area{
      padding: 0px;
  }
  .intro_area{
      padding-top: 4rem;
      padding: 0%;
  }
  .left_intro {
      padding-top: 2rem;
      overflow: hidden;
      padding-right: 2rem; 
      object-fit: contain;
       padding-bottom: 2rem; 
      
  }
  #engg_pic_here{
      display:flex;width: 100%;
      height: 100%;
      overflow: hidden;
      justify-content: center;

  }
  #TIDC_india_title{
      display: flex;
      justify-content: center;
  }
  #accred1,
  #accred2 {
    max-width: 100%; /* Take full width on smaller screens */
  }
}
@media screen and (max-width: 700px){
  #tagline p{
      
      font-size:30px;
  }
}
@media screen and (max-width: 768px) {
  .intro_area {
    flex-direction: column; /* Stack items vertically on smaller screens */
  }

  .left_intro, .right_area {
    width: 100%;
  }

  #intro_info {
    margin-top: 10px; /* Reduce margin for smaller screens */
    /* width: 50%; */
  }

  #intro_info p {
    font-size: 14px; /* Reduce font size for smaller screens */
  }
}

@media screen and (max-width: 1350px){
  #first_one{
    padding-left: 0rem;
  }
  .dropdown a{
    font-size: smaller;
  }
}

.zoomable-image {
  transition: transform 0.5s ease-in-out; /* Smooth transition for zoom effect */
}

.zoomable-image:hover {
  transform: scale(1.1); /* Scale up the image by 10% (zoom effect) */
}
.image-container {
  overflow: hidden; /* Ensure the image does not overflow its container */
  position: relative;
  max-width: 375px;
  max-height: 246px;
  /* border-radius:29px; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 3%;
  padding-left: 6rem;
  padding-right: 6rem;
}
#TIDC_india_title {
  padding-top: 4rem;
  justify-content: center;
  display: flex;

}
.right_area img{
  display: none;
}
.right_area {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  /* padding-right: 6rem; */
  /* padding-top: 2rem; */
  /* padding-bottom: 2rem; */
  /* align-items: center; */
  justify-content: center;
}.headline_services {
  margin-bottom: 1rem;
  display: flex;
  font-size: larger;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.intro_area {
  padding: 0rem;
  padding-top: 4rem;
  width: 100%;
  height: 20rem;
  display: flex;
  
  flex-direction: row;
  /* justify-self: center; */
}
#toggle-button{
  padding-left: 2rem;
}
.right_area p {
  line-height: 1.5rem;
  padding-top: 2rem;
  text-align: justify;
  font-size: 19.6px;
  color: #000000;
  font-weight: 500;
}
.left_intro {
  height: 10rem;
  /* overflow: hidden; */
  /* position: relative; */
  display: flex;
  padding-right: 4rem;
  padding-left: 7rem;
  padding-top: 8.5rem;
  padding-bottom: 0rem;
  align-items: center;
  justify-content: center;
  width: 245%;
}
#engg_pic_here{
  max-width: 60rem;
}
#engg_pic_here img{
  element.style {
    height: 100%;
    border-radius: 10px;
    width: 100%;
}
}
@media screen and (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: #fff;
    padding: 0px;
    padding-top: 10px;
  }
  .left_intro {
    padding-top: 2rem;
    overflow: hidden;
    padding-right: 0rem;
    padding-left: 0rem;
    object-fit: contain;
    padding-bottom: 2rem;
}
#intro_info {
  /* padding-right: 7rem; */
  /* width: 90%; */
  padding-left: 1rem;
  opacity: 0;
  transition: opacity 0.8s ease;
  padding-right: 1rem;
}
}
.right_area p {
  padding-top: 2rem;
  text-align: justify;
  font-size: 22px;
  color: #3B5B70;
  font-weight: 500;    line-height: 2rem;
}
.right_area {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  /* padding-right: 6rem; */
  /* padding-top: 2rem; */
  /* padding-bottom: 2rem; */
  /* align-items: center; */
  justify-content: center;
  padding-left: 0rem;
}
.navbar-menu li a {
  text-align: left;
  display: flex;
  font-weight: normal;
}
.navbar-menu li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s ease;
}
.intro_area {
  padding-bottom: 3rem;
  padding: 0rem;
  padding-top: 3rem;
  width: 100%;
  height: 20rem;
  display: flex;
  flex-direction: row;
  /* justify-self: center; */
  padding-bottom: 3rem;
}
.left_intro {
  height: 10rem;
  /* overflow: hidden; */
  /* position: relative; */
  display: flex;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-top: 8.5rem;
  padding-bottom: 0rem;
  align-items: center;
  justify-content: center;
  width: 245%;
}
@media screen and (max-width: 480px){
  .intro_area {
    padding: 0rem;
    padding-top: 4rem;
    width: 100%;
    height: 20rem;
    display: flex;
    flex-direction: row;
    /* justify-self: center; */
  }
  .left_intro {
    height: 13rem;
    /* overflow: hidden; */
    /* position: relative; */
    display: none;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-top: 8.5rem;
    padding-bottom: 0rem;
    align-items: center;
    justify-content: center;
    width: 90%;
}
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 5%;
    padding-left: 0rem;
    padding-right: 0rem;
}
#engg_pic_here img {
  height: 80%;

}
.list_of_services {
  display: flex;
  font-size: larger;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  padding-right: 4rem;
  padding-left: 3rem;
  margin: 0%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.list_of_services img {
  border-radius: 29px;
  overflow: hidden;
  max-width: 18rem;
  /* max-height: 18rem; */
}
.list_of_Accreditations img {
  border-radius: 29px;
  overflow: hidden;
  max-width: 18rem;
  max-height: 246px;
}

.navbar-logo {
  padding-right: 3rem;
  display: flex;
  justify-content: center;
  /* float: right; */
}
#toggle-button{
  padding-left: 0rem;
}
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
  color: #fff;
  padding: 0px;
  padding-top: 10px;
}
.right_area {
  padding: 0rem;
  
}
.right_area p {
  padding-top: 0rem;
  text-align: justify;
  font-size: 18px;
  color: #3B5B70;
  font-weight: 500;
}    #intro_info {
  /* padding-right: 7rem; */
  width: 90%;
  /* padding-left: 1rem; */
  opacity: 0;
  transition: opacity 0.8s ease;
  /* padding-right: 1rem; */
}    #TIDC_india_title {
  padding-bottom: 0rem;
}    .list_of_services img {
  border-radius: 0px;
  overflow: hidden;
  max-width: 18rem;
  /* max-height: 18rem; */
}
.list_of_Accreditations img {
  border-radius: 0px;
  overflow: hidden;
  max-width: 28rem;
  max-height: 246px;
}
.list_of_Accreditations h3 {
text-align: left;}
.list_of_Accreditations p {
  text-align: left;
}
.navbar {
    
  box-shadow: #333333;
  position:fixed;}
  .landing_area{
    padding-top: 5rem;
  }
  #tagline{
    top: 40%;
  }
  #TIDC_india_title {
    padding-top: 1rem;
    justify-content: center;
    display: flex;
}
.intro_area {
  padding: 0rem;
  padding-top: 2rem;
  width: 100%;
  height: 20rem;
  display: flex;
  flex-direction: row;
  /* justify-self: center; */
}    #intro_info p {
  font-size: 14px;
  line-height:1.5rem;
}
.headline_services {
  
  padding-top: 3rem;
  padding-bottom: 2rem;
}
}
