/* ====================
   GLOBAL
==================== */
body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(to bottom, #ffffff, #ffccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
  color: #e6edf3;
  margin-left: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffccf2;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #997ddf, #ffccf2);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ====================
   HERO SECTION
==================== */
.hero {
  height: 100vh;
  background: linear-gradient(-45deg, #18215E, #0B0F28, #1E2A78, #0F1442);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5rem;
  letter-spacing: 2px;
}

.highlight-name {
  background: linear-gradient(to left, #997ddf, #ffccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.5rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.custom-text {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  margin-top: -15px;
  color: #b6b6b6;
}

.btn-view {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  letter-spacing: 0.5px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-view:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-view:active {
  transform: scale(0.97);
}

/* ====================
   ABOUT
==================== */
#about {
  background: linear-gradient(to bottom, #0b0f28, #181f4b);
  color: #e6edf3;
  padding: 5rem 0;
}

#about h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#about h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

#about p.about-desc {
  font-size: 1.1rem;
  color: #f2f2f2;
}

#about p {
  font-size: 1rem;
  color: #cbcbcb;
}

#about ul {
  padding: 0;
  list-style: none;
}

#about ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.icon-modern {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: #997ddf;
  font-size: 1.1rem;
}

#about ul li strong {
  background: linear-gradient(to right, #997ddf, #ffccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-right: 6px;
}

.profile-pic {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #997ddf, #ffccf2, #6d28d9);
  background-size: 300% 300%;
  animation: borderGlow 6s ease infinite;
  box-shadow: 0 30px rgba(153, 125, 223, 0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  perspective: 1000px;
}

.profile-pic img {
  border-radius: 50%;
  display: block;
  width: 300px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.profile-pic:hover {
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0 0 35px rgba(153, 125, 223, 0.6);
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Skills */
        .skill-logo {
            width: 110px;
            height: 110px;
            border-radius: 30%;
            object-fit: contain;
            transition: transform 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .skill-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(153, 125, 223, 0.6);
        }

        .skill-item p {
            font-size: 0.9rem;
            margin: 0;
            color: #ddd;
        }
        
        .skills-grid {
            row-gap: 2rem;
        }

        
        @media (min-width: 1200px) {
            .col-xl-1-7 {
                flex: 0 0 auto;
                width: 14.2857%;
            }
        }
        
/* Achivements */

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(153, 125, 223, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(153, 125, 223, 0.4);
  box-shadow: 0 15px 35px rgba(153, 125, 223, 0.2);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #997ddf, #ffccf2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.achievement-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.achievement-desc {
  color: #cbcbcb;
  font-size: 0.9rem;
  margin: 0;
}

/* ====================
   PROJECTS
==================== */
#projects {
  background: linear-gradient(to top, #0b0f28, #181f4b);
  padding: 5rem 0;
}

#projects h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.project-subtitle {
  color: #cbcbcb;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  margin-top: -30px;
}

.project-card {
  background: rgba(153, 125, 223, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(153, 125, 223, 0.1);
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(153, 125, 223, 0.15);
  border-color: rgba(153, 125, 223, 0.3);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.334));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-overlay i {
  color: white;
  font-size: 2rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 1.8rem;
}

.project-title {
  color: #ececec;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.project-desc {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-project {
  background: linear-gradient(135deg, #997ddf, #ffccf2);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(153, 125, 223, 0.3);
  color: white;
  text-decoration: none;
}

/* ====================
   CONTACT
==================== */
#contact {
  background: linear-gradient(to bottom, #0b0f28, #181f4b);
  color: #e6edf3;
  padding: 5rem 0;
}

#contact h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: #cbcbcb;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(153, 125, 223, 0.2);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.contact-info h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: #997ddf;
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  width: 20px;
}

.contact-item h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.contact-item p {
  color: #cbcbcb;
  margin: 0;
  font-size: 0.9rem;
}

.social-links h6 {
  color: #ffffff;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #997ddf, #ffccf2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(153, 125, 223, 0.4);
  color: white;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(153, 125, 223, 0.3);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #997ddf;
  box-shadow: 0 0 0 0.2rem rgba(153, 125, 223, 0.25);
  color: #ffffff;
}

.contact-form .form-control::placeholder {
  color: #cbcbcb;
}

.btn-send {
  background: linear-gradient(135deg, #997ddf, #ffccf2);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(153, 125, 223, 0.4);
}

/* ====================
   FOOTER
==================== */
/* Footer Styles - Simple & Clean */
.portfolio-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
    border-top: 1px solid rgba(153, 125, 223, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand .brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #997ddf, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-brand .brand-tagline {
    color: #a0a0a0;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-linkss {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-right: 245px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: linear-gradient(135deg, #997ddf, #6c5ce7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 125, 223, 0.3);
}

/* Navigation */
.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.nav-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #997ddf, #6c5ce7);
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-column a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.nav-column a:hover {
    color: #fff;
    padding-left: 8px;
}

.nav-column a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #997ddf;
}

.nav-column a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 125, 223, 0.3), transparent);
    margin-bottom: 25px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.copyright .fas.fa-heart {
    color: #ff6b6b;
    margin: 0 4px;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #997ddf, #6c5ce7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 125, 223, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .portfolio-footer {
        padding: 40px 0 20px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .nav-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Smooth Animations */
.footer-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-brand {
    animation-delay: 0.1s;
}

.footer-nav {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
