* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: #3f4ea3;
    color: white;
    overflow-x: hidden;
  }
  
  .project-section {
    padding-top: 120px;
    padding-bottom: 20px;
    text-align: center;
    max-width: 1536px;
    width: 100%;
    margin: 0 auto;
  }

  .project-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
  }

  .project-title span {
    font-style: italic;
    font-weight: 700;
  }

  .slider-wrapper {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
  }

  .project-slider {
    display: flex;
    gap: 40px;
    transition: transform 0.6s ease;
  }

  .project-card {
    min-width: 410px;
    text-align: left;
  }

  .project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .project-location {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 10px;
  }

  .project-name {
    font-size: 28px;
    font-weight: 600;
  }

  .slider-wrapper {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
    padding: 0 60px;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #3f4ea3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    z-index: 9;
  }

  .arrow:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }

  .tagline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 40px;
  }

  .curve-text {
    width: 420px;
    height: 180px;
  }

  .glow {
    fill: white;
      filter: drop-shadow(0 0 6px rgba(255,255,255,0.8)) drop-shadow(0 0 12px rgba(255,255,255,0.6)) drop-shadow(0 0 16px rgba(255,255,255,0.4));

  }

  .menu-toggle{
  display:none;
  position:absolute;
  left:20px;
  top:18px;
  font-size:24px;
  color:white;
  cursor:pointer;
  z-index:1001;
}

.footer-dpi {
  background: #1a1a1a;
  padding: 60px 8% 30px;
  color: white;
  width: 100%;
  border-top: 3px solid #00e65c;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-family: 'Mont', sans-serif;
  font-size: 24px;
  color: #00e65c;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 18px;
  opacity: 0.9;
}

.footer-logo p b {
  color: #00e65c;
  font-weight: 700;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 10px 0;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #00e65c;
  color: #1a1a1a;
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.85;
  text-align: center;
  width: 100%;
}

.footer-bottom b {
  color: #00e65c;
  font-weight: 700;
}

@media (max-width: 1535px) {
  .project-card {
    min-width: 21rem;
  }
}

  @media (max-width:768px){
    
.project-title{
  font-size:30px;
  margin-bottom:40px;
}

.slider-wrapper{
  width:95%;
  padding:0 20px;
}

.project-card{
  min-width:260px;
}

.project-card img{
  height:180px;
  border-radius:20px;
}

.project-name{
  font-size:18px;
}

.project-location{
  font-size:13px;
}

.arrow{
  width:35px;
  height:35px;
  font-size:16px;
}

.arrow-left{
  left:0;
}

.arrow-right{
  right:0;
}

.curve-text{
  width:260px;
  height:120px;
}

.project-slider{
scroll-behavior:smooth;
}

.project-slider{
scroll-behavior:smooth;
}

.tagline{
  margin:40px 0 30px;
}

  .footer-dpi{
    padding:40px 20px 20px;
  }

  .footer-container{
    gap:20px;
  }

  .footer-logo img{
    width:70px;
    margin-bottom:10px;
  }

  .footer-logo h3{
    font-size:18px;
    letter-spacing:1px;
  }

  .footer-logo p{
    font-size:14px;
  }

  .footer-social{
    gap:12px;
    margin:5px 0;
  }

  .footer-social a{
    width:38px;
    height:38px;
    font-size:16px;
  }

  .footer-bottom{
    font-size:12px;
    line-height:1.6;
    margin-top:15px;
    padding-top:15px;
  }

}

@media (max-width: 480px) {
  .project-card img {
    height: 340px;
    border-radius: 10px;
  }  
}