/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
    background-image: url(background.jpg);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    height: 100vh; 
    margin: auto;
    padding: 0;
    
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
  padding: 0 1rem;
}

h2 {
  text-align: center;
  margin: 2rem 0 1rem;
  color: #222;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: #007BFF;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Notification Bar */

.notification-bar {                                                                     
  position: fixed;
  background-color: #ffecb3;
  padding: 1rem;
  border-bottom: 1px solid #f1c40f;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.notification-bar button {
  background-color: #f39c12;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.notification-bar button:hover {
  background-color: #e67e22;
}

.notification-bar ul {
  display: flex;
  gap: 1rem;
}

.notification-bar li a {
  font-weight: bold;
}

/* About Section */
#about {
  padding: 2rem 0;
  background-color: #5cc7d7f2;
  border-radius: 8px;
  margin-bottom: 2rem;
}

#about .container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

#about img {
  border-radius: 10px;
  max-width: 100%;
}

.title {
  font-size: 1.8rem;
  color: #222;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #555;
}

.btn {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2980b9;
}

/* Skills */
#skills {
  background-color: #f9f9f9;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.skills-list li {
  background-color: #ddd;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
}

/* Projects */
#section {
  padding: 60px 0;
  background-color: #fff;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-title1{
  
  color: #333;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.text-center {
  text-align: center;
}


/* Services */
#service {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 60px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.service-container {
  max-width: 900px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f3f3f3;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.description {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ffeaa7;
}

.service-list {
  text-align: left;
  list-style-position: inside;
  padding-left: 0;
  font-size: 18px;
}

.service-list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin: 10px 0;
  padding: 15px 20px;
  border-left: 5px solid #ffeaa7;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-list li:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: #81ecec;
  transform: scale(1.02);
}


/* Contact */
#contact {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

#contact input,
#contact textarea {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  resize: vertical;
}

#contact button {
  width: fit-content;
  background-color: #2ecc71;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact button:hover {
  background-color: #27ae60;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #333;
  color: white;
  border-radius: 8px;
}
