@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Pacifico&family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;1,200;1,300&family=Rajdhani:wght@400;500;600;700&family=Roboto+Condensed:wght@400;500;600;700&family=Satisfy&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    overflow-x: clip;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
  }
  .spad {
    padding-top: 50px;
  }
  .equal-padding{
    padding: 0 16px;
  }

  /* --------------------- Nav Bar Start ------------------ */
  .header-style {
    /* height: 10vh; */
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid #5f5f5f7c;
    width: 100%;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }
  .srinesam-text{
    /* color: #231f20; */
    font-size: 1.05rem; 
    font-weight: 700;
    margin-top: 0.25rem;
    background: #1E35D5;
    color: transparent;
    background-clip: text;
  }
  .nav-link{
    border: none !important;
  }
  .nav-title{
    color: #000;
    font-size: 15px;
  }
  .mob-header{
    display: none !important;
  }
  .topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
  }
  
  .topnav #myLinks {
    display: none;
  }
  
  .topnav .mob-nav-items {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }
  .mob-nav-items {
    padding: 10px;
  }

  .topnav .icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav .mob-nav-items:hover {
    background-color: #ddd;
    color: black;
  }
  .nav-title:hover {
      color: #007bff;
  }

  /* Dropdown styles */
  .nav-item {
      position: relative;
  }
  .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 5px;
      list-style: none;
      padding: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }
  .dropdown-menu li {
      margin: 5px 0;
      font-size: 14px;
  }
  .dropdown-item {
      text-decoration: none;
      color: #333;
      padding: 5px 10px;
      display: block;
      transition: background-color 0.3s;
  }
  .dropdown-item:hover {
      background-color: #f0f0f0;
      color: #007bff;
  }
  /* Show dropdown on hover */
  .nav-item:hover .dropdown-menu {
      display: block;
  }

  .dropdown-menu-1 {
    display: block;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    list-style: none;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1010;
  }
  .dropdown-menu-1 li {
      margin: 5px 0;
      font-size: 14px;
  }
  .dropdown-item-1 {
      text-decoration: none;
      color: #333;
      padding: 5px 10px;
      display: block;
      transition: background-color 0.3s;
  }
  .dropdown-item-1:hover {
      background-color: #f0f0f0;
      color: #007bff;
  }
  /* Show dropdown on hover */
  .dropdown-item:hover .dropdown-menu-1 {
      display: block !important;
  }



  /* --------------------- Nav Bar End ------------------ */
  
  .landing-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
  }
  .landing-page-inside{
    height: 100%;
    width: 100%;
  }
  .landing-page-inside::before {
    content: ""; /* Required for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 2; /* Place above the background image but below the content */
    pointer-events: none; /* Prevent interference with clicks */
  }

  .landing-page .content{
    width: 100%;
    position: absolute;
    bottom: 30%;
    left: 50%;
    z-index: 3;
  }
  .slide-text-h1 {
    width: 100%;
    text-shadow: 0px 0px 2px #000000ee;
    transform: translate(-50%, -50%); /* Center the text */
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    opacity: 0; /* Start fully transparent */
    transition: opacity 0.3s ease; /* Smooth fade-out/in */
  }

  .slide-text-h3 {
    width: 100%;
    text-shadow: 0px 0px 2px #000000ea;
    transform: translate(-50%, -50%); /* Center the text */
    font-size: 36px;
    font-weight: 500;
    color: white;
    text-align: center;
    opacity: 0; /* Start fully transparent */
    transition: opacity 0.3s ease; /* Smooth fade-out/in */
  }
  
  .fade-up {
    animation: fadeUp 1s forwards; /* Animation persists at the end state */
  }
  
  @keyframes fadeUp {
    0% {
      transform: translate(-50%, 50%); /* Start below center */
      opacity: 0; /* Invisible */
    }
    100% {
      transform: translate(-50%, -50%); /* Centered */
      opacity: 1; /* Fully visible */
    }
  }
  
  .content {
    text-align: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .content h1 {
    font-size: 3em;
    font-weight: bold;
  }
  
  .arrow {
    position: absolute;
    bottom: 60px;
    background-color: #a1b7dfac; /* Semi-transparent background */
    color: white;
    border: none;
    font-size: 20px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 2; /* Ensure buttons are above the text */
    border-radius: 50%;
    margin: 0 5px;
    transition: transform 0.3s ease;
  }
  
  .arrow:hover {
    transform: scale(1.1); /* Slight zoom on hover */
  }
  
  .left {
    right: 130px; /* Position the left arrow slightly away from the right arrow */
  }
  
  .right {
    right: 60px; /* Align the right arrow to the bottom-right corner */
  }
  
/*  --------------------  Cilent Scroll Start ---------------------------  */

#Client-Scroll {
  background-color: #000000;
}
.logo-carousel {
  overflow: hidden;
  width: 100%;  /* Adjust carousel width */
  background-color: white;
  padding: 10px;
  position: relative;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}
