.hero-banner{
    background: linear-gradient(90deg, #071a3c, #380d0d);
    color:#fff;
    padding:40px 35px;
    margin-top: -38px;
    font-family: "poppins";
}

.hero-banner .tag{
   font-size:18px;
   color:#FF0000;
   font-weight: 500;
   line-height: 0px;
   letter-spacing:2px;
}


.hero-banner h1{
  font-family: "Poppins";
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin:2px 0;
}


/* Tablet */
@media (max-width: 992px) {
  .hero-banner {
    padding: 50px 30px;   /* Tablet */
  }
  
  .hero-banner h1{
    font-size: 22px;     /* Tablet */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-banner {
    padding: 50px 30px;   /* Mobile */
  }
  
  .hero-banner h1{
    font-size: 22px;     /* Tablet */
  }
}

.hero-banner p{
  padding-top: 5px;
  max-width:80%;
  color: #ffffff;
  opacity:.9;
  line-height:1.2;
}

.project-section {
    padding: 40px 5%;
    font-family: "poppins";
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

/* GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img img{
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.project-title {
    margin-bottom: 0;
    font-family: "Poppins";
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
}

.project-description {
    color: #555;
    font-family: "Poppins";
    padding: 0 20px;
    margin-bottom: 5px;
    font-size: 14px;
}

.project-card a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.tech-tags {
    display: flex;
    justify-content: flex-end;   /* Align to right */
    gap: 8px;
    padding: 10px 20px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.tech-badge {
    font-size: 11px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 3px 10px;
    letter-spacing: 0.5px;
    background: transparent;
    text-transform: uppercase;
}

/* Hover effect */
.tech-badge:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.buttons {
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}



/* Modern Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Gradient Colors */
.web-btn {
    background: linear-gradient(135deg, #397ee6, #1f4fbf);
}

.android-btn {
    background: linear-gradient(135deg, #34a853, #0f9d58);
}

.ios-btn {
    background: linear-gradient(135deg, #000000, #434343);
}

/* Hover Animation */
.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Shine Animation */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.btn:hover::before {
    left: 130%;
}
/* âœ… Responsive Design */

/* For tablets (max width 992px) */
@media (max-width: 992px) {
    .project-section {
        margin: 0 60px;
    }

    .project-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 30px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-description {
        font-size: 15px;
    }
}

/* For mobile devices (max width 768px) */
@media (max-width: 768px) {
    .project-section {
        margin: 0 20px; /* reduce side spacing */
    }

    .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 26px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-description {
        font-size: 14px;
        text-align: left; /* better readability */
    }
}

/* For very small screens (max width 480px) */
@media (max-width: 480px) {
    .project-section {
        margin: 0 10px;
    }

    .project-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    }

    .section-title {
        font-size: 22px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-description {
        font-size: 13px;
        text-align: justify;
    }
}