/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Inter", sans-serif;
  color: #343a40;
  border-bottom: 2px solid #09090c;
}

/* Section 1 */
.section1 {
  background-color: rgb(3, 21, 34);
  padding-top: 40px;
}

/* Responsive Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar Item */
.nav-item {
  margin-left: auto; /* This will push the nav-item to the right */
  margin-top: 20px;
}

/* Headings */
.h2style {
  text-align: center;
  font-size: 3rem;
  transition: color 0.3s ease;
}

.h2style:hover,
.h2style:active {
  color: #d48b1c;
}

/* Grid Layout */
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .grid-3-cols {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn:link,
.btn:visited {
  background-color: #fffb0a;
  color: rgb(0, 0, 0);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  border-radius: 100px;
}

.btn:hover,
.btn:active {
  background-color: #d4163f;
}

.btn--big {
  font-size: 1.25rem;
  padding: 16px 32px;
}

.btn--small {
  font-size: 0.875rem;
  padding: 8px 12px;
}

/* Images */
img {
  width: 100%;
  border-radius: 12px;
}

/* Header */
header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 64px;
  color: #fff;
  background-color: rgb(3, 21, 34);
  padding: 20px;
}

@media (min-width: 768px) {
  header {
    grid-template-columns: repeat(2, 1fr);
  }
}

.header-text-box {
  align-self: center;
  margin-left: 0;
  text-align: center;
}

header:hover,
header:active {
  background-color: #d48b1c;
}

/* Features */
.features-icon {
  stroke: #d44c16;
  width: 32px;
  margin-bottom: 24px;
}

.features-title {
  margin-bottom: 16px;
  font-size: 20px;
}

.features-text {
  font-size: 18px;
  line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
  background-color: rgb(3, 21, 34);
  color: rgb(211, 182, 145);
  padding: 24px;
  border-radius: 12px;
}

.testimonial-section:hover,
.testimonial-section:active {
  background-color: #000000;
}

.testimonial-box {
  text-align: center;
  margin-top: 0;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-box {
    grid-column: 2 / -1;
  }
}

/* Footer */
footer {
  margin-top: 48px;
  font-size: 24px;
  color: #000000;
  text-align: center;
}

.card-skill{
  text-align: center;

}

.styled-list {
  list-style-type: none; /* Remove default bullet points */
  padding: 0;
}

.btn-list-item {
  display: block; /* Make button fill the width of the list item */
  width: 100%;
  background-color: #4a90e2; /* Button background color */
  color: white; /* Text color */
  border: none; /* Remove default border */
  padding: 15px 20px; /* Padding for better spacing */
  margin-bottom: 10px; /* Space between list items */
  font-size: 16px; /* Text size */
  text-align: left; /* Align text to the left */
  border-radius: 8px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  cursor: pointer; /* Pointer cursor on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.btn-list-item:hover {
  background-color: #357abd; /* Darker shade on hover */
}

.btn-list-item:active {
  background-color: #2a5b92; /* Even darker shade on click */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15); /* Slightly different shadow on click */
  transform: translateY(2px); /* Move button slightly down on click */
}



/* Container styling */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between buttons */
  padding: 20px;
  background-color: #ffffff; /* White background for the container */
  border-radius: 10px; /* Rounded corners for the container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Button styling */
.skill-button {
  background-color: #ffffff; /* Primary blue color */
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 8px; /* Slightly rounded corners for buttons */
  padding: 15px 20px; /* Vertical and horizontal padding */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
}

/* Button hover effect */
.skill-button:hover {
  background-color: #cbd1d7; /* Darker blue on hover */
  transform: scale(1.05); /* Slightly enlarge the button on hover */
}