.Client-heading{
  height: 100%;
  width: 10%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background: #fff;
}
.Client-heading h2{
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 20px;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
  border-bottom: 1px solid #cecece;
  font-weight: 700;
}
.infinity-slider-items{
  gap: 20px;
  animation: scrolling 10s linear infinite;
  flex-wrap:nowrap;
  mix-blend-mode: normal;
}
.row>*{
  flex-shrink: 1 !important;
}
.infinity-slider-items img{
  width: 100%;
  margin: 10px 20px;
  filter: grayscale(1);
}
.infinity-slider-items img:hover{
  filter: grayscale(0);
  cursor: pointer;
}
/* Keyframes for seamless infinite scrolling */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Scroll exactly halfway */
  }
}

/*  --------------------  Cilent Scroll End ---------------------------  */

/*  -------------------- About Start ---------------------------  */
#About{
  padding-top: 80px;
  padding-bottom: 20px;
}
.about-title{
  width: 100%;
  font-size: 16px;
}
.about-section .left-img{
  width: 120%;
  position: relative;
  left: -100px;
}
.about-section h5{
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 12px;
}
.about-section p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a4a4a;
  margin-top: 15px;
}
.about-section .row{
  padding-top: 30px !important; 
}
.icon-title{
  font-size: 13px !important;
}
.circle-div{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2896ea2e;
  width: 85px;
  height: 85px;
  border-radius: 100%;
}
#readmore{
  display: none;
}
.about-mob{
  display: inline;
}
/*  -------------------- About End ---------------------------  */


/*  -------------------- Service Start ------------------------- */

.event-container{
  padding: 0px 38px;
}
.event .section-title {
  margin-bottom: 0px;
  position: relative;
}
.section-title {
  padding: 0 12px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0px;
  font-family: 'Poppins', sans-serif;
}
.section-title h5 {
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  margin: 20px 0;
}
.event__slider{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* padding: 10px 0px 20px 0px; */
}
.event__slider .event-padding{
  height: 300px;
}
.event-gradiant{
  height: 100%;
}
.event-padding:nth-child(1), .event-padding:nth-child(4){
  padding: 0.5rem 0.5rem 0.5rem 0px;
}
.event-padding:nth-child(2), .event-padding:nth-child(5){
  padding: 0.5rem 0.5rem;
}
.event-padding:nth-child(3), .event-padding:nth-child(6){
  padding: 0.5rem 0px 0.5rem 0.5rem;
}
.event_items{
  width: 100%;
  font-size: 20px;
  font-weight: 600;
}
.event__item {
  font-family: 'Poppins', sans-serif;
}
.event__item__pic {
  height: 400px;
  position: relative;
}
.see-more{
  width: 100%;
  text-align: center;
  display: none;
}
.see-more .btn{
  background: #1E35D5;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
}
.hover-container{
  position: relative;
  width: 100%;
}
.hover-content{
  display: none;
  transition: 1s;
}
.hover-content a{
  text-decoration: none;
  color: rgb(255, 255, 255) !important;
}
.hover-content p{
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}
.event__item__pic:hover .hover-content{
  display: flex;
  flex-wrap: wrap;
  transition: 1s ease-in-out;
  cursor: pointer;
}
.event__item__pic:hover .event__name::before{
  background: linear-gradient(to bottom,rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgb(0, 0, 0, 0.7));
}
.movie2{
  background: url('./assets/img/first_event.png');
}
.movie3{
  background: url('./assets/img/second_event.png');
}
.movie4{
  background: url('./assets/img/third_event.png');
}
.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.event__name{
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 999;
}
.event__name::before{
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom,#ffffff00, rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  pointer-events: none; /* Ensures the overlay doesn't interfere with pointer events */
}
.check-btn{
  border: 1px solid #fff;
  background-color: #fff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 3px;
  font-weight: 500;
  color: #1E35D5;
}
.check-btn a{
  color: #1E35D5 !important;
}
/*  -------------------- Service End ------------------------- */

/*  -------------------- Facts Start ------------------------- */
#Facts {
  padding: 120px 0;
  background-image: url('../images/logos/Mask.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.facts-heading {
  padding: 0 38px;
  padding-bottom: 80px;
}
.facts-heading h4 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.facts-heading p {
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
}
.count-container {
  /*width: 20%;*/
  width: 25%;
}
.count-container i {
  font-size: 60px;
  color: #001a2e;
}
.project-count{
  font-weight: 700;
  font-size: 26px;
  width: 100%;
}
.count-container h6{
  font-size: 15px;
  color: #291554;
}
.desktop-view{
  display: none;
}
.tab-view{
  display: none;
}
/*  -------------------- Facts End ------------------------- */


