/* 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 */
}


/* Video Gallery */
.video-gallery {
  padding: 20px;
  text-align: center;
}

.video-gallery h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.video-gallery p {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  background-color: #635DFF;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* Instagram Gallery Section */
.instagram-gallery {
  padding: 20px;
  text-align: center;
}

.instagram-gallery h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.instagram-gallery p {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px solid #635DFF;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-overlay span {
  font-size: 48px;
  color: #fff;
}

.video-wrapper:hover .play-overlay {
  opacity: 1;
}

.caption {
  color: #fff;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  background-color: #635DFF;
  margin-top: -5px;
  border-radius: 0 0 10px 10px;
}

/* TikTok Gallery Section */
.tiktok-gallery {
  padding: 20px;
  text-align: center;
}

.tiktok-gallery h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.tiktok-gallery p {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

/* Welcome Section */
.welcome-section {
  background-color: #635DFF;
  padding: 20px;
  margin: 20px;
  border-radius: 15px;
  position: relative;
  color: #fff;
}

.welcome-content h2 {
  font-size: 24px;
  font-weight: bold;
}

.welcome-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.welcome-logo img {
  max-width: 50px;
  transform: scaleX(1);
  border-radius: 25px;

}

.welcome-logo span {
  color: #635DFF;
  font-size: 18px;
  font-weight: bold;
}

.photo-gallery {
  background-color: black;
  padding: 40px 20px;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

.photo-gallery h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.photo-gallery h2 {
  font-size: 1.8em;
  margin-top: 15px;
  margin-bottom: 30px;
}

/* Gallery Grid2 */
.gallery-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.gallery-item2 {
  background-color: #8468ec;
  border-radius: 15px;
  padding: 10px;
}

.gallery-item2 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 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;
  }}