  /* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #0095ef;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* Container */
.container {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

/* Headings */
h1, h2, h3 {
  color: #fff;
  margin: 10px 0;
}

h3 {
  font-weight: 100;
  margin-right: 55px;
}

/* Paragraphs */
p {
  font-size: 1.3em;
}

/* 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);
}

/* 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: 20px;
  text-align: center;
  padding: 10px;
}

/* Image container grid */
.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.image-container div {
  background-color: #097BDE;
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 0.9em;
  width: 20%;
  text-align: center;
  margin-bottom: 10px;
}

.image-container a {
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
  color: inherit;
}

/* 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);
}

/* Logo & Header Section */
.logo_container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.logo img {
  width: 150px;
  height: auto;
  text-align:center;
  margin: 10px;
}

.second_logo img {
  width: 100px;
  height: auto;
  margin: 10px;
}

.cfiTitle {
  font-weight: 600;
  font-size: 1.5em;
  color: #fff;
  text-align: center;
}

/* Navigation Menu */
.menuBox {
  display: flex;
  justify-content: space-between;
  background-color: #7f186b;
  padding: 10px;
  flex-wrap: wrap;
  z-index: 10;
}

.menuBox a {
  text-decoration: none;
  font-size: 1em;
  margin: 5px;
  padding: 5px 20px;
  border: solid 1px #fff;
  border-radius: 2px;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menuBox a:hover{
     background-color: #7edfffff;
      transition: background-color 0.1s ease;
       color: black;
}

.menuBtn {
  display: none;
  font-size: 0.8em;
  text-decoration: none;
  color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 800px) {
  .logo_container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .cfiTitle {
    font-size: 1.5em;
  }

  .logo img {
    width: 130px;
  }

  .second_logo img {
    width: 90px;
  }

  .menuBox {
    flex-direction: column;
    font-size: 0.9em;
    display: none; /* You can toggle this with JS if using a hamburger menu */
    z-index: 1000;
        position: absolute;
        bottom: 99px;
  }

  .menuBtn {
    display: block;
    font-size: 1.2em;
    background-color: #7f186b;
    padding: 10px;
    left: 20px;
      }

  .image-container div {
    width: 100%;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: black;
  
  
  border-top: 1px solid #ccc;
  height: 30%;
   
    width: 100%;
    padding: 50px;
    position: relative;
    text-align: center;
}

.footer-left {
  text-align: left;
  color:white;
  font-size: .9em;
  width: 65%;
}

.footer-right {
  text-align: right;
  font-size: .8em;
  color: white;
}