/* --------------------- People Start ----------------------- */
#People{
  padding: 100px 18px 30px 18px;
}
.list-container li{
  padding: 15px 0;
}
.list-container h3{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.list-container p{
  font-size: 13px;
}
.people-img{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.main-heading{
  font-size: 24px !important;
  font-weight: 700 !important;
}
/* --------------------- People End ----------------------- */


/* --------------------- Suggestion Start ----------------------- */
#Suggestion{
  padding: 40px 18px;
  background-image: linear-gradient(to bottom, #e7f5fd, #f0e4f8);
}
.Suggestion-container h1{
  padding: 10px 0;
  font-size: 42px;
  font-weight: 500;
  color: #1E35D5;
}
.Suggestion-container h4{
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
}
.Suggestion-container button{
  font-size: 14px;
  background: #1E35D5;
  border: 1.5px solid #1E35D5;
  color: #fff;
  padding: 8px 15px;
  font-weight: 500;
}
.Suggestion-container button:hover{
  background: #035ab7;
  color: #fff;
  border: 1.5px solid #035ab7;
}
.illustrator{
  width: 100%;
}
/* --------------------- Suggestion End ----------------------- */

.horizontal-line{
  margin: 0 50px;
}

/* --------------------- Completed Projects Start ----------------------- */
#Project-Slider{
  padding: 80px 50px;
  background: #fff;
}
.slider-spad{
  padding-top: 80px;
}
.Gallery-container h4{
  margin-top: 0px;
  font-size: 24px;
  font-weight: 700;
  padding: 0;
}
.Slider-side-content{
  position: relative;
  width: 50%;
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
}
.Slider-side-content-1{
  position: relative;
  width: 50%;
  padding: 20px 0px 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Slider-side-content h5{
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.Slider-side-content h6{
  font-size: 16px;
  font-weight: 600;
  color: #1E35D5;
}
.Slider-side-content button{
  padding: 10px 16px;
  font-size: 13px;
  border: none;
  color: #1E35D5;
  border-radius: 100%;
  font-weight: 500;
  background-color: #e7f5fd;
}
.slider-container {
  position: relative;
  width: 50%;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  height: 380px;
  min-width: 100%;
  transition: opacity 0.5s ease;
}
.slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.slide .location{
  position: sticky;
  bottom: 30px;
  padding: 15px 30px;
  width: fit-content;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #fff;
  color: #000;
  text-align: center;
  font-weight: 600;
  box-shadow: 2px 2px 10px #0000001a;
}
.location-icon{
  width: 14px !important;
  margin-right: 10px;
}
.prev-nxt-buttons {
  position: absolute;
  top: 90%;
  left: 0%;
  width: 16%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.prev-nxt-btn {
  background-color: rgba(25, 25, 25, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.prev-nxt-btn:hover {
  background-color: #2aa3f0;
  color: #fff;
}
/* --------------------- Completed Projects End ----------------------- */

/* --------------------- Solution Start ----------------------- */
#Solution{
  padding: 50px;
}
.Solution-container{
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.Solution-heading h2{
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 700;
}
.Solution-heading h5{
  margin: 20px 0;
  font-size: 16px;
  font-weight: 500;
}
.Solution-heading p{
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}
.Solution-heading button{
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border: 1.5px solid #1E35D5;
  background: #1E35D5;
  color: #fff;
  border-radius: 3px;
}
.grid-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 20px;
  width: 100%; /* Adjust the overall width */
  height: 65vh; /* Adjust the height */
  transition: grid-template-columns 0.3s ease; /* Smooth transition */
}
.grid-item {
  background-color: #7e7e7e;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s ease; /* Smooth transition */
}

.grid-item .Image-style::before {
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #ffffff00, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.grid-item .card-body .card-title{
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.service-gray{
  filter: grayscale(1);
}
.service-gray:hover{
  filter: grayscale(0);
}
.Image-style{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hover-content p{
  margin-bottom: 14px !important;
  padding: 0;
  font-size: 13px;
  color: #ffffffc4;
}
.grid-item:hover .card-title {
  display: none;
}
.grid-item:hover .card-body {
  writing-mode: initial;
}
.grid-item:hover .hover-content {
  color: #ffffffc4;
  position: absolute;
  bottom: 10px;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
}
.grid-item:hover .hover-content button{
  font-size: 14px;
  padding: 4px 12px;
  border: 1px solid gray;
  color: #fff;
  background-color: transparent;
}
/* --------------------- Solution End ----------------------- */


/* --------------------- Works Start ----------------------- */
#Works{
  padding: 30px 18px 50px 18px;
}
.checkout-btn{
  background: #1E35D5;
  color: #fff;
  border: none;
  font-size: 13px;
  border-radius: 3px;
  padding: 8px 16px;
}
.Explore-btn{
  display: none !important;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 12px 32px 32px 32px;
}
.image-item img {
  width: 100%;
  /* height: 100%; */
  height: 240px;
  background-size: auto;
  display: block;
  /* border-radius: 4px; */
}
.image-grid-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  row-gap: 50px;
  padding: 0 32px;
}
/* --------------------- Works End ----------------------- */


/* --------------------- Feedback Start ----------------------- */
#feedback {
  padding: 50px 50px 20px;
  border-bottom: 1.5px solid #eadaf500;
}
.feeds-heading{
  margin-bottom: 30px;
}
.feeds-heading h4{
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.feeds-heading p{
  font-size: 16px;
  font-weight: 500;
}
.feedback-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #f0e4f8af, #fff);
}

.feedback-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.prev-btn,
.next-btn {
  position: relative;
  top: 70px;
  color: #434343a1;
  background-color: transparent;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  transform: scale(1.1);
}

.feedback-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.customer-side {
  display: flex;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding-top: 20px;
}
.customer-side img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.customer-side img:hover {
  opacity: 0.8;
}
.feedback-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 2;
  background: transparent;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.img-circle-background{
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #56bdf3, #9e47d0);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}
.feedback-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  /* margin-bottom: 15px; */
}

.feedback-card h5 {
  font-size: 16px;
  width: 100%;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
}
.feedback-card p {
  font-size: 12.5px;
  color: #555;
  line-height: 1.8;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
}
.main-feed{
  display: flex;
  height: 100%;
}
.star-container{
  margin-bottom: 8px;
}
.star-container img{
  width: 16px !important;
  height: 16px !important;
}
/* --------------------- Feedback End ----------------------- */

/* --------------------- Contact Form Start ----------------------- */
#contact{
  padding: 40px 50px;
}
.contact .info-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
  background: #fff;
  border-radius: 3px;
}
.contact .info-box i {
  font-size: 22px;
  color: #0451EA;
  padding: 8px;
} 
.contact .info-box h3 {
  font-size: 16px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}  
.contact .info-box p {
  padding: 0;
  width: 100%;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0 !important;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
  border-radius: 3px;
}  
.contact .php-email-form .error-message {
  display: none;
  color: #d80000;
  background: #ffffff;
  padding: 0px;
  font-size: 12px;
  font-weight: 600;
}
.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}  
.contact .php-email-form .sent-message {
  display: none;
  padding: 0px;
  background: #ffffff;
  color: #24A734;
  font-size: 12px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
}
.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #1E35D5;
}  
.contact .php-email-form input {
  padding: 10px 15px;
}  
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #1E35D5;
  border: 0;
  border-radius: 3px;
  padding: 8px 24px;
  color: #fff;
  font-size: 12px;
} 
.map-title {
  font-size: 16px;
  color: #777777;
  font-weight: 700;
  margin-bottom: 20px;
}
/* --------------------- Contact Form End ----------------------- */


