:root {
  --font-family: 'Roboto', sans-serif;
  --primary-color: white;
 --background-gradient: linear-gradient(to right, rgba(47, 79, 79, 1.0), rgba(70, 130, 225, 1.0));
--footer-gradient: linear-gradient(to right, rgba(25, 25, 112, 0.8), rgba(10, 10, 44, 1.0));
--border-gradient: linear-gradient(45deg, #3a3a52, cyan);
--hover-border-color: #00ff87;
--headline-background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
--navbar-gradient: linear-gradient(to right, rgba(3, 27, 78, 1.0), rgba(0, 77, 64, 1.0));
--nav-link-color: white;
--nav-link-hover-color: #b733ff;
--dropdown-background: rgba(1, 1, 1, 0.5);
--news-background-gradient: linear-gradient(to right, rgba(15, 0, 128, 1.0), rgba(25, 20, 100, 1.0));
--news-background-gradientb: linear-gradient(to left, rgba(15, 0, 211, 0.8), rgba(35, 0, 211, 0.2));
--main-text-gradient: linear-gradient(to bottom right, #0b3d91, #4a148c);

  --main-text-color: white;
  --cool-button-background: linear-gradient(45deg, #0b3d91, #1a237e);
  --cool-button-hover-background: linear-gradient(to right, #1a237e, #4a148c);
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--primary-color);
  background: var(--background-gradient);
  overflow-x: hidden;
  margin-top: 200px;
  margin-bottom: 70px;
}

.bodytext { 
margin-right:50px !important;
}

.mainstuff {
  overflow-x: hidden;
}
p {
  text-shadow: 1px 2px 0 black;
  letter-spacing: 1px;
}
h1 {
  letter-spacing: 1px;
  scroll-margin-top: 180px;
}
.site-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--footer-gradient);
  color: var(--primary-color);
  text-align: center;
  font-family: var(--font-family);
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  font-size: 14px;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 20px;
  padding-top: 10px;
  box-sizing: border-box;
  justify-content: center;
background: linear-gradient(to right, #000000, #1b0f31);
}
.grid-containersmall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
  box-sizing: border-box;
  justify-content: center;
  background: linear-gradient(to right, #000000, #1b0f31);
}
/*
@media screen and (max-width: 1250px) {
  .grid-container, .grid-containersmall {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
*/
@media (max-width: 1185px) {
  .grid-container, .grid-containersmall {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.container {
  padding-top: 56.25%;
  background: linear-gradient(to right, #0b3d91, #1a237e, #4a148c);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #3a3a52, #4e4e70, #626287, cyan) 1;
  border-image-slice: 1;
  position: relative;
  overflow: hidden;
}
.container::before {
  content: '';
  position: absolute;
  width: 10%;
  height: 100%;
  background: transparent;
  border-left: 75px solid cyan;
  opacity: 0.2;
  box-shadow: 0 0 8px var(--hover-border-color);
  top: 0;
  left: 0;
  transform-origin: 50% 50%;
}
.container:hover::before {
  animation: rotateAroundBorder 2s linear infinite;
  opacity: 1;
}
@keyframes rotateAroundBorder {
  from {
    transform: rotate(0deg) scale(0);
  }
  to {
    transform: rotate(360deg) scale(100);
  }
}
.container .headline {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  z-index: 10;
  width: 90%;
  padding-bottom: 5px;
  padding-top: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background: var(--headline-background);
  letter-spacing: 1px;
}
.container .headlinesmall {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  font-size: 16px;
  text-align: center;
  z-index: 10;
  width: 90%;
  padding-top: 5px;
  padding-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background: var(--headline-background);
  letter-spacing: 1px;
}
.container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transform: translate(-50%, -50%);
  border: 1px black solid;
}
.centermynavigation {
  display: flex;
  justify-content: center;
  width: 100%;
}
.navbar {
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 200px; /* Adjust as needed, considering the height of the header-content */
  z-index: 9999; /* Same as above */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(27, 15, 49, 0.9), rgba(0, 0, 0, 0.9));
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: -1px -1px 0 0 blue;
}
.nav-items {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.nav-item a {
  text-decoration: none;
  color: var(--nav-link-color);
  transition: color 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  font-size: 1.1em;
  font-weight: 800;
}
.nav-item a:hover {
  color: #697acd;
}
.dropdown {
	  list-style-type: none;
	margin:0;
	padding:0;
  display: none;
  position: absolute;
  background: linear-gradient(to right, #000000, #1b0f31, #000000);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1000;
  padding-right:20px;
	padding-left:20px;
}
.dropdown li {
  list-style-type: none;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;	
}
.dropdown li a {
  color: white;
  transition: color 0.3s ease;
	font-weight: 100;
	font-size:14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.dropdown li a:hover {
  color: #697acd;
}
.nav-item:hover .dropdown {
  display: block;
}
/* Hamburger menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  padding-left: 20px;
}
.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--nav-link-color);
  border-radius: 3px;
}
/* Responsive Styles */
/*@media screen and (max-width: 1250px)*/
@media (max-width: 1185px) {
  .hamburger-menu {
    display: flex;
  }
  .nav-items {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .nav-item {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .dropdown {
    display: none;
  }
  .nav-items.show {
    display: flex;
  }
  .nav-item:hover .dropdown, .nav-item:focus .dropdown {
    display: none;
  }
  .dropdown li {
    padding-left: 20px;
  }
}
.news-background {
  background: var(--news-background-gradient);
  border: none;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.news-block {
  text-align: right;
  display: flex;
  margin: 5px;
  max-width: 1600px;
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}
.news-text {
  flex-grow: 1;
  background: var(--news-background-gradientb);
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.news-text h1 {
  font-size: 2em;
  margin: 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-left: 50px;
  text-align: left;
}
.news-text p {
  font-size: 1em;
  margin: 0;
  margin-top: 10px;
  color: white;
  max-width: 720px;
  text-align: left;
  margin-left: 100px;
}
.news-photo {
  width: calc(300px * 16 / 9);
  height: auto;
  margin-right: 50px;
}
.news-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*@media screen and (max-width: 1250px)*/
@media (max-width: 1185px) {
  .news-background {
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .news-block {
    flex-direction: column;
    max-width: 80%;
    max-height: none;
    justify-content: center;
    text-align: center;
  }
  .news-photo {
    order: -1;
    width: 100%;
    height: 400px;
  }
}
.main-text-container {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--main-text-gradient);
  color: var(--main-text-color);
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-text-header {
  font-size: 2.0em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
}

.main-text-paragraph {
  font-size: 1em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0;
}
/*@media screen and (max-width: 1250px)*/
@media (max-width: 1185px) {
  .main-text-container {
    width: 90%;
  }
  .main-text-header, .main-text-paragraph {
    max-width: 90%;
    padding-left: 0;
  }
}
.button-container {
  width: 100%;
  text-align: right;
		margin-top: 10px;
	margin-bottom: 20px;
}
/* Button Style */
.cool-button {
  background: var(--cool-button-background);
  color: white;
  border: none;
  padding: 20px 20px;
  border-radius: 40px;
  font-family: var(--font-family);
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 0 3px linear-gradient(45deg, rgba(0, 255, 255, 1), rgba(255, 0, 255, 1), rgba(0, 255, 0, 1));
	margin:20px;
}


.button-container .cool-button:hover {
  background: var(--cool-button-hover-background);
  transform: translateY(-2px);
}
.cool-button:hover::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  z-index: -1;
  border-radius: 43px; /* Adjust for border width */
  background: linear-gradient(to right, rgba(0, 255, 255, 1), rgba(25, 45, 255, 1));
  pointer-events: none; /* Ensure click events pass through */
}
/*@media screen and (max-width: 1250px)*/
@media (max-width: 1185px) {
  .news-text {
    text-align: center;
  }
  .news-text h1, .news-text p, .news-text a {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .button-container {
    text-align: center;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
	  
  }
  .cool-button {
    margin: 0px;
  }
}
.header-content {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--main-text-gradient); /* To make it stand out */
  z-index: 9999; /* To ensure it stays on top of other content */
}

.thumbnail-container {
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Aligns items to the center horizontally */
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  padding: 10px;
}

.sci-fi-thumbnail {
  border-radius: 20px;
	max-height:200px;
	min-width:200px;  
	max-width:250px;
/*  flex: 1; */
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative; /* Allows absolute positioning inside */
  animation: 2s ease-out 0s 1 slideInFromLeft;
  visibility: hidden; /* Initially hide the thumbnails */
	margin:10px;
	
	
  /* Sci-Fi Shadow */
}

.sci-fi-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Existing styles for sci-fi thumbnails and container */
/*@media screen and (max-width: 1250px)*/
@media (max-width: 1185px) {
  .thumbnail-container {
	  max-width:80%;
    margin-left: auto;
    margin-right: auto;

  }
  .sci-fi-thumbnail {
    margin-bottom: 10px; /* Add some space between stacked thumbnails */
	  margin-top: 10px;
  }

	
}
.thumbnail-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 0.9em;
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
p, h1, .container {
  transition: opacity 1s ease-out;
}
.angry-grid {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0px;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.angry-grid > div {
  position: relative; /* Allows absolute positioning of images inside */
  overflow: hidden; /* Ensures images don't spill out of divs */
  min-height: 400px;
}
.angry-grid > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images cover the whole div */
}
#item-0 {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  border-image: linear-gradient(45deg, #3a3a52, #4e4e70, #626287, cyan) 1;
}
#item-1 {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  border-image: linear-gradient(45deg, rgba(255, 0, 255, 1), rgba(0, 255, 255, 1)) 1;
}
#item-2 {
  grid-row: 3 / 5;
  grid-column: 1 / 3;
  border-image: linear-gradient(45deg, #1a237e, #4a148c, #0b3d91) 1;
}
#item-3 {
  grid-row: 3 / 5;
  grid-column: 3;
  border-image: linear-gradient(45deg, #0b3d91, #1a237e, #4a148c) 1;
}
#item-4 {
  grid-row: 1 / 3;
  grid-column: 3;
  border-image: linear-gradient(45deg, #0b3d91, cyan, #626287) 1;
}
@media (max-width: 1185px) {
  .angry-grid {
    grid-template-rows: repeat(5, auto); /* Adjusts to auto for each item */
    grid-template-columns: 1fr; /* Stacks items in a single column */
  }
  .angry-grid > div {
    height: auto; /* Adjusts height based on content */
  }
  .angry-grid > div img {
    object-fit: cover; /* Keeps aspect ratio of images */
  }
  /* Additional styles for text or other content inside grid items */
  /* Adjust as necessary */
  .angry-grid > div .text-content {
    font-size: smaller; /* Adjust font size for mobile */
  }
}
/* Media query for screen sizes less than 1250px */
@media (max-width: 1185px) {
  .responsive-image {
    margin: 0;
    padding: 0;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1185px) {
  video {
    width: 80vw; /* Video width is 90% of the viewport width */
    height: auto; /* Height is set to auto to maintain the aspect ratio */
  }
}
@keyframes rubberband {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  100% {
    transform: scale(1, 1);
  }
}
.rubberband {
  display: inline-block;
  animation: rubberband 1s;
}
/* Floating Button Styles */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.circle {
  width: 60px;
  height: 60px;
  background: var(--cool-button-background); /* Use the same gradient as your button */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.arrow-up {
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.arrow {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white; /* Adjust the color as needed */
  transition: transform 0.2s ease;
}
/* Hover Styles */
.circle:hover {
  background: var(--cool-button-hover-background); /* Use the same gradient as your button's hover state */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
.arrow-up:hover .arrow {
  transform: translateY(0); /* Remove the rotation */
}
.divider-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 80%;
  height: 80px;
  opacity: 0.5;
}
.gradient-circle {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #8A2BE2, cyan, #00FFFF); /* Updated gradient */
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 15px #00FFFF; /* Updated glowing effect */
  animation: pulsing 4s infinite;
  z-index: 2; /* Ensure it's on top of the lines */
}
@keyframes pulsing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.midcircle {
  position: absolute;
  width: 0px;
  height: 0px;
  border: 10px solid cyan;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.small-circle {
  position: absolute;
  width: 3px;
  height: 3px;
  border: 1px solid #009BFF;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.left-circle {
  left: 0;
}
.right-circle {
  right: 0;
}
.divider-line {
  position: absolute;
  height: 2px;
  width: calc(50% - 20px); /* Adjust width based on circle size */
  top: 50%;
  background: linear-gradient(to right, transparent, #0b3d91, cyan, #4a148c); /* Gradient effect */
  transform: translateY(-50%);
  box-shadow: 0 0 10px #1a237e; /* Glowing effect */
  z-index: 1; /* Lower z-index than the gradient circle */
}
.divider-line.left {
  left: 20px; /* Adjust based on circle size */
  z-index: 1; /* Explicitly ensure lower z-index */
}
.divider-line.right {
  right: 20px; /* Adjust based on circle size */
  background: linear-gradient(to left, transparent, #4a148c, cyan, #0b3d91); /* Reversed gradient effect */
}
.uiux {
  width: 100%;
  background:linear-gradient(to right, #000000, #1b0f31);
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}
@media (max-width: 1185px) {
  /* Adjust the grid containers for smaller screens */
  .grid-container, .grid-containersmall {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px; /* Reduced gap for smaller screens */
    max-width: 100vw;
  }
  /* Ensure grid items have a minimum height to prevent collapsing */
  .grid-container > div, .grid-containersmall > div {
    min-height: 200px; /* Adjust this value based on your content */
  }
  .main-text-paragraph {
    margin-top: 20px;
  }
  .main-text-container p {
    margin-bottom: 20px;
  }
  /* Adjust any fixed width or large padding/margin elements */
  .container, .news-block, .main-text-container {
    width: 100%; /* Adjust width to fit the screen */
    padding: 0; /* Adjust padding if necessary */
    margin: 0 auto; /* Center align the content */
  }
  .news-block {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  video {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  main {
    background-color: black;
    max-width: 100vw;
  }
  body {
    padding-bottom: 50px;
    max-width: 100vw;
  }
  .main-text-paragraph {
    max-width: 75%;
  }
  .news-text p {
    max-width: 75%;
  }
  .news-text h1 {
    text-align: center;
    max-width: 75%;
  }
  .divider-bar {
    width: 100%;
  }
  .container .headline {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
  }
  .site-footer {
    padding: 0;
    margin: 0;
    max-width: 100%;
    height: 50px;
  }
  .navbar {
    max-width: 100%
  }
  .header-content {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
  .divider-bar {
    max-width: 100%;
  }
  /* Additional custom adjustments can be added here */
}
.projectWrapper {
  margin: auto;
  box-sizing: border-box;
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
	z-index: 1;
  /* Remove overflow property */
}

/* Add the gradient background using a ::before pseudo-element */
.projectWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  border-radius: 30px;
  z-index: -1;
}
.projectWrapper:before {
border-radius:20px;	
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1
}

/* Add the gradient shadow effect using a ::after pseudo-element */
.projectWrapper::after {
  content: "";
  position: absolute;
  top: 10px; /* Adjust the top position to control shadow offset */
  left: -10px; /* Extend to the left to cover the visible area */
  right: -10px; /* Extend to the right to cover the visible area */
  bottom: 10px; /* Adjust the bottom position to control shadow offset */
  border-radius: 10px;
  transform: scale(1.01);
  z-index: -1;
  filter: blur(25px);
	opacity: 0.5;
}
/* Purple Theme */
.purple-glow::before,
.purple-glow::after {
    background: linear-gradient(225deg, #9F93D8, #36185E, #FF5DFE);
}

/* Orange Theme */
.orange-glow::before,
.orange-glow::after {
    background: linear-gradient(225deg, #FFA500, #FFD700);
}

/* Blue Theme */
.blue-glow::before,
.blue-glow::after {
    background: linear-gradient(225deg, #00BFFF, #1E90FF, #87CEEB);
}

/* Auburn Orange Theme */
.auburn-orange-glow::before,
.auburn-orange-glow::after {
    background: linear-gradient(225deg, #DBA00C, #D2691E, #FF4500);
}

/* Yellow Theme */
.yellow-glow::before,
.yellow-glow::after {
    background: linear-gradient(-225deg, #00FFCB, #FFD700, #47FF38);
}


.projectHeader {
  padding: 15px;
  color: #ffffff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  /*    border-bottom: 1px solid #007CFF;*/
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 12px;
		z-index: 3;
}
.projectGridContainer {
  background: -moz-linear-gradient(to bottom, #0025c3, #4286f4); /* for Firefox */
  background: -webkit-linear-gradient(to bottom, #0025c3, #4286f4); /* for Chrome, Safari */
  background: linear-gradient(to bottom, #0025c3, #4286f4); /* standard syntax */
		z-index: 3;
}
.projectGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust to fit items with a min of 200px and max of 300px */
  gap: 20px;
  max-width: 1200px; /* Ensures the maximum width of each column does not exceed 300px */
  padding: 20px;
		z-index: 3;
}
.projectGrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid black;
		z-index: 3;
}
.projectInfoBox {
  padding: 15px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: left;
  /*    border-top: 1px solid #007CFF;*/
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
		z-index: 3;
}
.projectInfoBox p {
  margin-left: 50px;
		z-index: 3;
}
@media (max-width: 1185px) {
  
	.projectWrapper {width:100%;margin:0;}
	
	.projectHeader, .projectInfoBox {border-radius:0;margin:0;}
	
	.projectGrid {
    grid-template-columns: 1fr; /* Stack images in one column on smaller screens */
		border-radius: 0;

  }
	.projectGrid img {
		width:85%;
		margin-left:auto;
		margin-right:auto;
	}
	 .projectWrapper::before {
    display: none;
  }
  
  /* Hide the ::after pseudo-element */
  .projectWrapper::after {
    display: none;
  }
}
.resumecontainer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.resume-section {
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  background: linear-gradient(45deg, #0b3d91, #1a237e, #4a148c);
}
.resume-title {
  text-align: left;
  background: transparent;
  padding: 5px;
  border-radius: 5px;
}
.resume-footer {
  background: linear-gradient(to right, rgba(25, 25, 112, 0.8), rgba(0, 102, 102, 0.9), rgba(10, 10, 44, 1.0));
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.resumegrid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 10px;
}
.resumegrid-item {
  padding: 10px;
  border-radius: 5px;
  object-position: top;
}
@media (max-width: 768px) {
  .resumegrid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .resumegrid-container {
    grid-template-columns: 1fr;
  }
}
/* Add your existing CSS here */
/* Contact Form Styling */
#contact-form {
  max-width: 80%;
  margin: auto;
  text-align: center;
}
#contact-form input, #contact-form textarea {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}
#contact-form button {
  padding: 10px 20px;
  border: 1px solid #0069B6;
  border-radius: 5px;
  background: #4a148c;
  color: white;
  cursor: pointer;
}
#contact-form button:hover {
  background: #1a237e;
}
.skill-bar {
  display: inline-block;
  height: 10px;
  width: 100%; /* Set the maximum width for the skill bar */
  border: 1px solid #000; /* Add a border */
}
.filled {
  height: 100%;
  background-color: #007BFF; /* You can change the color */
  display: block;
}






	
	
	/* Unique magical names for the boxes */
.magical-box {
    position: relative;
    width: 300px;
    height: 300px;
    justify-content: center;
    align-items: center;
    margin: 40px;
    background: #060c21;
    transition: .5s;
	z-index: 0;
}

h2 {
	color: #2B0067;
	font-size: 2em;
	position: relative;
	text-transform: uppercase;
	-webkit-text-stroke: 1px #A1CFFF;
	margin-left:40px;
}

h2::before {
	top: 0;
	left: 0;
	width: 0;
	height: 80%;	
	color: #A7E5FF;
	overflow: hidden;
	position: absolute;
	content: attr(data-text);
	border-right: 0px solid #1386FF;
	-webkit-text-stroke: 0vw #4949D4;
	animation: animateover 6s linear infinite;
}

@keyframes animateover {
	0%,
	10%,
	100% {
		width: 0;
	}

	70%,
	90% {
		width: 100%;
	}
}

.gradient-box {
            width: 100%;
            height: 100px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            text-shadow: 1px 1px 2px black;
            overflow: hidden;
            border-bottom: 1px solid #000;
        }

.minilink:hover {
    transform: scale(1.1); /* Scale effect */
    transition: transform 0.1s ease, color 0.1s ease; /* Smooth transition for hover effects */
}


