/* home page stylee */
/*
body {
    background-color: rgb(255, 255, 255);
    padding-top: 50px;
}
@media (max-width: 1200px) {
  body {
    padding-top: 30px;}
}*/
.homepage-width{
     max-width: 100%;
  padding: 70px 8% 50px 8%;
}
@media (max-width: 1200px) {
  .homepage-width {
  max-width: 100%;
  padding: 50px 5%;}
}
/* end home page stylee */
/* start page title */
.bradcrub1 {
    position: relative;
    width: 100%;
    height: 250px; 
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px) {.bradcrub1 {
    position: relative;
    height: 200px; 
}}
.bradcrub1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(62, 155, 161, 0.288); 
}
.bradcrub1-content {
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;  
    text-align: center;
    padding: 0 20px; 
  }
@media (max-width: 768px) {.bradcrub1-content h1 {
    font-size: 2rem; 
    margin: 0;
} }
@media (max-width: 768px) {.bradcrub1-content p {
    font-size: 0.9rem;
    margin-top: 10px;
}}
/* end page title */

/* start Process section start */
.process-tabs-container {
  display: flex;
  margin: auto;
  gap: 20px;
}
.process-tabs {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.process-tab-button {
  border: 1px solid #008A8A;
  border-radius: 8px;
  padding: 15px 20px;
  background: white;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  transition: all 0.3s ease;
}
.process-tab-button:hover {
  background: #ffffff;
}
.process-tab-button.active {
  border-color: #008A8A;
  box-shadow: 0 0 10px #439999;
  background: #f7fafa;
  color: #008A8A;
}
.process-tab-content {
  flex: 1 1 65%;
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
}
.process-tab-panel {
  display: none;
}
.process-tab-panel.active {
  display: block;
}
.process-tab-panel img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.process-tab-panel p {
 margin-top: 10px;
}

@media (max-width: 768px) {
  .process-tabs-container {
    flex-direction: column;
    gap: 10px;
  }
  .process-tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: auto;       
    scrollbar-width: none;    
    -ms-overflow-style: none; 
  }
  .process-tabs::-webkit-scrollbar {
    display: none;            
  }
  .process-tab-button {
    flex: 1 1 auto;           
    padding: 10px 5px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 4px;
    min-width: 0;             
  }
  .process-tab-content {
    padding: 15px 10px;
  }
  .process-tab-panel img {
    width: 100%;
    margin-bottom: 10px;
  }
  .process-tab-panel p {
    font-size: 0.95rem;
  }
}


/* start process image */
.process-width1{
    background-color: #ebf4f5;
    padding: 50px 0px;
}
.processimg
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  }
/* end process image */

/* start portfolio section */
.portfolio-home{ padding: 50px 0px 70px 0px;}
#gallery {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
#gallery.active {
  cursor: grabbing;
}
/* Horizontal track */
#track {
  display: flex;
  transition: none;
}
/* Item cards */
.portfolio-item {
  scroll-snap-align: start;
  flex: 0 0 33%; /* full width on mobile */
  margin: 0 10px;
  background: #eff1f1;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
/* Responsive adjustments */
@media (min-width: 320px) {
  .portfolio-item {
    flex: 0 0 100%;
  }
}
@media (min-width: 900px) {
  .portfolio-item {
    flex: 0 0 calc((100% / 3) - (20px * 2 / 3));
  }
}
.portfolio-item img {
  width: 100%;
  border-radius: 6px;
}
.title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #008A8A;
}
.description {
  margin: 10px 0;
}
.portfolio-action-btn {
  padding: 6px 20px;
  background: #00000000;
  color: #000000;
  border: solid 1px;
  border-radius: 4px;
  border-color: #000000;
  font-size: 14px;
  cursor: pointer;
}
/* end */