* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: sans-serif;
  overflow-x:hidden;
}

.section_1 {
  position: relative;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  margin-left: 20px;
  padding: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: flex-start;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nav-links a {
  display: flex;
  color: dimgrey;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 15px;
}

.nav-links a:hover {
  color: white;
}

.logo img {
  width: auto;
  height: auto;
  max-height: 70px;
  margin-left: 50px;
}

.name-center h1{
  color: white;
  font-size: 40px;
  font-family:"Montserrat", sans-serif;
  padding-top: 100px;
  text-align: center;
  font-weight: 800;
}
.name-center h2{
  text-align:center;
  color:white;
  font-size:40px;
  font-weight: 800px;
}
.wave {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

.wave path {
  fill: white;
}

.content {
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-top:10px;
}

.para {
  font-size: 25px;
  margin-top: 20px;
  color: #ababab;
}

.row {
  
  margin:15px;
}

.about-info-container {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-evenly;
  background-color: #f3f3f3;
  margin:50px 100px;
  padding:20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height:auto;
  width:auto;
  max-height:500px;
}
.about-info-container:hover{
  transform: translateY(-5px);
  
}


.about-info {
  text-align: end;
  padding-right: 100px;
  padding-left:100px;
  margin:30px 20px 10px 20px;
  
}

.info-item img {
  width: 100px;
  
  border-radius: 90px;
  border: 5px solid #fff;
  margin-bottom: 20px;
  
}
.img 
{
  max-width:100%;
  height:auto;
  vertical-align: middle;
}

.info-item p {
  padding:10px;
  margin-bottom:20px;
  color: gray;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: right;
  line-height:5px;
}

.info-item span {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 16px;
}

.about-skills {
  padding-left:10px;
  padding-top: 40px;
 
}

.about-skills h3 {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Montserrat",sans-serif;
  color:#000;
  font-weight:700;
  font-size:30px;
}

.progress-box {
  margin-bottom: 20px;
  
}
.progress-box p{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  color:#000;
  line-height: 40px;
}

.progress{
  display:flex;
  height:3px;
  border-radius:0px;
  height:2px;
  width:400px;
}

.progress-bar{
  display:flex;
  flex-direction: column;
  background-color: #616161;
  
}

.pull-right {
  float: right;
}


.portfolio .wave1 {
  
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  visibility:visible;
  fill:white;
  top:0;
}

.wave1 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
  z-index:1;
}


.wave1 path{
  fill:#f2f2f2;
}

.portfolio {
  padding: 20px;
  background-color: #f2f2f2;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-filter ul {
  padding-top: 20px;
  margin: 0;
  display: flex;
  gap: 10px;
  color: gray;
  list-style: none;
}

li.sel-item {
  color: black;
  font-weight: bold;
}

.portfolio-items {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 15px; 
}

@media only screen and (max-width:600px) {
   .portfolio-items {
    display : grid ;
    grid-template-columns:auto;
    gap:10px ;
   } 

   
}

.single-item  {
  overflow: hidden;
  
} 

.single-item img {
  width:100%
}

.single-item a {
  transition: transform 0.4s ease;
}
.single-item:hover img {
  transform: scale(1.05);
}




#services h2 {
  padding: 50px;
  text-align: center;
}

.services-container {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 20px;
  

}

.service-box {
  background: #f2f2f2;
  padding: 100px;
  border-radius: 8px;
  text-align: center;
}

.service-box:hover{
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

}
.service-box h3 {
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
   
}

.fa {
  margin-bottom: 20px;
  display: block;
}

.fa-2x {
  font-size: 10px;
}

.blog {
  text-align: center;
  margin-top: 50px;
  font-family: "Montserrat", sans-serif;
}

.blog-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 100px;
  
}

.blogs {
  text-align: left;
  padding: 30px 0 15px;
  font-size: 18px;
  margin-bottom: 0;
}

.post-body {
  color: gray;
  text-align: left;
  margin-top: 10px;
}

.blog-post {
  width: 30%;
  padding: 20px;
}

.blog-post img {
  width: 100%;
  height: auto;
  padding: 10px;
  position:relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.blog-post img:hover {
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
  cursor: pointer;
  
}




.post-meta {
  font-size: 14px;
  color: #b8b8b8;
  margin-top: 10px;
}

.post-meta span {
  color: #000;
  font-size:15px;
  padding-left:100px;
}

.view {
  text-align: center;
  margin-top: 20px;
  color:#000;
  background-color: white;
  
}

.main-button {
  padding: 10px 20px;
  border:1px solid #000;
  font-size: 14px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;

}
.main-button:hover {
  background-color: gray; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


#contact {
  padding: 60px 40px;
  background: #fff;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.address-box {
  flex: 1 1 300px;
}

.address-box h1,
.message-box h1 {
  
  font-size: 28px;
  margin-bottom: 20px;
}

.address-box h2 {
  font-size: 18px;
  margin-top: 15px;
}

.address-box p {
  color: #555;
  margin-bottom: 10px;
}

.message-box {
  
  flex: 1 1 500px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row input {
  flex: 1;
}

input,
textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
}

textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 15px;
}

button {
  width: fit-content;
  padding: 10px 20px;
  border: 1px solid #111;
  background: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, box-shadow 0.3s;

}
button:hover{
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  background-color: gray;
}



.wave-top {
  
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  visibility:visible;
  fill:#000;
  top:0;
}

.wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
  z-index:1;
}

.wave-footer
{
  background-color: black;
  color:white;
  padding-bottom:40px;

}

.footer-content p {
  margin:0;
  font-size: 14px;
  color:#757575;
  text-align:center;
  
   
}



/* ul.social-icons {
  padding: 10px;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  
} */  


ul.social-icons {
  list-style: none;       
  margin: 0;  
  text-align:center;  
  padding:30px;
}

ul.social-icons li {
  display: inline-block;  
  margin: 0 15px;  
  fill:white;
  height:10px;
  width:10px;
 
}
ul.social-icons li :hover {
  color:darkgray;
}

