:root {
    --primary-color: #0b3b5c;
    --primary-light: #1a4e6f;
    --primary-dark: #072b44;
    --accent-color: #e67e22;
    --accent-light: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #5a6f7d;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s ease;
}


/* Container */
.containerY {
    display: flex;
    flex-direction: column;
    align-items: center;
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

.containerY a{
    
    text-decoration: none;
    border-box: 2px solid black;
}

/* Headings */
.containerY h1, h2{
    color: black;
    
  margin: 10px 0;
  position: relative;
}

.line_decoration {
    
    bottom: 10px;
    top: 5px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}


h3 {
  font-weight: 100;
  margin-right: 55px;
}

/* Paragraphs */
p {
  font-size: 19px;
  font-weight: 400;
}

/* Image styles */
.image-wrapper {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically (if you need full height) */
  width: 100%;
  height: auto;            /* or use a fixed height if needed */
  padding: 10px;           /* optional */
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;     /* Use contain or cover depending on layout */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 margin-bottom: 20px;
}

/* Animation */
#animated-image {
  position: relative;
  top: 200px;
  opacity: 0;
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    top: 200px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Flex Containers */
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-container {
  margin-top: 5px;
  text-align: left;
  padding: 5px;
  font-weight: 450;
}

/* Image container grid */
.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.image-container div {
  background-color: #7f186b;
  border-radius: 8px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 450px;
  font-size: 0.9em;
  max-width: 450px;
  text-align: center;
  margin-bottom: 10px;
   box-shadow: 5px 5px 8px 1px #333229;
    border: 1px solid rgba(11, 59, 92, 0.1);
}

.image-container a {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
  color: inherit;
}

.image-container img{
    width: 100%;
    max-height: 300px;
    object-fit: cover;     /* Use contain or cover depending on layout */
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 margin-bottom: 20px;
}

.image-container div p{
    font-size: 1.3rem;
    padding: 10px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
   
    overflow: hidden
}

/* Button styles */
.centered-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 800px) {
 
}



