/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4facfe;
    padding: 10px 20px;
    color: #fff;
}
header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
header nav ul {
    list-style: none;
    display: flex;
}
header nav ul li {
    margin: 0 10px;
}
header nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}
header nav ul li a:hover {
    color: #007BFF;
}

/* Hero section */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    padding: 50px 20px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* About section */
#about {
    padding: 30px 20px;
    text-align: center;
    background: #f9f9f9;
}

/* Services section */
#services {
    padding: 30px 20px;
}
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

/* Footer styles */
footer {
    background-color: #080808;
    color: #faf7f7;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
}

.footer-content a {
    color: #007BFF;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.social-icons {
    text-align: center;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #faf7f7;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007BFF;
}

/* Responsive styles */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }
    .cards {
        flex-direction: column;
    }
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  font-size: 30px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #0077b5; /* Change color on hover */
  transform: scale(1.1); /* Slightly scale up the icon */
}

/* Optional: add specific colors for each social platform */
.social-icon.facebook:hover {
  color: #3b5998;
}

.social-icon.twitter:hover {
  color: #1da1f2;
}

.social-icon.instagram:hover {
  color: #e4405f;
}

.social-icon.linkedin:hover {
  color: #0077b5;
}

.social-icon.youtube:hover {
  color: #ff0000;
}
