
    @import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

    body {
    padding-top: 70px;
    
    }

  .hero-section {
  height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #141e30, #243b55);
  color: white;
  font-family: "Paytone One", sans-serif;
}

    .hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    .hero-section p {
    font-size: 1.5rem;
    font-weight: 400;
    }

 

.hero-role {
  font-size: 1.4rem;
  font-family: "Josefin Sans", sans-serif;
  margin-top: 10px;
  opacity: 0.9;
}



  .navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #343a40;
}

/* Navbar links */
.navbar .nav-link {
  color: #e0e0e0;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover + active */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #0d6efd;
}

    .navbar-brand {
    font-family: 'Amita', cursive;
    font-size: 2.8rem;
    color: white;
    }

    .navbar-brand span {
    color: #0d6efd;
    font-size: 2rem;
    text-shadow: 0 0 8px rgba(13, 110, 253, 0.7);
    }

/* Project Card Base */
.card {
  border: none;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f1f3f5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent line */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0d6efd, #6610f2);
}

/* Hover effect */
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Card body spacing */
.card-body {
  padding: 1.8rem;
}

/* Button style */
.card .btn {
  border-radius: 20px;
  padding: 5px 16px;
}


    html {
    scroll-behavior: smooth;
    }

    .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    }

    /* When visible */
    .fade-in.show {
    opacity: 1;
    transform: translateY(0);
    }

    .navbar-nav{
        font-family: "Josefin Sans", sans-serif;
        font-weight: 350;
        letter-spacing: 0.1rem;
    }

    /* Section headings */
.text-center {
  font-family: "Paytone One", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Card title */
.card-title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* Card description text */
.card-text {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #555;
}


