/* Resetting some default browser styles */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: #004080;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
}

.menu > li:hover > a {
  background-color: #003366;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004080;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background-color: #003366;
}

.dropdown:hover .dropdown-content {
  display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
}


/* Navigation Styles */
header nav {
    background-color: #0044cc;
    padding: 10px 20px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #ff5722;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
}

.cta-button {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #218838;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 0;
}

.service-link {
    text-decoration: none;
    color: #401ce0;
    font-weight: bold;
}

.service-link:hover {
    color: #ff5722;
}



/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer .social-links li {
    margin: 0 10px;
}

footer .social-links li a {
    color: white;
    text-decoration: none;
}

footer .social-links li a:hover {
    color: #ff5722;
}

/* General Page Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Skills Section */
.skills-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Skills Category */
/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    transition: background 0.3s, color 0.3s;
  }
  
  /* Dark Mode */
  .dark-mode {
    background: #222;
    color: #fff;
  }
  
  /* Header */
  header {
    text-align: center;
    padding: 20px;
    background: #007bff;
    color: white;
    position: relative;
  }
  
  /* Dark Mode Button */
  #darkModeToggle {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
  }
  
  /* Skills Section */
  .skills-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }
  
  /* Skills Category */
  .skills-category {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .skills-category:hover {
    transform: scale(1.02);
  }
  
  /* Skill Items */
  .skill-item {
    padding: 10px 0;
  }
  
  /* Fade-in Effect */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 10px;
    background: #007bff;
    color: white;
  }
  
/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
}
