/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #635DFF;
}

header img {
  max-width: 50px;
  transform: scaleX(1);
  border-radius: 25px;
}

nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Animated GIF Banner Section */
.animated-banner {
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
background-color: #000; /* Background color to match your website theme */
padding: 20px 0;
}

.banner-gif {
max-width: 100%;
height: auto;
border-radius: 10px; /* Optional rounded corners */
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Optional shadow effect */
}

/* General Section Styling */
.welcome-section {
background-color: #635DFF; /* Purple background */
padding: 50px 20px;
border-radius: 20px;
margin: 20px;
color: white;
font-family: Arial, sans-serif;
}

/* Container */
.welcome-container {
max-width: 900px;
margin: 0 auto;
}

/* Header */
.welcome-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}

.welcome-header h1 {
font-size: 2em;
font-weight: bold;
margin: 0;
}

.welcome-logo img {
width: 50px;
height: 50px;
}

/* Body Styling */
.welcome-body {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

/* Image */
.welcome-image img {
width: 300px;
height: auto;
border-radius: 20px;
}

/* Text */
.welcome-text {
flex: 1;
font-size: 1.2em;
line-height: 1.6em;
}

.welcome-text .quote {
margin-top: 20px;
font-style: italic;
text-align: right;
font-size: 1.1em;
}

/* Photo Gallery */
.photo-gallery {
  padding: 20px;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background-color: #635DFF;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 10px;
}

/* Porfolio Section */
.projects {
  background-color: #635DFF; /* Purple background */
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 100px;
}

.projects h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.projects p {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.project-item {
  background-color: #000000; /* Lighter purple for cards */
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.project-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.project-item img:hover {
  transform: scale(1.05);
}

.project-item h3 {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.project-item a {
  text-decoration: none;
  color: inherit;
}


/* Footer Section */
footer {
background-color: #4A3DA8;
color: white;
text-align: center;
padding: 10px 0;
font-size: 14px;
}

/* Responsive Design */
@media (max-width: 600px) {
.skills {
  flex-direction: column;
  text-align: center;
}}

form {
  padding: 30px 20px;
  margin: 0 auto;
}
.form-wrap h1 {
  margin: 0 auto;
}

.center{
display: flex;
justify-content: center;
align-items: center;
}

.contact {
  padding: 30px 20px;
  padding-bottom: 0px;
}

input, textarea {
  background-color: black;
  border: var(--border-bottom);
  border-radius: 12px;
  width: 100%;
  color: var(--white-color);
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 40px;
  padding: 10px 10px;
  margin-top: 10px;
}
textarea{
  padding: 10px 10px;
  height: 120px;
}

.submit {
width: 30%;
border-color: var(--primary-color);
color: var(--primary-color);
transition: all 0.2s ease-in-out;
}
.submit:hover {
transition: all 0.2s ease-in-out;
background-color: var(--primary-color);
color: var(--white-color);
cursor: pointer;}