*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
    overflow-x: hidden;
}

.project-container{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.nav-bar{
    width: auto;
    height: auto;
    /*background-color: #fff;*/
    font-size: 1.1rem; 
    display: flex;
    align-items: center;
    position: fixed;
    padding: 0 10px;
    z-index: 1;
    left: 35%;
    margin-top: 2%;
}
.nav-menu{
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50px;
}
.nav-menu ul{
    padding: 20px;
    margin: 0 auto;
}
.nav-menu > ul li {
    display: inline-block;
    
}
.nav-menu > ul li a{
    text-decoration: none;
    color: #0b3202;
    padding: 20px;
}
.nav-menu ul li a:hover{
    color: #000;
}

.nav-menu ul li:hover::after{
    display: block;
}
.nav-bar .menubar i{
    color: #ffff;
    font-size: 22px;
    cursor: pointer;
    display: none;  
}

#click{
    display: none;
}

.whatsapp{
    width: 70px;
    height: auto;
    position: absolute;
    z-index: 1;
    position: fixed;
    bottom: 5%;
    right: 5%;
  }
  
  .whatsapp img{
    width: 100%;
  }
  
  /* HERO */
.hero {
    width: 100%;
  position: relative;
  min-height: 100vh;
  background: url("/images/pexels-negative-space-34140.jpg") center/cover no-repeat;
  color: #fff;
  background-blend-mode:overlay;
  background-color: rgba(0, 0, 0, 0.55);
}

/*.overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
  
/*}*/

/* LAYOUT */
.hero .hero-container {
  position: relative;
  z-index: 0;
  display: flex;
}

/* LEFT */
.hero .hero-left {
  width: auto;
  padding: 50px;
}

.hero-left h1 {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 20%;
}

.hero .subtext {
  max-width: 500px;
  font-size: 16px;
  color: #d0d0d0;
  margin-bottom: 40px;
}