/* --------------------- Footer Start ----------------------- */
#Footer{
  padding-top: 30px;
}
.footer-first-section{
  padding: 30px 50px !important;
  background-color: #e6e6ed;
}
.footer-second-section{
  padding: 40px 50px !important;
  background-color: #f3f3f6 !important;
}
.footer-second-section .first-col .div1 h3{
  font-size: 22px;
  font-weight: 600;
}
.footer-second-section .first-col .div1 p{
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
}
.footer-first-section .first-col{
  border-right: 1px solid gray;
}
.footer-first-section .first-col .div-1, .footer-first-section .first-col .div-2, .footer-first-section .second-col .div-1, .footer-first-section .second-col .div-2{
  width: 50%
}
.second-col .div-2 input{
  width: 80%;
  border-color: transparent;
}
.second-col .div-2 input:focus{
  border: none;
  outline: none;
}
.second-col .div-2 button{
  width: 18%;
  background: #1E35D5;
  border-radius:50%;
  border: none;
}
.second-col .service-list{
  width: 45%;
  height: 100%;
}
.second-col .contact-div{
  width: 55%;
  height: 100%;
}
.list-items a{
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14px;
}
.divider-leading{
  color: #49546b !important;
}
/* --------------------- Footer End ----------------------- */

.design-rights{
  width: 100%;
  display: flex;
}
.design-rights p{
  width: 50%;
}
.rights{
  text-align: start;
}
.design{
  text-align: end;
}
.design-develop{
  background-color: #10113129; 
  height: 40px;
  font-size: 11px;
  color: #535353;
}



