/* Container for the background image */
.wrapper.footer-glass {
    /* Ensure there is padding so the glass box doesn't touch the screen edges */
    padding: 60px 20px; 
    background-size: cover;
    background-position: center;
    font-family: 'Arial', sans-serif; /* Base sans-serif font for body text */
}

/* The Glassmorphism Card */
.footer-glass #footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.15); /* Slightly tweaked opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Crucial additions for the floating card look */
    max-width: 1100px; 
    margin: 0 auto;
}

.footer-glass #footer .one_quarter {
    width: 22%;
    margin-left: 0;
}

/* Serif font for headers to match the image */
.footer-glass #footer .title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', Times, serif; 
    font-weight: normal;
}

.footer-glass #footer p,
.footer-glass #footer a,
.footer-glass #footer li {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-glass #footer a:hover {
    color: #CA4570;
}

.footer-glass #footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-glass #footer ul li {
    margin-bottom: 12px;
}

/* Form Styles */
.footer-glass #footer form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.footer-glass #footer form legend {
    display: none; /* Hides the legend text visually */
}

.footer-glass #footer input {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 4px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 15px; /* Spacing between input and button */
    box-sizing: border-box;
}

.footer-glass #footer input::placeholder {
    color: #d1d1d1;
}

.footer-glass #footer button {
    background: #CA4570;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-glass #footer button:hover {
    background: #ffffff;
    color: #CA4570;
}

/* Social Icons Setup */
.footer-glass .faico {
    display: flex;
    gap: 10px;
    margin-top: 25px !important;
}

.footer-glass .faico li {
    margin-bottom: 0 !important;
}

.footer-glass .faico a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    transition: 0.3s;
}

.footer-glass .faico a:hover {
    transform: translateY(-3px);
    background: #CA4570;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .footer-glass #footer {
        flex-direction: column;
        padding: 30px;
    }

    .footer-glass #footer .one_quarter {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-glass .faico {
        justify-content: flex-start;
    }
}


/*  Goal.aspx*/
/* Section Title */
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #ff6a00;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Vision Text */
.vision-text {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

/* Image Styling */
.vision-image {
  text-align: center;
  margin: 20px 0;
}

.vision-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mission List */
.mission-list {
  margin-left: 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.mission-list li {
  margin-bottom: 10px;
}