/*------------------------------------------------------------------
    File Name: custom.css
-------------------------------------------------------------------*/

/** ADD YOUR AWESOME CODES HERE **/

.emailbox
{
    position: fixed;
    z-index: 2;
    bottom: 2vh;
    right: 1.5vw;
    padding: 0.5em;
}

.chatbot-box
{
    position: fixed;
    z-index: 2;
    bottom: 12vh;
    right: 1.3vw;
    padding: 0.5em;
}


.emailimage
{
    height:8vh;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.chatbot-image
{
    height:8.3vh;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.emailimage:hover
{
    transform: scale(1.2)
}

.chatbot-image:hover
{
    transform:scale(1.2)
}

.form_wrapper 
{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  border-radius: 1em;
  overflow: hidden; 
  padding: 0; 
  width: 41vw;
  background-color: #f8f8f8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.popup_form_contant
{
  padding:20px;
  padding-bottom:.7rem;
}

.contact_topbar
{
  width: 100%;
  height: 4vh;
  background-color: rgb(23, 165, 233); 
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 0.5rem;
  padding-top:1vh;
}

.contact_input
{
  border: solid #e1e1e1 1px;
	width: 100%;
	background: rgb(226, 226, 226);
	min-height: 50px;
	padding: 5px 20px;
	line-height: normal;
	border-radius: 0px;
	margin-bottom: 10px;
	font-size: 14px;
	color: black;
}

.contact_textarea
{
  border: solid #e1e1e1 1px;
	width: 100%;
	background: rgb(226, 226, 226);
	min-height: 150px;
	padding: 15px 20px;
	line-height: normal;
	border-radius: 0px;
	margin-bottom: 10px;
	font-size: 14px;
	color: black;
}

@media (max-width: 992px)
{
    .form_wrapper
    {
        width: 60vw;
    }
}
@media (max-width: 768px)
{
    .form_wrapper
    {
        width: 95vw;
    }
}

.close_button
{
  position: absolute;
  top: .5vh;
  right: 0.5rem;
  border: none;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  line-height: 1;
  border-radius: 0.5rem;
  background-color: #c5c5c5;
  padding: 0 0.25rem;
  transition: background-color 0.2s, transform 0.2s;
}

.chat_wrapper .close_button
{
    top:0.6rem;
    right:0.8rem;
}

.close_button:hover
{
    color: #d00;
    transform: scale(1.2);
    outline: none;
}

.project_description
{
    color:black;
}

.project_description ol
{
    list-style:decimal;
    margin-left:2vw;
}

.project_description ul
{
    list-style:disc;
    margin-left:2vw;
}

.project_description li
{
    margin:1vh;
}

.dam_pictures
{
    width: 100%;
	height: auto;
}

.chat_wrapper 
{
    height: 70vh;
    width: 95vw;
    background-color: whitesmoke;
    border-radius: 1em;
    border: 2px solid grey;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*when screen is medium*/
@media (min-width: 768px)
{
  .chat_wrapper

  {
    width: 60vw;
  }
}

/*when screen is large*/
@media (min-width: 1024px)
{
  .chat_wrapper

  {
    width: 35vw;
  }
}

.chat_head
{
    border-top-right-radius: 1em;
    border-top-left-radius: 1em;
    height: 8vh;
    background-color: rgb(251, 251, 251);
    padding: 0 1em;
}

.display_picture 
{
  height: 7vh;
  filter: invert();
  border: 2px solid white;
  border-radius: 100%;
  margin-right: 1em;
}

.chat_body 
{
  flex-grow: 1;
  padding: 1em;
  overflow-y: auto;
  font-family: sans-serif;
  font-size: 0.9rem;
}

.chat_input_wrapper 
{
  display:flex;
  padding: 0.8em;
  border-top: 1px solid #c4c2c2;
  background-color: #f7f7f7;
}

.chat_input 
{
  width:77%;
  padding: 0.6em;
  border: 1px solid #c4c2c2;
  border-radius: 0.5em;
  font-size: 1rem;
  resize: none;
  font-size: 1rem;
  max-height: 10rem;
}

.chat_input::placeholder
{
  color:rgba(95, 164, 230);
}


.send_button 
{
  width:20%;
  max-height:5vh;
  margin-left: 0.5em;
  padding: 0.6em 1em;
  background-color: #1976d2;
  color: white;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.send_button:hover
{
  background-color: #186bbe;
}

.send_button.click
{
  background-color: #0f58a2;
}

.bot_message
{
  color:black;
  background-color: #cfe1fd;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  max-width: 80%;
}

.user_message
{
    color:black;
    background-color: #b4b4b4;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    margin-left: auto;
    width: fit-content;
    max-width: 80%;
}

.button_group
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
}

.chat_button
{
    background-color: #1976d2;
    width:80%;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.chat_button:hover 
{
    background-color: #0d5cb6;
}

.f_input_field
{
    width: 80%;
    margin: 6px auto;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    display: block;
    background-color: #f4f4f4;
    transition: border 0.3s ease;
}

.contact_input_field
{
  padding: 0.5rem;
  border-radius: 5px;
  outline:none;
  border: none;
  margin:0.5rem;
  font-size: 16px;
}
.contact_input_field:focus
{
    border: 1px solid #649ad1;
    background-color: #fff;
}

.contact_form_wrapper
{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact_submit_button
{
    margin-top: 12px;
    padding: 10px 20px;
    background-color: #1976d2;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact_submit_button:hover
{
    background-color: #186bbe;
}


.team_cards_group
{
  display: flex;
  flex-direction: column;
  gap: 2vh;
  margin-top: 30px;
}

.team_card
{
  display: flex;
  align-items: center;
  background-color: rgb(245, 245, 245);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform 0.3s ease;
  margin-bottom: 2vh;
}

.team_card:hover
{
  transform: translateY(-0.5vh);
}

.team_img
{
  height: 21vh;
  width: 18vh;
  object-fit:cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-right: 20px;
  flex-shrink: 0;
}

.team_info
{
  flex: 1;
}

.team_card h4
{
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.team_card .designation
{
  font-size: 16px;
  color: #747474;
  margin-bottom: 10px;
  font-style: italic;
}

.team_card .intro
{
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.vm_card
{
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm_card h2::after
{
    content: "";
    margin-top:10px;
	display: block;
	width: 80px;
	height: 5px;
	background: #17a5e9;
}

.vm_card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


.vm_card h2
{
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.vm_card p
{
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Product page css */
.product_heading
{
  margin-bottom: 3vh;
}
.product_heading::after
{
  content: "";
	display: block;
	margin: 20px auto 0;
	width: 120px;
	height: 5px;
	background: #17a5e9;
}
.product_container
{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
}

.image_container
{
  align-self:center;
  display:flex;
  justify-content: center;
  padding:1em;
}
.product_description
{
  padding: 1em;
}

.product_description h4
{
  margin-top:1vh;
  padding-bottom: 3vh;
  margin-bottom:0px;
  color: #1e2a38;
  font-size: 1.5rem;
}

.product_description p
{
  color:black;
}

.product_image
{
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 3em;
  width:inherit;
}

.product_features
{
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.product_features .panel
{
  border-bottom: 1px solid #eee;
  border-bottom: 1px;
}

.feature_title 
{
  display: block;
  padding: 15px;
  font-weight: 600;
  color: #1e2a38;
  text-decoration: none;
  background-color: #e2e2e2;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.feature_title:hover
{
  background-color: #d9d9d9;
}

.feature_body
{
  padding: 15px;
  background: #fff;
  transition: transform 0.3s ease;
}

.feature_body:hover
{
    transform: translateY(-4px);
}

.product_specs
{
  margin-top:1em;
  flex: 1 1 100%;
  background: #f2f1f1;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.product_specs h4
{
  margin-top:1vh;
  padding-bottom: 3vh;
  margin-bottom:0px;
  color: #1e2a38;
  font-size: 1.5rem;
  border-bottom: 2px solid #d5d4d4;;
}

.product_specs ul
{
  list-style: none;
}

.product_specs li
{
  padding: 10px 0;
  border-bottom: 1px solid #d5d4d4;
}

.spec_title
{
  font-weight: 600;
  color:black;
}

.spec_description
{
  color: #555;
  font-size: 0.9rem;
}

.service_features
{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 30px;
}

.feature_card
{
  flex: 1 1 30%;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature_card:hover
{
  transform: translateY(-5px) scale(1.05);
}

.feature_card img
{
  max-width: 60px;
  margin-bottom: 10px;
}

.feature_card h4
{
  font-size: 1.2rem;
  color: #1e2a38;
  margin-bottom: 10px;
}

@media (max-width: 768px) 
{
  .feature_card 
  {
    flex: 1 1 100%;
  }

  .product_image
  {
    width:50vw;
  }

  .container 
  {
    flex-direction: column;
  }
}

@media (max-width: 992px)
{
  .product_image
  {
    width:50vw;
  }
}

/* end of product page css */

.social_media_icon
{
  margin:0.5rem;
  transition: transform .3s ease;
}
.social_media_icon:hover
{
  transform: scale(1.1);
}

.project_section
{
	float: left;
	width: 100%;
}
.project_tile
{
  padding-top: 3vh;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s ease;
  background-color: #fcfcfc;
}
.project_tile:hover
{
  transform: translateY(-5px);
}

.image-gallery {
  column-count: 4;      /* number of columns */
  column-gap: 10px;     /* increased space between columns */
}

.image-gallery a {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;  
}

.image-gallery img {
  width: 100%;
  display: block;
  border-radius: 5px;
  transition: transform 0.3s;
  object-fit: cover;
}

.image-gallery img:hover {
  transform: scale(1.05);
}


@media (max-width: 1200px) { .image-gallery { column-count: 3; } }
@media (max-width: 800px)  { .image-gallery { column-count: 2; } }
@media (max-width: 500px)  { .image-gallery { column-count: 1; } }

.about_us_banner
{
	background: url('../images/employees.JPG');
  height: 245px;
	background-size:contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.swiper {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

/* Slide width */
.swiper-slide {
  width: 300px; /* Adjust card width */
  transition: transform 0.3s;
}

/* Active center slide effect */
.swiper-slide-active {
  transform: scale(1.1);
}

/* Card styling (inherit your original classes) */
.full_card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 10240px) { .full_card { height: 50vh; } }
@media (max-width: 768px)  { .full_card { height: 60vh; } }
@media (max-width: 500px)  { .full_card { height: 45vh; } }

/* Arrow buttons outside */
.swiper-button-prev, .swiper-button-next {
  color: #333;
  transform: translateY(-50%);
  top: 50%;
}

.swiper-button-prev {
  left: -50px;
}

.swiper-button-next {
  right: -50px;
}