/* STATS */
.hero .stats {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.hero .stats h2 {
  font-size: 32px;
}

.hero .stats span {
  font-size: 12px;
  color: #aaa;
}

/* BUTTONS */
.hero .buttons {
  display: flex;
  gap: 20px;
}

.hero .btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.hero .btn.primary {
  background: #086420;
  color: #ffffff;
}

.hero .btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* RIGHT */
.hero-right {
  width: 50%;
  display: flex;
  justify-content:space-around;
  align-items: center;
}

/* GLASS CARD */
.glass-card {
  width: 360px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.glass-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* CARD FOOTER */
.hero .card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatars img {
  border-radius: 50%;
  border: 2px solid #0c9535;
  margin-right: -10px;
}

.hero .card-footer span {
  font-size: 12px;
  color: #2fff47;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        height: auto;
        width: 100%;
    }
  .hero-container {
    flex-direction: column;
    width: auto;
    width: 100%;

  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    margin-top: 40px;
    justify-content: center;
  }

  .hero-left h1 {
    font-size: 34px;
  }
}



.boots{
    margin-top: 10px;
}

.services{
    height: auto;
    /* background-color: #221329; */
}
.services .title{ 
    text-align: center;
    /* border: 1px solid; */
}

.title h1 {
    padding: 20px;
}
.services-list{
    width: 100%;

}
.service-card{
    width: 100%;
    height: auto;
    padding: 3%;
    /* background-color: #472757; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
    /* border: 1px solid white; */
}
.services-list .service-card .card {
     width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 20px;
}
.card-text a {
    font-size: 1.5em;
    font-weight: 800;
    color:#000;
    cursor: pointer;
    text-decoration: none;
}
.card-text :hover a {
    color:#1d7609
}

.pricing {
    width: 100%;
    background-color: #b4e6a9;
    padding: 5%;
    /* margin-top: 5%;
    margin-bottom: 5%; */
}

.pricing-container {
    /* height: 500px; */
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 1100px;
      margin: auto;
      
    }

    .pricing-card {
      background: #ffffff;
      padding: 25px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      text-align: center;
    }


    .pricing-card h3 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .price {
      font-size: 34px;
      font-weight: bold;
      color: #0b2e03;
      margin: 15px 0;
    }

    .price span {
      font-size: 14px;
      color: #666;
    }

    .features {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .features li {
      margin: 10px 0;
      color: #444;
      font-size: 15px;
    }

    .pricing-container .btn {
      display: inline-block;
      width: 100%;
      padding: 14px;
      background: #0b2e03;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      margin-top: 15px;
    }

    .btn:hover {
      background: #155c39;
    }

    /* ---------- Tablet & Desktop ---------- */
    @media (min-width: 768px) {
      .pricing-container {
        flex-direction: row;
      }

      .pricing-card {
        flex: 1;
      }


      .btn {
        width: auto;
        padding: 12px 30px;
      }
    }

/*.project{*/
    /* height: 60vh; */
/*    background-color: rgba(255, 255, 255, 0.85);*/
    /*background-image: url(images/counters-bg.jpg);*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-blend-mode:overlay;*/
/*    padding-top: 5%;*/
/*}*/

/*.project-list{*/
/*    width: 80%;*/
/*    display: flex;*/
/*    justify-content: space-around;*/
/*    margin: 0 auto ;*/
/*}*/
/*.project-no{*/
/*    width: 200px;*/
/*    text-align: center;*/
/*    margin-bottom: 10%;*/
/*}*/
/*.project-no span{*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*}*/
/*.project .project-img img{*/
/*    width: 120px;*/
/*    height: auto;*/
/*}*/


.card-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3%;
    margin-bottom: 3%;
}

.card{
    width: 100%;
    overflow: hidden;
}

.design-card {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.overlay {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9); /* dark transparent overlay */
      color: #fff;
      width: 100%;
      height: 0;
      overflow: hidden;
      transition: height 3s ease;
      /* padding: 20px; */
      box-sizing: border-box;
      text-align:center;
      
}
.design-card:hover .overlay {
      height: 100%;
      /* transition: ease 2s; */
}

.overlay p {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 30% 0 0 0 ;
    /*padding: 20px;*/
    
}   
.overlay span {
    font-size: 0.8em;
     /*padding: 20px; */
}
.overlay a, .seemore a {
    text-decoration: none;
    color: #ffffff;
}

.seemore :hover a {
    color: #1d7609;

}

.card-img{
    transition: transform 0.9s ease;
}
.design-card:hover .card-img,
.card:hover .card-img{
    transform: scale(1.25);
}

.card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-body{
    position: relative;
    background-color: #221329;
    /* height: 100%;  */
}
.card-btn{
    display: flex;
    justify-content: space-between;
    width: 80%;
    /* border: 1px solid; */
}

.card-body a button{
   border: none;
   padding: 10px;
   border-radius: 5px;
}

.card-body a button:hover{
    background-color: transparent;
    color: #f4dbff;
    border: 1px solid;
    transition: ease 0.5s;
}



.review-container{
    height: auto;
    background-color: #ebebea;
    /* background-image: url(images/pexels-djordje-petrovic-2102416.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
    color: #000000;
    
}
.carousel-item{
    height: 90%;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
.caption{
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

.review-body img{
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 20px;
}
.review-body span{
    /*font-weight: 700;*/
    font-size: 1.2rem;
}
.message-container{
    height: 900px;
    /* background-color: #0b2e03; */
    /* background-color: rgba(43, 24, 40, 2); */
    background-blend-mode: overlay;
    background-image: url(images/pexels-negative-space-34140.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 8%;
}
.message-box{
    width: 80%;
    height: 650;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    color: #000000;
    border-radius: 15px;
}
.contact-box{
    width: 100%;
    padding: 40px;
}
.contact-box h3{
    color: #000000;
}
.contact-box-content{
    margin-top: 10%;
    line-height: 35px;
}
.contact-header{
    font-weight: 500;
}
.contact-header::after{
    content: '';
    width: 20%;
    height: 4px;
    margin-top: 10px;
    background-color: #00000;
}
.contact-header::after{
    display: block;
}
.message-box input{
    width: 100%;
    height: 40px;
    padding: 10px;
}
.message-box button {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: #1d7609;
    color: #ffffff;
    /* font-weight: 600; */
}
..message-box button:hover {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
}
form{
    /* text-align: center; */
    margin-top: 15%;
    font-size: smaller;
}
form input, textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #00000;
    background-color: transparent;
    color: #ffffff;
}

form input:hover {
    background-color: #0b3202;
}

.field{
    height: 150px;
    padding: 10px;
}

.contact-info img{
    width: auto;
    height: 20px;
    margin-right: 15px;
}


/*Portfolio details*/
 
.portfolio-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-title h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.portfolio-title p {
    font-size: 1.2rem;
    color: #666;
}

/* Category Filter Buttons */
.section-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #00000;
    border: 1px solid #0b3202;
    border-radius: 20px;
    font-size: 1rem;
    /*font-weight: 600;*/
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: #f0f0f0;
}

