body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #333;
    padding-top: 150px;
  }
  
 
  
  .portfolio-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
      
    
  }


.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
  
}  
 /*.portfolio-header {*/
 /* text-align: center;*/
 /* margin-bottom: 40px;*/
 /* margin-top: 160px; */
 /* position: relative;*/
 /* z-index: 2;*/

  
  .portfolio-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 60px;
  }
  
  .portfolio-header p {
    font-size: 18px;
    color: #666;
    max-width: 750px;
    margin: auto;
    line-height: 1.6;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  
 .tab-button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0c7aef;
  background: none;
  border: 2px solid #0c7aef;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background-color: #0c7aef;
  color: #ffffff;
}


 .tab-button:hover{

    background-color: #0c7aef;
    transition: background 0.4s;
    color: #ffffff;

  }
 
  
  /* .tab-button.active::after,*/
  /*.tab-button:hover::after {*/
  /*  transform: scaleX(1);*/
  /*  transform-origin: left;*/
  /*} */
  
  .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .tab-content.active {
    display: block;
    
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
.portfolio-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px;
  width: 100%;
}

.portfolio-card {
  width: 100% !important;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}


  
.image-flip {
  width: 100%;
  height: 460px;
  perspective: 1000px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  border-radius: 12px;
}

/* Required for flip */
.flip-inner .front {
  transform: rotateY(0deg);
  z-index: 2;
}

.flip-inner .back {
  transform: rotateY(180deg);
  z-index: 1;
}




  
  .project-info {
    border-left: #0c7aef 2px solid;
    margin-top: 25px;
    text-align: left;
    padding: 20px 10px;
  }
  
  .project-info h4 {
    margin-right: 25px;
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .project-info p {
    font-size: 22px;
    font-family: kalnia;
    color: #000000;
    margin-bottom: 15px;
  }
  
  .case-study-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #0c7aef;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.8s;
  }
  
  .case-study-btn:hover {
    background: #0c7aef00;
    color: #000000;
    border: #0c7aef 2PX solid;
  }
  
  .coming-soon {
    text-align: center;
    font-size: 18px;
    padding: 40px;
    color: #aaa;
  }
  
  
 
