html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styling */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.navbar-brand {
  font-weight: bold;
  color: #dc3545 !important;
  font-size: 1.5rem;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #dc3545 !important;
}

.nav-link.active {
  color: #dc3545 !important;
  border-bottom: 2px solid #dc3545;
}

/* Sections */
.section {
  padding: 100px 0;
}

.home-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #dc3545, #ff6b6b);
  color: white;
}

.home-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.home-section span {
  color: #ffffff;
  text-decoration: underline wavy #ffc0cb;
}

.home-section .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-warning {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #c82333 !important;
  border-color: #c82333 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(220, 53, 69, 0.3);
}

/* Skills Section */
#skills {
  background-color: #f8f9fa;
}

#skills h2 {
  color: #dc3545;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.15);
  transition: all 0.3s ease;
  background-color: white;
  border-left: 4px solid #dc3545;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
}

.card h5 {
  color: #dc3545;
  font-weight: bold;
}

/* Projects Section */
#projects h2 {
  color: #dc3545;
  font-weight: bold;
  margin-bottom: 2rem;
}

#projects {
  background-color: #ffffff;
}

/* Contact Section */
.bg-red {
  background: linear-gradient(120deg, #dc3545, #c82333);
}

#contact h2 {
  color: white;
  font-weight: bold;
  margin-bottom: 2rem;
}

#contact a {
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

#contact a:hover {
  border-bottom-color: white;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-section h1 {
    font-size: 2rem;
  }

  .home-section .lead {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 0;
  }
}