.tab-button.active {
    background-color: #0b3202;
    color: white;
    /*border-color: #221329;*/
}

/* Unified Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
}

.card-body h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.card-btn {
    display: flex;
    gap: 10px;
}

.card-btn button {
    padding: 8px 15px;
    background-color: #4a6cf7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.card-btn button:hover {
    background-color: #3a5bd9;
}

/* Design Card Styles (for non-web projects) */
.design-card {
    position: relative;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.design-card .card-img {
    height: 100%;
}

.design-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.design-card:hover .overlay {
    transform: translateY(0);
}

.design-card .overlay p {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.design-card .overlay span {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.design-card .overlay a {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 600;
}

/* See More Button */
.seemore {
    text-align: center;
    margin-top: 40px;
    grid-column: 1 / -1;
}

.seemore a {
    display: inline-block;
    padding: 10px 30px;
    background-color: #0b3202;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.seemore a:hover {
    background-color: #221329;
    color: #fff;
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-down"] {
    transform: translateY(-30px);
}

[data-aos="slide-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-up"] {
    transform: translateY(30px);
}

[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-right"] {
    transform: translateX(-30px);
}

[data-aos="slide-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="slide-left"] {
    transform: translateX(30px);
}

[data-aos="slide-left"].aos-animate {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-box {
        gap: 5px;
    }
    
    .tab-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .overlay{
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-title h1 {
        font-size: 2rem;
    }
    .overlay{
        height: 100% !important;
    }
}

/*service details*/

.service-nav {
    width: 100%;
    background-color: #221329;
    color: #fff;
    display:flex;
    justify-content: space-between;
    padding: 20px 10% 20px 10%;
}
.service-nav a {
    text-decoration:    none;
    color: #fffff;
    /* padding: 20px; */
}
.service-container {
      background-color: white;
      /* max-width: 600px; */
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      overflow: hidden;
      margin: 2% 7% 7% 7%;

    }

    .image-box img {
      width: 100%;
      height: 600px;
      /* background-image: url(images/pexels-djordje-petrovic-2102416.jpg); */
      object-fit: cover;
      object-position: center;
      background-position: center;
    }

    .service-content {
    /*font-family: 'Segoe UI', sans-serif;*/
    padding: 30px;

    }
    .service-content h1 {
        margin: 2% 0 2% 0;
    }

    .service-content h2 {
      margin: 2% 0 2% 0;
      color: #333;
    }

    .service-content p , li{
      font-size: 16px;
      line-height: 2;
      color: #555;
    }
    .service-content span {
      font-weight: 800;
      color: #000;
    }
/* Mobile responsiveness for detail page*/
    @media screen and (max-width: 480px) {
      .image-box {
        height: 400px;
      }
      .image-box img {
        width: 100%;
        height: 100%;
      }

      .service-content h2 {
        font-size: 20px;
      }

      .service-content p {
        font-size: 14px;
      }
    }

    /* Mobile responsiveness for project info*/
    /* @media screen and (max-width: 480px) {
      .portfolio-body {
        display: block;
        margin: 5%;
      }
      .portfolio-body .img-box {
        width: 100%;
      }
      .portfolio-body .details {
        width: 100%;
        padding: 0;
        margin-top: 5%;
      }
    } */
.content {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.6s ease, visibility 1s ease-in;
      position: absolute; 
      /* Optional: keeps content blocks from stacking */
    }

    .content.active {
      opacity: 1;
      visibility: visible;
      position: static;
    }



@media only screen and (max-width:900px) {
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* For mobile phones: */
    .project-container {
        width: 100%;
    }
    .nav-bar{
        width: auto;
        height: 50px;
        left: 5%;
        padding: 10px;
        /* padding: 20px 0; */
    }
    .nav-bar {
        background-color: transparent;
    }
    .nav-menu ul{
       position: fixed;
        top: 5%;
        left: -100%;
        background-color: #fff;
        /* background-color: hsla(282, 38%, 12%, 0.884); */
        /* height: 40vh; */
        /* width: 30%; */
        text-align: center ;
        transition: all 0.7s ease;
    }
    #click:checked ~ .nav-menu ul{
        left: 0;
    }
    .nav-bar .menubar i{
        display: block;
    }
    #click:checked ~ .menubar i:before{
        content: "\f00d";
    }
    .nav-menu ul li{
        display: block;

    }
    .nav-menu ul li a{
        display: block;
    }

    .header{
        display: block;
    }

    .header-content{
        width: 100%;
        padding: 20px;
        margin-bottom: 30px;
    }
    .header-content h1{
        font-size: 2.5rem;
    }
    .header-content h2{
        font-size: 1.5rem;
    }
    .header-content p {
        font-size: 1.2rem;
        margin-bottom: 10%;
    }

    .project-container{
        width: 100%;
    }
   
    .aboutme-container{
        width: 100%;
    }

    .profile{
        width: 100%;
    }
    .aboutme{
        width: 90%;
        height: auto;
        display: block;
        margin-top: 30px;
        padding-right: 5px;
        padding-left: 5px;
    }
    .personal-info{
        width: 100%;
        display: block;
    }
    .personal-name{
        width: auto;
        display: inline;
    }
    .aboutme-content{
        width: auto;
    }

    .services{
        width: 100%;
        height: auto;
        padding-bottom: 40px;
       
    }
    .services-list{
        width: 100%;
        display: block;
    }
    .service-card{
        width: auto;
        /*margin-top: 40px;*/
        margin-left: 20px;
        margin-right: 20px;
        display: block;
        text-align: center;
    }
    .service-card .card {
         margin-top: 30px;
    }

    .project{
        height: auto;
        padding-bottom: 20px;
    }
    .project-list{
        display: block;
    }
    .project-no{
        margin: 0 auto;
    }

    .section-box {
        width: 100%;
        font-size: 0.7em;
        text-align: center;
    }
    .design-card {
        width: 100%;
        height: 100%;
        margin-bottom: 10%;
    }

    .message-container{
        width: auto;
        height: auto;
    }
    .message-box{
        width: 90%;
        height: auto;
        display: block;
    }
    
  }

  /* Project Info Page Specific Styles */
.project-info-container {
    background: linear-gradient(135deg, #221329 0%, #472757 100%);
    min-height: 100vh;
    color: #f4dbff;
}

.project-hero {
    padding: 120px 0 60px;
    background: rgba(0, 0, 0, 0.3);
}

.project-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.project-category {
    font-size: 1.2rem;
    color: #d09aeb;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: #fff;
}

.project-main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 60px 0;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.gallery-section {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.btn-project {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background-color: #0b3202;
}

.btn-primary {
    background: #ffd35a !important;
    color: #221329;
}

.btn-primary:hover {
    background: #d09aeb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #221329;
    color: #472757;
}

.btn-outline:hover {
    background: #472757;
    color: #fff;
    transform: translateY(-2px);
}

.project-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.detail-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.back-to-portfolio {
    margin: 3rem 0;
    text-align: center;
}

.back-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: #fff;
    transform: translateX(-5px);
}
ul li{
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }

    .project-main-image {
        height: 300px;
    }

    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .project-actions {
        flex-direction: column;
    }

    .btn-project {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}