
:root {
    --accent: #0d6efd;
    --muted: #000000;
    --card-bg: #ffffff;
   
}

body {
    background: linear-gradient(180deg, #f6faff 0%, #f0f5ff 100%);
    color: #000000;
    overflow-x: hidden;
   
}

/* Navbar Toggler Customize */
.navbar-toggler {
  border: none !important;          /* remove border */
  outline: none !important;         /* remove outline */
  box-shadow: none !important;      /* remove focus shadow */
}



.btn-primary,
.bg-primary{
    background-color: #0b1c38 !important;
    border-color: #0b1c38 !important;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.2px
}

nav.navbar {
    background: #0b1c38;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    transition: color .3s;
    font-size: 20px;
    font-weight: 700;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s;
}

.nav-link:hover::after {
    width: 100%
}

.hero {
    padding: 6rem 0;
    background: linear-gradient(120deg, rgba(13, 110, 253, 0.1), rgba(108, 99, 255, 0.05));
}

.hero h1 {
    animation: fadeDown 1s ease-in-out
}

.hero p {
    animation: fadeUp 1.2s ease-in-out
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.card-project,
.card {
    border: none;
    border-radius: 1rem;
    transition: all .4s ease;
}

.card-project:hover,
.card:hover {
    transform: translateY(-10px) scale(1.02) rotate3d(1, 1, 0, 2deg);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15)
}


.skills-section {
    padding: 80px 0;
    background: linear-gradient(120deg, rgba(13, 110, 253, 0.1), rgba(108, 99, 255, 0.05));
}

.skills-section h2 {
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.progress {
    height: 20px;
    border-radius: 10px;
}

.progress-bar {
    font-weight: bold;
}

.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
}
.contact{
     background: linear-gradient(120deg, rgba(13, 110, 253, 0.1), rgba(108, 99, 255, 0.05));
}
.contact-card {
    background: linear-gradient(135deg, #ffffffcc, #f8faffcc);
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.1);
    transition: all .4s ease
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.15)
}

footer {
    padding: 3rem 0;
    background: linear-gradient(135deg, #06132a, #0d213f);
    color: #dbe9ff;
    position: relative;
    overflow: hidden
}

footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15), transparent 70%);
    animation: spin 30s linear infinite
}

@keyframes spin {
    100% {
        transform: rotate(360deg)
    }
}

footer a {
    color: #fff;
    margin: 0 .5rem;
    transition: color .3s
}

footer a:hover {
    color: var(--accent)
}

.btn-primary {
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
    transition: all .3s
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35)
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
  transition: 0.3s;
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}