
    body {
      background: linear-gradient(135deg, #f7f3ff, #e8f0ff);
      color: #333;
      overflow-x: hidden;
      font-family: 'Lora', serif;
    }

    /* NAVBAR */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background: white;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-weight: 700;
      font-size: 1.5rem;
    }

    .logo span {
      color: #4f46e5;
    }

    .nav-info {
      display: flex;
      gap: 25px;
      font-size: 0.95rem;
      color: #555;
      align-items: center;
    }

    .nav-info i {
      color: #4f46e5;
      margin-right: 5px;
    }

    /* HERO SECTION */
    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 80px 10%;
      background: linear-gradient(120deg, #c9f7ff, #fcd9d9);
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, rgba(255,255,255,0.3) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(255,255,255,0.3) 1px, transparent 1px);
      background-size: 50px 50px;
      pointer-events: none;
    }

    .hero-text {
      max-width: 600px;
      z-index: 1;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero-text h1 span {
      color: rgb(135 51 51);
    }

    .hero-text h3 {
      font-weight: 600;
      color: #444;
      margin-top: -10px;
      margin-bottom: 25px;
      font-size: 19px;
    }

    .hero-text p {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
      margin-bottom: 25px;
      font-weight: bolder;
    }

    .btn {
      background: linear-gradient(90deg, #00ceff, #ef9b00);
      color: white;
      border: none;
      padding: 12px 25px;
      font-size: 1.1rem;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(2, 2, 2, 0.988);
    }

    /* IMAGE SIDE */
    .hero-img {
      position: relative;
      text-align: center;
    }

    .hero-img img {
      width: 310px;
      height: 310px;
      object-fit: cover;
      border-radius: 10%;
      border: 5px solid #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .badge {
      position: absolute;
      background: white;
      border-radius: 50px;
      padding: 8px 14px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    }

    .badge i {
      font-size: 1rem;
    }

    .badge.orange { top: 15%; right: -10%; color: #ff9800; }
    .badge.purple { bottom: 15%; right: -10%; color: #6b4de6; }
    .badge.green { bottom: 10%; left: -10%; color: #22c55e; }
    .badge.blue { top: 15%; left: -10%; color: #3b82f6; }

    /* MILESTONES */
    .milestones {
      text-align: center;
      padding: 80px 10%;
      background: #f9f9fc;
    }

    .milestones h2 {
      font-size: 1.8rem;
      display: inline-block;
      background: white;
      padding: 10px 25px;
      border-radius: 10px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.05);
      font-weight: 700;
    }


     .row-cols-lg-4>* {
        /* -ms-flex: 0 0 25%; */
        flex: 0 0 20% !important;
        max-width: 20% !important;

	}



.btn-pop:link, .btn-pop:visited {
    background-color: #315090e1;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    border-radius: 5px;
    width: 290px;
  }
  .btn-pop {
    background-color:#8e2d2dcd;
  }
  .btn-pop:active {
    background-color: 4c76bf(255, 238, 0);
  }
  .btn-top{

    width: 530px !important
  }




    /* .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 40px;
      gap: 30px;
    }

    .card {
      background: white;
      width: 230px;
      padding: 30px 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    } */

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

    .card i {
      font-size: 2rem;
      color: #6b4de6;
      margin-bottom: 10px;
    }





/* Reference Work Section */
.reference-work-section {
    background-color: #f8f8f8; /* Light background */
    padding: 80px 0;
}

.section-heading-template2 {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    position: relative;
}

.section-heading-template2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 270px;
    height: 4px;
    background-color: #a87f5e; /* Accent color */
    border-radius: 2px;
}

/* Work Card Styling */
.work-card-template2 {
    border: 2px solid transparent; /* Initial transparent border */
    border-radius: 10px;
    overflow: hidden;
    /* Combined transition for lift, shadow, border color, and image zoom */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Initial subtle shadow */
}

.work-card-template2:hover {
    transform: translateY(-8px) scale(1.02); /* Lift and slight scale */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    border-color: #a87f5e; /* Accent color on hover */
  
}

.work-card-template2 img {
    height: auto; /* Fixed height for card images */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #b8b8b8;
    transition: transform 0.4s ease; /* Smooth zoom transition for image */
}

.work-card-template2:hover img {
    transform: scale(1.05); /* Zoom image slightly on hover */
    border-bottom: 2px solid #a87f5e;
}

.work-card-template2 .card-body {
    padding: 5px; /* Adjust padding for aesthetics */
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-title-template2 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 5px; /* Adjusted margin */
    /* Removed specific slide-up animation from previous version */
    /* If you want a subtle effect for the title, consider a simpler fade-in or no animation. */
}

    /* FOOTER */
    footer {
      text-align: center;
      padding: 15px 10px;
      background: #fff;
      color: #666;
      font-size: 0.95rem;
      border-top: 1px solid #eee;
    }

    .footer-info {
      margin-bottom: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-size: 0.95rem;
    }

    .footer-info i {
      color: #4f46e5;
      margin-right: 8px;
    }









    
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-img {
        margin-top: 30px;
      }
      nav {
        flex-direction: column;
        gap: 10px;
      }


nav {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}



     .row-cols-lg-4>* {
        /* -ms-flex: 0 0 25%; */
        flex: 0 0 60% !important;
        max-width: 60% !important;

	}








    }












/* Responsive Adjustments */
@media (max-width: 991.98px) { /* Medium devices and below */
    .header-name {
        font-size: 2.8rem;
    }
    .header-bio {
        font-size: 1rem;
    }
    .profile-image-container {
        padding-top: 30px;
    }
    .main-header-template2 {
        height: auto; /* Allow height to adjust */
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) { /* Small devices and below */
    .header-name {
        font-size: 2.2rem;
    }
    .header-bio {
        font-size: 0.9rem;
    }
    .header-text-card {
        padding: 30px;
    }
    .section-heading-template2 {
        font-size: 2rem;
    }
    .work-card-template2 img {
        height: 400px !important;
    }



     .row-cols-lg-4>* {
        /* -ms-flex: 0 0 25%; */
        flex: 0 0 100% !important;
        max-width: 100% !important;

	}






}