/* --------------------  Media Query  --------------------- */

  @media only screen and (min-width: 320px) and (max-width: 767px){
    .header-style{
      display: none !important;
    }
    .srinesam-text{
      font-size: 1rem;
      margin-top: 0.35rem;
    }
    .mob-header{
      display: flex !important;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      position: fixed;
      left: 0;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.3);
      border-bottom: 1px solid #5f5f5f7c;
      width: 100%;
    }
    .accordion-button{
      font-size: 16px;
      color: #fff;
      background-color: transparent;
    }
    .accordion-button:focus{
      outline: none;
      box-shadow: none;
    }
    .accordion-button:not(.collapsed){
      background-color: transparent !important;
      box-shadow: none;
      color: #fff;
    }
    .accordion-button:not(.collapsed)::after {
      background-image: url('../images/logos/down-arrow.svg');
    }
    .accordion-button::after {
      background-image: url('../images/logos/down-arrow.svg');
      transform: rotate(0deg);
    }
    .accordion-item{
      color: #fff;
      background-color: transparent;
    }
    .topnav .mob-nav-items:hover {
      color: #fff;
      background-color: transparent;
    }
    .topnav{
      background: transparent;
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
    }
    .mob-logo{
        border-bottom: 1px solid #adadad46;
    }
    .fa{
        font-size: initial !important;
    }
    .topnav .mob-nav-items {
        color: #ffffff;
        padding: 14px 24px;
        text-decoration: none;
        font-size: 16px;
        display: flex;
    }
    .mob-nav-items {
        font-size: 16px;
        padding: 10px;
    }
    .topnav .icon{
        height: 55px;
        padding: 0 14px;
        background-color: transparent;
        color: #000;
    }
    .logo-carousel{
      padding: 0 !important;
    }
    .Client-heading{
      width: 22%;
    }
    .Client-heading h2{
      display: flex;
      width: 100%;
      text-align: center;
      font-size: 20px !important;
      justify-content: center;
      align-items: center;
    }
    .about-section .left-img{
      width: 100% !important;
      position: relative;
      left: 0px;
    }
    .about-section .row{
      padding-top: 0px !important; 
    }
    .equal-padding{
      padding: 0 22px;
    }
    .event__slider{
      padding: 0 !important;
    }
    .event-padding{
      padding: 0.5rem !important;
    }
    .event-container {
      padding: 0 10px;
    }
    .event__item__pic .event__name::before{
      background: linear-gradient(to bottom,rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgb(0, 0, 0, 0.7));
    }
    .section-title h1{
      font-size: 38px;
    }
    .section-title h2{
      font-size: 24px;
    }
    .hover-content{
      display: flex !important;
      flex-wrap: wrap !important;
    }
    .grid-container {
      height: 100%;
      grid-template-columns: repeat(1, 1fr);
    }
    .grid-container .event-padding{
      padding: 0 !important;
    }
    .grid-container .hover-container{
      padding: 30px !important;
      margin-bottom: 0 !important;
    }
    .service-gray{
      filter: grayscale(0) !important;
    }
    .event_items{
      font-size: 16px;
    }
    .count-container i{
      font-size: 60px !important;
    }
    .hover-content p{
      font-size: 13px;
    }
    .slide-text-h1 {
      /* position: absolute;
      bottom: 50%;
      left: 50%; */
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 10px;
    }
    .landing-page .content{
      bottom: 40%;
    }
    .slide-text-h3 {
      font-size: 24px;
    }
    /* ------ Srinesam start ------ */
    #Project-Slider{
      padding: 30px 0;
    }
    .Slider-side-content{
      width: 100%;
      padding: 20px 16px;
    }
    .slider-container{
      width: calc(100% - 30px);
      margin: 15px;
      height: 320px;
    }
    .mob-view-767{
      display: none !important;
    }
    .about-mob{
      display: none;
    }
    #Suggestion{
      padding: 40px 16px;
    }
    #Suggestion .equal-padding{
      padding: 0;
    }
    #Suggestion .equal-padding .about-section{
      padding: 0 !important;
    }
    .Suggestion-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .Suggestion-container h1{
      width: 100%;
      text-align: center;
      font-size: 32px;
    }
    .Suggestion-container h4{
      width: 100%;
      text-align: center;
      font-size: 22px;
    }
    .illustrator{
      width: 80%;
    }
    .prev-nxt-buttons {
      position: absolute;
      top: -70%;
      left: 0%;
      width: calc(100% - 30px);
      margin: 0 15px;
      z-index: 3;
    }
    .Slider-side-content button {
      padding: 10px 18px;
      color: #fff;
      font-size: 16px;
      background-color: #828282d1;
    }
    .contact .info-box i {
      font-size: 20px !important;
    }
    .map-box {
      padding: 8px !important;
    }
    .map-title {
      margin-bottom: 20px;
      margin-top: 15px;
    }
    .fa-phone:before {
      font-size: 20px !important;
    }
    .contact-form-content{
      display: flex;
      justify-content: center !important;
    }
    .desktop-view{
      display: block;
    }
    .desktop-view button{
      display: none;
    }
    .tab-view{
      display: block;
    }
    .image-item img {
      height: 180px;
    }
    .image-grid {
      padding: 22px 0px;
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
    }
    #Works {
      padding: 30px 16px 50px 16px;
    }
    .footer-first-section .first-col{
      border-right: none;
      margin-bottom: 14px;
      padding: 0 !important;
    }
    .footer-first-section .second-col{
      padding: 0 !important;
    }
    .first-col, .second-col{
      width: 100%;
    }
    .footer-first-section{
      padding: 30px 26px !important;
    }
    .footer-second-section{
      padding: 30px 16px !important;
    }
    .footer-second-section .second-col{
      padding: 12px;
    }
    .footer-second-section .second-col .div1 ul{
      padding-left: 0;
    }
    .design-rights{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
    }
    .design-develop{
      height: 50px;
    }
    .design-rights p{
      width: 100%;
      padding: 3px 0;
    }
    .rights, .design{
      text-align: center;
    }
    .people-img{
      justify-content: center;
    }
    .people-img img{
      width: 90%;
      margin-bottom: 20px;
    }

    

    .nav-toggle {
      position: relative;
      padding: 10px;
      background: transparent;
      border: 1px solid transparent;
      margin: 8px 0;
      top: 50%;
      left: 75%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      display: block;
      justify-content: flex-end;
    }
    .nav-toggle:focus {
      outline-width: 0;
    }
    .nav-toggle [class*='bar-'] {
      background: #131313;
      display: block;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transition: .2s ease all;
              transition: .2s ease all;
      border-radius: 8px;
      height: 3px;
      width: 22px;
      margin-bottom: 4px;
    }
    .nav-toggle [class*='bar-bot'] {
      width: 14px;
    }
    .nav-toggle [class*='bar-top'] {
      width: 18px;
    }
    .nav-toggle .bar-bot {
      margin-bottom: 0;
    }
    .opened .bar-top {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-transform-origin: 5% 15%;
              transform-origin: 5% 15%;
    }
    .opened .bar-mid {
      opacity: 0;
    }
    .opened .bar-bot {
      -webkit-transform: rotate(45deg);
              transform: rotate(-45deg);
      -webkit-transform-origin: 0% 95%;
              transform-origin: 0% 95%;
    }
    .second-col .service-list, .second-col .contact-div{
      width: 100% !important;
    }
    .list-items a{
      font-size: 13px;
      padding: 0 6px;
      border-right: 1px solid gray;
    }
    .list-items{
      display: inline-block;
    }
    .second-col .div-2 input{
      width: 72%;
    }
    .second-col .div-2 button{
      width: 25%;
    }
    .about-page, #Works-page, #Project-Slider, #extend {
      margin-top: 20px;
    }
  }


  @media only screen and (min-width: 320px) and (max-width: 425px){
    .slide {
      width: 25px !important;
    }
  }

  @media only screen and (min-width: 425px) and (max-width: 576px){
    .slide {
      width: 34px !important;
    }
  }

  @media only screen and (min-width: 320px) and (max-width: 520px){
    .Slider-side-content {
      height: 215px !important;
    }
    .Slider-side-content h6{
      margin-top: 20px;
    }
  }
  
  @media only screen and (min-width: 320px) and (max-width: 576px){
    .right {
      right: 20px;
    }
    .left {
      right: 80px;
    }
    .slide-text-h1 {
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 10px;
    }
    .Client-heading h2{
      display: flex;
      width: 100%;
      text-align: center;
      font-size: 16px !important;
      justify-content: center;
      align-items: center;
    }
    .landing-page .content{
      bottom: 35%;
    }
    .slide-text-h1 {
      margin-bottom: 40px;
    }
    .equal-padding{
      padding: 0 22px;
    }
    #About {
      padding-top: 40px;
      padding-bottom: 0px;
    }
    #About .equal-padding{
      padding: 0;
    }
    .about-title{
      text-align: center;
      font-size: 16px !important;
      margin-top: 0 !important;
      margin-bottom: 20px !important;
    }
    .about-section h5{
      width: 100%;
      text-align: center;
    }
    .about-section p{
      margin-bottom: 40px;
      font-size: 14px;
    }
    .circle-div {
      width: 60px;
      height: 60px;
    }
    .logo-carousel {
      padding: 0px;
    }
    .logo img {
      width: auto;
    }
    .event-container{
      padding: 0 1rem;
    }
    #Facts{
      margin: 0;
    }
    #Academy{
      padding-top: 40px !important;
    }
    .section-title {
      padding: 0 !important;
    }
    .section-title h1{
      font-size: 38px;
      top: -40px;
    }
    .section-title h2{
      font-size: 24px;
      font-weight: 700;
    }
    .section-title h5, .section-title h2, .facts-heading h4, .facts-heading p, .Solution-heading h2, .Solution-heading p, #People .about-section p{
      width: 100%;
      text-align: center;
    }
    .Solution-heading{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .event-padding{
      padding: 0.5rem 0 1rem 0 !important;
    }
    .event__item__pic{
      height: 250px;
    }
    .event_items{
      font-size: 18px;
    }
    .hover-container{
      position: relative;
      width: 100%;
      margin-bottom: 0 !important;
      padding: 1rem;
    }
    .hover-content p{
      font-size: 14px;
    }
    .list-content{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    #Solution{
      padding-top: 25px;
    }
    .list-container li p{
      margin-bottom: 30px;
    }
    #People {
      padding: 50px 16px 0px 16px !important; 
    }
    #feedback{
      padding: 40px 0 !important;
    }
    .feedback-card {
      padding: 20px 0;
    }
    .image-grid {
      padding: 0;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .image-item img {
      height: 160px;
    }
    #Works {
      padding: 30px 16px;
    }
    .checkout-btn{
      margin-top: 20px;
    }
    .contact ul{
      margin-bottom: 0 !important;
    }
    /* Footer */
    .design-develop p{
      text-align: center !important;
    }
    .div-1 h4{
      font-size: 16px !important;
    }
    #Footer{
      padding-top: 5px !important;
    }
  }

  @media only screen and (min-width: 320px) and (max-width: 668px){
    .mob-view{
      display: none !important;
    }
    .infinity-slider-items{
      gap: 5px;
      animation: scrolling 10s linear infinite;
    }
    .infinity-slider-items img{
      margin: 10px 10px;
      filter: grayscale(0) !important;
    }
    /* Keyframes for seamless infinite scrolling */
    @keyframes scrolling {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-90%); /* Scroll exactly halfway */
      }
    }
    #About .equal-padding{
      padding: 0 !important;
    }
    #readmore{
      display: inline;
    }
    .grid-container {
      gap: 20px;
    }
    .grid-item .Image-style::before {
      background: linear-gradient(to bottom, #ffffff00, rgb(0 0 0 / 20%), rgb(0 0 0 / 50%), rgb(0 0 0 / 80%));
    }
    .grid-item .card-body{
        height: 250px;
        padding-bottom: 1rem !important;
        display: flex !important;
        align-items: end;
        flex-wrap: wrap !important;
        writing-mode: initial !important;
    }
    .card-body{
      padding: 0 !important;
    }
    .grid-item .Image-style::before {
      background: linear-gradient(to bottom, #ffffff00, rgb(0 0 0 / 20%), rgb(0 0 0 / 50%), rgb(0 0 0 / 80%));
    }
    .grid-item .card-body{
        height: 250px;
        padding-bottom: 1rem !important;
        display: flex !important;
        align-items: end;
        flex-wrap: wrap !important;
        writing-mode: initial !important;
    }
    .hover-content{
      display: flex !important;
      flex-wrap: wrap !important;
    }
    .hover-content p{
        font-size: 13px;
        color: #ffffffc4;
    }
    .hover-content h5{
        width: 100% !important; 
    }
    #Facts {
      padding: 50px 0 0 0 !important;
      background-image: linear-gradient(to bottom, #fff, #edf1fc) !important;
    }
    .facts-heading {
      padding: 0 4px !important;
      padding-bottom: 0px !important;
    }
    .desktop-view{
      display: block;
    }
    .desktop-view button{
      display: inline-block;
      font-size: 14px;
      font-weight: 500;
      padding: 6px 16px;
      border: 1.5px solid #1E35D5;
      background: #1E35D5;
      color: #fff;
      border-radius: 3px;
    }
    .project-count{
      padding: 10px 0 !important;
    }
    .count-container {
      width: 50%;
      margin-bottom: 50px;
    }
    /*.count-container:last-child {*/
    /*  width: 100% !important;*/
    /*}*/
    .see-more{
      display: block;
    }
    #Solution {
      padding: 25px 16px 40px 16px;
    }
    .Solution-container {
      padding-bottom: 0px;
    }
    .grid-item {
      margin-bottom: 20px;
    }
    .grid-item:last-child {
      margin-bottom: 0px;
    }
    .grid-item .card-title {
        display: none;
    }
    .grid-item .hover-content {
      color: #ffffffc4 !important;
    }
    .grid-item .hover-content button{
        font-size: 14px;
        padding: 4px 12px;
        border: 1px solid gray;
        color: #fff;
        background-color: transparent;
    }
    .service-gray{
      filter: grayscale(0) !important;
    }
    .Suggestion-container h1{
      font-size: 24px;
      margin-bottom: 0;
      padding: 20px 0;
    }
    .Suggestion-container h4{
      font-size: 16px;
    }
    .Suggestion-container h5{
      font-size: 20px;
      margin-top: 50px;
      margin-bottom: 0 !important;
    }
    #People {
      padding: 50px 16px 30px 16px;
    }
    #People .equal-padding, #People .about-section{
      padding: 0 !important;
    }
    .list-container li{
      padding: 10px 0;
    }
    .list-container li:last-child{
      padding: 0;
    }
    .list-container li p{
      margin-bottom: 30px;
    }
    .horizontal-line {
      margin: 0px 16px;
    }
    #Project-Slider {
      padding: 30px 16px;
    }
    .Slider-side-content {
      padding: 0 !important;
    }
    .slider-container {
      width: 100% !important;
      margin: 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 280px;
      margin-bottom: 30px;
    }
    .prev-nxt-buttons {
      position: absolute;
      top: -90%;
      left: 0%;
      width: calc(100% - 20px) !important;
      margin: 0 10px !important;
      z-index: 3;
    }
    .Slider-side-content button {
      padding: 10px 18px;
      color: #fff;
      font-size: 16px;
      background-color: #828282d1;
    }
    .slide {
      height: 280px;
      width: 40px;
    }
    .pro-slide{
      width: 100% !important;
    }
    .slide img {
        height: 280px;
    }
    .slide .location {
        height: 50px;
    }
    #feedback{
      padding: 40px 16px;
    }
    .main-feed{
      width: 100%;
    }
    #contact{
      padding: 40px 16px;
    }
    .footer-second-section .first-col .div1 p{
      font-size: 13px;
    }
  }

  @media only screen and (min-width: 767px) and (max-width: 992px){
    .srinesam-text{
        font-size: 13px;
    }
    .nav-title{
        font-size: 13px;
        line-height: 16px;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .logo-carousel{
      padding: 0 !important;
    }
    .landing-page .content{
      bottom: 40%;
    }
    .header-contact{
      font-size: 12px !important;
    }
    .equal-padding{
      padding: 0 22px;
    }
    .slide-text-h3{
      bottom: 36% !important;
    }
    .event-padding{
      padding: 0.5rem !important;
    }
    .event__slider{
      padding: 0 !important;
    }
    .event-container {
      padding: 0 10px;
    }
    .event__item__pic .event__name::before{
      background: linear-gradient(to bottom,rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgb(0, 0, 0, 0.7));
    }
    .hover-content{
      display: flex !important;
      flex-wrap: wrap !important;
    }
    .grid-container {
      height: 100%;
      grid-template-columns: repeat(1, 1fr);
    }
    .grid-container .event-padding{
      padding: 0 !important;
    }
    .grid-container .hover-container{
      padding: 30px !important;
      margin-bottom: 0 !important;
    }
    .service-gray{
      filter: grayscale(0) !important;
    }
    .image-grid {
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
    }
    .desktop-view button{
      display: none;
    }
    .desktop-view{
      display: block;
    }
  }

  @media only screen and (min-width: 992px) and (max-width: 1024px){
    .event-container{
        padding: 0 1rem;
    }
  }
  @media only screen and (min-width: 767px) and (max-width: 825px){
    .Client-heading{
      width: 22%;
    }
    .Client-heading h2{
      display: flex;
      width: 100%;
      text-align: center;
      font-size: 20px !important;
      justify-content: center;
      align-items: center;
    }
    .second-col .div-2 input{
      width: 70%;
    }
    .second-col .div-2 button{
      width: 25%;
    }
  }
  @media only screen and (min-width: 825px) and (max-width: 1105px){
    .Client-heading{
      width: 15%;
    }
    .Client-heading h2{
      display: flex;
      width: 100%;
      text-align: center !important;
      font-size: 20px !important;
      justify-content: center;
      align-items: center;
    }
    .second-col .div-2 input{
      width: 72%;
    }
    .second-col .div-2 button{
      width: 25%;
    }
  }